@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    margin: 0;
    padding: 0;
    height: 100%;
}


body {
    font-size: 16px !important;
    text-decoration: none;
    color: #666 !important;
    line-height: 1.5 !important;
    font-family: "Inter", sans-serif !important;
    background: #fff !important;
    font-weight: 300 !important;
    z-index: 0 !important;

}


::selection {
    background: #2c2f36;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #2c2f36;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 9px;
    background: #333;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 39px 46px 41px #999;
}

::-moz-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 39px 46px 41px #4b2106;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif !important;
    color: #2c2f36;
    margin: 0;
}

h1 {
   font-size: 54px;
    margin-bottom: 15px;
    font-weight: 600;
}

h2 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 600;
}

h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
}

h4 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.clr-white {
    color: #fff !important;
}

a {
    text-decoration: none !important;
}

.mn-5 {
    margin: 0 5px !important;
}

.mn-l-10 {
    margin-left: 10px;
}

mn-r-10 {
    margin-right: 10px;
}

.mn-t-10 {
    margin-top: 10px;
}

.mn-b-10 {
    margin-bottom: 10px;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.flex-col {
    display: flex;
    align-items: center;
}

.white-bg {
    background: #fff !important;
}

.header {
    width: 100%;
    background: #fff !important;
    transition: all 0.3s ease;
}

.header.fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media screen and (max-width:577px) {
    .header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        background: #fff !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        animation: slideDown 0.35s ease-out;
    }
}


.btn {
    padding: 12px 18px;
    border-radius: 6px !important;
    font-weight: 500 !important;
}

.primary-btn {
    background: #2c2f36;
    border: solid 2px #2c2f36;
    color: #fff;
    position: relative;
    display: inline-block;
}


.secondary-btn {
    background: #fff;
    border: solid 2px #fff;
    color: #2c2f36;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.secondary-btn:hover {
    background: #fff !important;
    border: solid 2px #fff !important;
    color: #2c2f36 !important;
}


.secondary-btn:focus,
.secondary-btn:active,
.secondary-btn:focus-visible {
    border-color: #fff !important;
    color: #2c2f36 !important;
}

.bg-gray {
    background: #F8F8F8 !important;
}

.secondary-btn-outline {
    background: transparent;
    border: solid 2px #fff;
    color: #fff;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.secondary-btn-outline:hover {
    background: #2c2f36 !important;
    border: solid 2px #fff !important;
    color: #fff;
}

.secondary-btn-outline:focus,
.secondary-btn-outline:active,
.secondary-btn-outline:focus-visible {
    border-color: #fff !important;
    color: #fff !important;
}

.btn-arc {
    border: 2px solid #fff;
    color: #fff !important;
    background-color: transparent;
    transition: all 0.3s ease;
}

.style-btn {
    color: #fff !important;
    border: 2px solid #fff !important;
}

.style-btn:hover,
.style-btn:focus,
.style-btn:active,
.style-btn:focus-visible {
    background: #ffffff1c !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.btn-arc:hover,
.btn-arc:focus,
.btn-arc:active,
.btn-arc:focus-visible {
    background: #c9c9c9;
    color: #2c2f36 !important;
    border: 2px solid #fff;
}

.outline {
    background: transparent;
    border: solid 2px #2c2f36;
    color: #2c2f36;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.outline:hover {
    background: transparent !important;
    border: solid 2px #2c2f36 !important;
    color: #2c2f36;
}

.arr-button {
    text-align: center;
    cursor: pointer;
}

.white-arrow {
    text-align: center;
    cursor: pointer;
}

.arr-button-yellow {
    text-align: center;
    cursor: pointer;
}

.white-btn:focus,
.white-btn:active,
.white-btn:focus-visible {
    border-color: #fff !important;
    color: #fff !important;
}

.b-btn:focus,
.b-btn:active,
.b-btn:focus-visible {
    border-color: #2c2f36 !important;
    color: #fff !important;
}

.btn-y:focus,
.btn-y:active,
.btn-y:focus-visible {
    border-color: #FFAC00 !important;
    color: #FFAC00 !important;
}

.b-footer:focus,
.b-footer:active,
.b-footer:focus-visible {
    border-color: #2c2f36 !important;
    color: #fff !important;
}

.white-arrow span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.arr-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.arr-button-yellow:hover {
    background-color: transparent !important;
    border: 2px solid #FFAC00;
    color: #FFAC00;
}

.arr-button span:after {
    position: absolute;
    opacity: 0;
    top: 7.5px;
    right: 0px;
    transition: 0.2s;
    content: '';
    display: inline-block;
    background: url(https://cdn.lithospos.com/web/assets/images/theme/dark-arrow.webp) no-repeat !important;
    width: 14px;
    height: 14px;
}

.white-arrow span:after {
    position: absolute;
    opacity: 0;
    top: 8px;
    right: -7px;
    transition: 0.2s;
    content: '';
    display: inline-block;
    background: url(https://cdn.lithospos.com/web/assets/images/theme/white-arrow.svg) no-repeat !important;
    width: 14px;
    height: 14px;
}

.btn-bold {
    padding: 0.5rem 0.5rem !important;
    font-size: 1rem !important;
}

.btn-bold span:after {
    top: 7px !important;
}

@media screen and (max-width:576px) {
    .btn-bold {
        padding: 0.5rem !important;
        font-size: 1rem !important;
    }
}

.arr-button-yellow span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.arr-button-yellow span:after {
    position: absolute;
    opacity: 0;
    top: 8px;
    right: -7px;
    transition: 0.2s;
    content: '';
    display: inline-block;
    background: url(https://cdn.lithospos.com/web/assets/images/theme/vector-right.svg) no-repeat !important;
    width: 14px;
    height: 14px;
}

.arr-button-1 span:after {
    background: url(https://cdn.lithospos.com/web/assets/images/theme/white-arrow.svg) no-repeat !important;
    top: 8px !important;

}

.border-1 span:after {
    background: url(https://cdn.lithospos.com/web/assets/images/theme/white-arrow.svg) no-repeat !important;
    top: 7px !important;

}

.arr-button-1:hover {
    color: #fff !important;
    border: solid 2px #2c2f36 !important;

}

.border-1:hover {
    border: solid 2px #fff !important;
}

a .arr-button-1:focus,
a .arr-button-1:active,
a .arr-button-1:focus-visible {
    color: #fff !important;
    background-color: #2c2f36 !important;
    border: solid 2px #2c2f36 !important;
}

a .arr-button-1:hover {
    border-color: transparent !important;
}

.arr-button-2:hover {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;

}

a .arr-button-2:focus,
a .arr-button-2:active,
a .arr-button-2:focus-visible {
    color: #fff !important;
    background-color: transparent !important;
    border: solid 2px #fff !important;
}

a .border-1:focus,
a .border-1:active,
a .border-1:focus-visible {
    color: #fff !important;
    background-color: transparent !important;
    border: solid 2px #fff !important;
}

.arr-button:hover span {
    padding-right: 25px;
}

.arr-button:hover span:after {
    opacity: 0.7;
    right: 0;
}

.arr-button:focus span {
    padding-right: 25px;
}

.arr-button:focus span:after {
    opacity: 0.7;
    right: 0;
}

.member-details .arr-button {
    width: fit-content;
    text-align: right;
}


.auto-width {
    width: fit-content;
}


.yellow-bg {
    background: #ffac00;
}

.dark-bg {
    background: #2c2f36;
}

.lite-bg {
    background: #f7f8f8;
}

.bco-bg {
    background: #f4f4f4;
}

.no-pad-top {
    padding-top: 0 !important;
}

.no-pad-bottom {
    padding-bottom: 0 !important;
}

.border-rad img {
    border-radius: 8px;
}

.padding-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.dark-gradient h3 {
    color: #fff !important;
}

.dark-gradient p {
    color: #fff !important;
}

.dark-gradient {
    background: rgb(44, 47, 54);
    background: linear-gradient(180deg, rgba(44, 47, 54, 1) 27%, rgba(0, 0, 0, 1) 100%);
}

.card-col {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 18px 36px -18px rgba(0, 0, 0, 0.1), 0px 30px 45px -30px rgba(50, 50, 93, 0.05);
}

.top-bar {
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    background: #f7f7f7;
}

.top-bar button {
    padding: 0 !important;
    margin: 0 0 0 0px !important;
    background: transparent !important;
    border: none !important;
}

.sticky-top {
    position: sticky !important;
    z-index: 0 !important;
}

.signin {
    float: right;
    color: #000 !important;
}

.language {
    float: right !important;
}

.language img {
    width: 16px;
    margin-top: -3px;
}

.language .dropdown-toggle:focus {
    border: solid 2px #ffac00;
    outline: none;
}

.language .dropdown-toggle {
    border: solid 2px #ffac00;
    outline: none;
}

.arr-clr {
    color: #2c2f36 !important;
}

.head-trial-btn {
    background: #2c2f36;
    border: solid 2px #2c2f36 !important;
    padding: 8px 15px !important;
    color: #fff;
    border-radius: 4px !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* .head-trial-btn:hover {
    background-color: transparent !important;
    border: solid 2px #2c2f36 !important;
    color: #2c2f36 !important;
} */

.head-trial-btn:active,
.head-trial-btn:focus,
a.head-trial-btn:focus-visible {
    background: transparent !important;
    border: solid 2px #2c2f36 !important;
    color: #2c2f36 !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.s-c-info p {
    text-decoration: none !important;
    margin-bottom: 1.5rem !important;
}

.s-c-info a {
    text-decoration: none;
}

.navbar-right .a-trial {
    color: inherit;
    text-decoration: none;
}

.navbar-right .a-trial:hover {
    background-color: #fff !important;
    color: #2c2f36 !important;
}

.navbar-right .a-trial:focus,
.navbar-right .a-trial:active,
.navbar-right .a-trial:focus-visible {
    color: #2c2f36 !important;
    background-color: #fff !important;
}

.head-trial-btn:active,
.head-trial-btn:focus {
    outline: none;
    background: transparent !important;
}

.language ul.dropdown-menu {
    transform: translate(-70px, 36px) !important;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 0px 0px 5px 5px !important;
    -moz-border-radius: 0px 0px 5px 5px !important;
    -webkit-border-radius: 0px 0px 5px 5px !important;
    z-index: 10000;
}

.language ul.dropdown-menu a {
    font-size: 16px !important;
    padding: 8px 20px !important;
}

.language .dropdown-item:hover {
    background: transparent !important;
    color: #ffac00 !important;
}

.btn-secondary:hover {
    background-color: #444 !important;
}

.start-f:hover {
    background-color: #444 !important;
    color: #fff !important;
}

.primary-btn:hover {
    background: #000 !important;
    border: solid 2px #000 !important;
    color: #fff !important;
}

.primary-btn:hover span:after {
    filter: brightness(0) invert(1) !important;
}

.primary-btn:focus {
    border: solid 2px #2c2f36 !important;
    color: #fff !important;
    background-color: #2c2f36 !important;
}

.primary-btn span::after {
    /* content: '';
    position: absolute;
    top: 7px;
    right: -7px;
    width: 14px;
    height: 14px;
    background: url(https://lithospos.com/themes/lithos-pos/assets/images/dark-arrow.svg) no-repeat center;
    background-size: contain;
    transition: filter 0.3s ease; */
    content: '';
    position: absolute;
    top: 56%;
    right: 15px;
    /* inside padding */
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url(https://cdn.lithospos.com/web/assets/images/theme/dark-arrow.svg) no-repeat center;
    background-size: contain !important;
    pointer-events: none;
    /* arrow doesn’t block clicks */
}

.btn-primary:hover {
    background-color: #2c2f36 !important;
    color: #fff !important;
}

.fashion-ftr {
    color: #fff;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    background-color: #2c2f36 !important;
    border-radius: 50px !important;
    border: 2px solid transparent !important;
    padding: 10px 20px;
    box-sizing: border-box;
}

.fashion-ftr:hover {
    border: 2px solid #2c2f36 !important;
    color: #2c2f36 !important;
    background-color: #fff !important;
}

.btn-h:hover {
    background-color: #2c2f36 !important;
    color: #fff !important;
}

.btn-h:focus,
.btn-h:active,
.btn-h:focus-visible {
    background-color: #2c2f36 !important;
    color: #fff !important;
}

.outline-btn:hover {
    color: #fff;
}

.btn-focus:focus {
    color: #2c2f36 !important;
}

.image-wrap-main img {
    width: 100%;
    border-radius: 8px;
}

@media screen and (max-width:500px) {
    .image-wrap-main img {
        border-radius: 6px;
    }
}

@media screen and (max-width: 380px) {
    .image-wrap-main img {
        border-radius: 4px;
    }
}

.flex-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls {
    width: auto;
    float: right;
}

.controls label {
    width: auto;
    padding: 15px;
    border: solid 2px #ffac00 !important;
    background: #fff !important;
}

.pad-top-50 {
    padding-top: 50px !important;
}

.head-push-col {
    height: 70px;
    display: flex;
    align-items: center;
}

.float-none {
    float: none;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: #fff;
    border-bottom: 1px solid #f2f5f5;
    z-index: 1;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pink-500);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    order: 0;
}

.brand img {
    width: auto;
    height: 40px;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 0 0 17%;
}

.navbar-center {
    display: flex;
}

.navbar-right {
    display: flex;
    flex: 0 0 22%;
    justify-content: flex-end;
    column-gap: 0.5rem;
}

@media only screen and (max-width: 1024px) {

    .navbar-left,
    .navbar-right {
        flex: 0 0 auto;
    }

    .navbar-right {
        align-items: center;
    }

    .navbar-center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
    }

}



@media only screen and (max-width: 1024px) {
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100%;
        z-index: 100000;
        overflow-x: hidden;
        scrollbar-width: none !important;
        overflow-y: auto;
        transform: translateX(100%);
        background-color: var(--white-100);
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        height: auto;
        bottom: 0px !important;
        background-color: #fff !important;
    }

    .menu.is-active {
        transform: translateX(0);
        z-index: 10000;
        -moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .darkmode .menu {
        background-color: var(--night-300);
    }

    .menu-link>i.bx {
        height: 38px !important;
    }

    .menu-link {
        font-size: 22px !important;
    }

    .burger {
        margin-right: 0px !important;
    }

}

.menu-header {
    display: none;
    box-shadow: var(--shadow-medium);
}

.menu-item {
    display: inline-block;
    line-height: 1.5;
    padding-right: 1.25rem;
}

.menu-link {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black-300);
    text-transform: capitalize;
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 16px;
}

.menu-link>i.bx {
    font-size: 0;
    margin-left: 0.25rem;
    transform: rotate(0deg);
    transition: all 0.50s ease;
    height: 15px;
    opacity: 0.5;
}

.menu-dropdown:hover i.bx {
    transform: rotate(180deg);
    font-size: 0;
}

.menu-link>i.bx img {
    height: 15px;
}

.darkmode .menu-link {
    color: var(--white-100);
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    font-size: 1.45rem;
    color: var(--black-300);
    transition: all 0.25s ease;
}

.darkmode .menu-icon {
    color: var(--white-100);
}

.submenu {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 5px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    border-radius: 0.25rem;
    /* background-color: #f7f8f8 !important; */
    background-color: #fff !important;
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
    transition: all 0.25s ease-in-out;
}

.darkmode .submenu {
    border-top: 2px solid var(--pink-300);
    background-color: var(--night-300);
}

.submenu-inner {
    flex: 0 0 25%;
    padding: 0 1rem;
}

.submenu-inner-3 {
    flex: 0 0 33.33%;
    padding: 0 1rem;
}

.submenu-inner-2 {
    flex: 0 0 50% !important;
    padding: 0 1rem;
}

.submenu-inner-1 {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.submenu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    color: #333;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.darkmode .submenu-title {
    color: var(--pink-300);
}

.submenu-item {
    display: block;
    line-height: 1;
    margin: 0 auto;
}

.submenu-link {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.8em;
    white-space: nowrap;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    color: #333;
    transition: all 0.25s ease-in-out;
}

.darkmode .submenu-link {
    color: var(--white-100);
}

.submenu-image {
    display: block;
    width: 100%;
    height: auto;
    margin-block: 0.5rem;
    object-fit: cover;
}

.megamenu {
    left: 50%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transform: translateX(-50%);
}

.megamenu-column-1 {
    left: inherit;
    transform: translateX(-0%) !important;
    max-width: 15rem;
    width: 100%;
    height: auto;
}

.megamenu-column-2 {
    display: flex;
    left: inherit;
    transform: translateX(-40%) !important;
    max-width: 40rem;
    width: 100%;
    height: auto;
}

.megamenu-column-3 {
    display: flex;
    flex-wrap: wrap;
    max-width: 62rem;
    height: auto;
    margin: 40px auto;
}

.megamenu-column-4 {
    display: flex;
    flex-wrap: wrap;
    max-width: 62rem;
    height: auto;
    margin: 40px auto;
}

@media only screen and (max-width: 1024px) {
    .megamenu-column-2 {
        transform: none !important;

    }
}

@media only screen and (max-width: 1024px) {
    .megamenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding-top: 4rem;
        opacity: 1;
        visibility: visible;
        transform: translateX(0%);
        box-shadow: none;
    }
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.05s ease-in-out;
}

@media only screen and (max-width: 1024px) {
    .overlay.is-active {
        opacity: 1;
        visibility: visible;
        transition: all 0.05s ease-in-out;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.6rem;
    height: 1rem;
    margin-right: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    display: none;
    border: none !important;
}

@media only screen and (max-width: 1024px) {
    .burger {
        opacity: 1;
        visibility: visible;
    }
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 1;
    border-radius: 1rem;
    background: #000;
}

.darkmode .burger-line {
    background: #000;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.menu-inner {
    margin-bottom: 0 !important;

}

.button {
    padding: 15px 20px;
}

.head-trial-btn {
    background: #2c2f36;
    width: auto;
    border: solid 2px #2c2f36 !important;
    border-radius: 4px;
    font-size: 16px;
}

.menu-explore-mr-btn img {
    height: 20px;
    margin-left: 10px;
    filter: brightness(0) invert(1);
}

.card-list-title h5 {
    line-height: 1em;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.white-bg .symbol-col {
    background: #f7f8f8 !important;
}

.cat-pad {
    padding: 15px 15px 15px 15px !important;
}

.symbol-col {
    float: left;
    padding: 0 !important;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    margin-right: 15px;
}

.symbol-col img {
    height: 20px;
    margin-top: 0px;
}

.cat-pro .card-list-title {
    min-height: auto;
}

.cat-pro .symbol-col {
    margin-bottom: 0;
}

.card-list-title {
    min-height: 50px;
    padding-right: 0px;
}

.card-list-title small {
    font-size: 13px !important;
    font-weight: normal !important;
    color: #777;
}

.sect-col .col-md-card {
    padding: 15px 15px;
    float: left;
    border-radius: 6px;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.sect-col .col-md-card:hover {
    background: #f7f8f8;
}

.sect-col .col-md-card:hover .symbol-col {
    background: #fff !important;
}

.no-hover:hover {
    background: transparent !important;
}

.sect-col .col-md-12 {
    line-height: 1em !important;
}

.menu-explore-mr-btn .btn-hover {
    margin-left: 0 !important;
    font-size: 14px;
    padding: 13px 15px 13px 15px !important;
    border: none;
    background: #333;
    color: #fff;
    border-radius: 4px;
}

.btn-highlight {
    padding: 10px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    background-size: 300% 100%;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}



.btn-5:hover {
    border: 2px solid #ffac00 !important;
    color: #fff !important;
    background: #ffac00 !important;
}

.btn-4:hover {
    border: 2px solid #ffac00;
    color: #fff;
    background-color: #ffac00;
}

.col-md-12.no-margin-bottom {
    margin-bottom: 0 !important;
}

.secondary-bg {
    background: #f7f7f7;
}

.cat-ul {
    padding: 15px;
}

.cat-ul ul {
    padding-left: 47px !important;
}

.no-pad-bottom {
    padding-bottom: 0 !important;
}

.border-right {
    border-right: solid 1px #f1f5f7;
}

.border-bottom {
    border-bottom: solid 1px #f1f5f7 !important;
}

.banner {
    width: 100%;
    padding: 100px 0 100px 0;
}

.banner h1 {
    line-height: 1.1em;
}

.banner p {
    font-size: 20px;
    margin: 15px 0 25px 0;
}

.banner img {
    border-radius: 8px;
}

.padding-150 {
    padding: 150px 0 !important;
}


@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        transform: translateX(50%) translateY(10%);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

.threeGridCardWithIcon {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 0;
}

.singleCarWithIcon {
    gap: 50px;
    width: 33.33%;
}

.gradient-bg {
    width: 100vw;
    height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
}

.gradient-bg .svgBlur {
    display: none;
}

.gradient-bg .noiseBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}

.gradient-bg .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
}

.gradient-bg .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.gradient-bg .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.gradient-bg .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.gradient-bg .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.gradient-bg .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.gradient-bg .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
}

:root {
    --color-bg1: rgb(8, 10, 15);
    --color-bg2: rgb(0, 17, 32);
    --color1: 18, 113, 255;
    --color2: 107, 74, 255;
    --color3: 100, 100, 255;
    --color4: 50, 160, 220;
    --color5: 80, 47, 122;
    --color-interactive: 140, 100, 255;
    --circle-size: 80%;
    --blending: hard-light;
}



.catcontainer {
    overflow: clip;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
}

.category_container {
    --gap: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: calc(var(--gap) * 2);
    width: 100%;
    height: 100%;
}

.category_container .content {
    --active: 0;
    cursor: pointer;
    overflow: clip;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-left: 45px;
    padding-right: 30px;
    padding-bottom: 45px;
    width: calc((100% / 3) - var(--gap));
    height: 100%;
    border-radius: 1rem;
    transition: width 0.5s ease-in-out;
    color: #fff;
}

@media screen and (max-width:992px) {
    .category_container .content {
        padding: 0px;
    }

    .profile_detail {
        padding: 45px;
    }

    .profile_quote {
        padding: 30px;
    }

    .catcontainer {
        overflow: hidden !important;
    }

    .profile_detail {
        padding: 0 45px;
    }

}


@media screen and (max-width:769px) {
    .catcontainer {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 0px;
        height: 1000px;
        justify-items: center !important;
        align-items: center !important;
    }

    .category_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 0px;
        justify-items: center !important;
        align-items: center !important;
    }

    .catcontainer {
        height: 1800px !important;
    }
}

@media screen and (max-width:767px) {

    .category_container .content {
        width: 100% !important;
    }

    .profile_quote {
        text-align: left !important;
    }

    .profile_detail p {
        text-align: left !important;
    }

    .profile_detail span {
        padding-right: 30px;
    }

    .catcontainer {
        height: 1800px !important;
    }

    .profile_detail {
        padding: 0px 45px !important;
    }

    .overlay-col {
        padding: 40px !important;
    }
}

@media screen and (max-width: 414px) {
    .profile_detail {
        gap: 0 !important;
    }

    .banner p {
        font-size: 17px;
    }
}

.profile_quote p {
    margin-bottom: 0px;
}

.category_container .content:hover {
    --active: 1;
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    .profile_quote {
        width: 16rem !important;
        text-align: left !important;
    }
}

@media screen and (max-width:992px) {
    .profile_quote {
        width: 20rem !important;
    }

    .profile_quote p {
        margin-bottom: 13px;
    }
}


.p-card .btn {
    float: left;
}

.category_container .content::before {
    content: "";
    position: absolute;
    z-index: -10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.6;
}

.category_container .content img {
    position: absolute;
    z-index: -20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category_container .content .profile_image {
    opacity: calc(1 - var(--active));
    transition: opacity 0.3s ease-in-out;
}


.profile_detail span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    text-wrap: nowrap;
}

.profile_detail p {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light);
}

.profile_quote {
    width: 21rem;
}

.profile_quote p {
    font-weight: 400;
    color: var(--light);
}

.wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s;
}

.content:hover .wrapper {
    grid-template-rows: 1fr;
}

.content:hover .profile_quote {
    transform: none;
    opacity: 1;
}

.profile_detail {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    transform: translateY(50%);
    transition:
        margin-bottom 0.4s ease,
        transform 0.8s cubic-bezier(0.23, 0.93, 0.77, 1),
        opacity 0.8s ease-in-out;
    position: absolute;
    bottom: 150px;
}

.profile_detail {
    text-align: left !important;
}

@media screen and (min-width:470px) and (max-width:768px) {
    .profile_detail {
        bottom: 127px !important;
    }
}

@media screen and (min-width:620px) and (max-width:768px) {
    .profile_quote {
        width: 33rem !important;
    }
}

@media screen and (max-width: 620px) {
    .profile_quote {
        width: 31rem !important;
    }
}

@media screen and (max-width: 576px) {
    .profile_quote {
        width: 32.5rem !important;
    }

    .profile_detail {
        padding: 0px 45px !important;
    }
}

@media screen and (max-width: 560px) {
    .profile_quote {
        width: 32rem !important;
    }
}

@media screen and (max-width: 550px) {
    .profile_quote {
        width: 31rem !important;
    }
}

@media screen and (max-width: 540px) {
    .profile_quote {
        width: 30.5rem !important;
    }
}

@media screen and (max-width: 530px) {
    .profile_quote {
        width: 30rem !important;
    }
}

@media screen and (max-width: 520px) {
    .profile_quote {
        width: 29rem !important;
    }
}

@media screen and (max-width: 510px) {
    .profile_quote {
        width: 28.5rem !important;
    }
}

@media screen and (max-width: 500px) {
    .profile_quote {
        width: 28rem !important;
    }
}

@media screen and (max-width: 490px) {
    .profile_quote {
        width: 27.5rem !important;
    }
}

@media screen and (max-width: 480px) {
    .profile_quote {
        width: 27rem !important;
    }
}

@media screen and (max-width: 470px) {
    .profile_quote {
        width: 26rem !important;
    }
}

@media screen and (max-width: 460px) {
    .profile_quote {
        width: 25.5rem !important;
    }
}

@media screen and (max-width: 450px) {
    .profile_quote {
        width: 25rem !important;
    }
}

@media screen and (max-width: 440px) {
    .profile_quote {
        width: 24rem !important;
    }
}

@media screen and (max-width: 430px) {
    .profile_quote {
        width: 23.9rem !important;
    }
}

@media screen and (max-width: 420px) {
    .profile_quote {
        width: 22.9rem !important;
    }
}

@media screen and (max-width: 410px) {
    .profile_quote {
        width: 22rem !important;
    }
}

@media screen and (max-width: 400px) {
    .profile_quote {
        width: 22rem !important;
    }
}

@media screen and (max-width: 390px) {
    .profile_quote {
        width: 21rem !important;
    }
}

@media screen and (max-width: 380px) {
    .profile_quote {
        width: 20.5rem !important;
    }
}

@media screen and (max-width: 370px) {
    .profile_quote {
        width: 19.5rem !important;
    }
}

@media screen and (max-width: 360px) {
    .profile_quote {
        width: 19rem !important;
    }

    .profile_detail {
        bottom: 150px !important;
        padding: 0px 36px !important;
    }

    .profile_quote {
        padding-left: 24px !important;
    }
}

@media screen and (max-width: 350px) {
    .profile_quote {
        width: 19rem !important;
    }

    .profile_detail {
        bottom: 155px !important;
    }
}

@media screen and (max-width:340px) {
    .profile_detail {
        padding: 0px 31px !important;
    }
}

@media screen and (max-width:330px) {
    .profile_detail {
        padding: 0px 33px !important;
    }

    .profile_detail {
        bottom: 174px !important;
    }

    .profile_quote {
        width: 18rem !important;
    }
}

@media screen and (max-width:320px) {
    .profile_quote {
        width: 17rem !important;
    }

    .profile_detail {
        bottom: 184px;
    }
}

@media screen and (max-width:530px) {
    .profile_quote {
        width: 100%;
    }
}

.btm {
    flex: 1;
}

dialog {
    position: absolute;
    z-index: 1;
    background: none;
    color: white;
    border: 0;
    font-size: 0.8rem;
    padding: 0.5em;
}

dialog a {
    color: whitesmoke;
}


.get-started h2 {
    margin: 0 0 10px 0;
    padding-right: 15% !important;
}

.get-started h3 {
    margin: 0px 0 15px 0;
}

.get-started img {
    border-radius: 4px;
}

.get-start-col {
    background: #fff;
    padding: 20px;
    border: solid 1px #fff;
    border-radius: 10px;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.get-start-col:hover {
    background: #fff;
    border: solid 1px #eee;
    box-shadow: 0px 18px 36px -18px rgba(0, 0, 0, 0.1), 0px 30px 45px -30px rgba(50, 50, 93, 0.05);
}

.hover-animation {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.hover-animation img {
    position: absolute;
    transition: opacity 0.20s ease-in-out;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;

}

.get-start-col:hover .hover-animation img.image-front {
    opacity: 0;
    cursor: pointer;
}



.tabs button,
.tabs .button {
    position: relative;
    display: inline-block;
    color: #666;
    padding: 0.75rem 2rem;
    margin: 0 auto;
    border: none;
    width: 100%;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: none;
}

.tabs button:hover,
.tabs .button:hover {
    color: #00B129;
}

.tabs button:hover:before,
.tabs button:hover:after,
.tabs .button:hover:before,
.tabs .button:hover:after {
    color: #00B129;
}

.tabs button:after,
.tabs button:before,
.tabs .button:after,
.tabs .button:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.tabs {
    position: relative;
    min-height: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 3rem 1.5rem;
}

.tabs .tab {
    margin-bottom: 1px;
}

.tabs .tab p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 0 !important;
}

.tabs .tab {
    float: left;
    clear: left;
    width: 21%;
    height: fit-content;
    margin-bottom: 2rem;
}

.tabs .tab .tab-toggle {
    padding: 0rem 0rem 0rem 0rem;
    position: relative;
    outline: none;
    width: 100%;
}

.tabs .tab .tab-toggle span {
    font-size: 12px;
    font-weight: 400;
}

.tabs .tab .tab-toggle {
    text-align: left;
}

.tabs .tab .tab-toggle.active {
    color: #fa9902;
    background-color: white;
    cursor: default;
}

.tabs .content {
    max-height: fit-content;
    overflow: hidden;
    padding: 0 2rem;
    background-color: transparent;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    z-index: 0;
    position: relative;
}


.tabs .content .imagemock {
    width: 60%;
    max-height: 500px;
    height: fit-content;
    float: right;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.tabs .content .imagemock img {
    position: relative !important;
    z-index: 1;
    width: 100%;
}

.tabs .content .gadet-col {
    width: 55%;
    padding: 50px !important;
    background: #f7f8f8;
    border: 1px solid #eee;
    height: 458px;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 50%;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.tabs .content .gadet-col img {
    width: 100%;
}

.tabs .content {
    max-height: fit-content;
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    padding: 3rem 3rem 3rem 0rem;
}

.tabs .content.active {
    max-height: 1000px;
}

.tabs .content.active {
    max-height: none;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    height: fit-content;
}

.tabs .content>.heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tab-col-container {
    background: #fff;
    position: relative;
    display: flow-root;
    border-radius: 14px;
    margin-top: 60px;
    height: 600px;
    padding: 0 0 0 12px;
}

.wrap-tab .tab-content {
    max-height: fit-content;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.wrap-tab .nav-pills .nav-link.active {
    color: #fff !important;
    background-color: #333 !important;
    cursor: default;
    font-weight: 600;
}

.wrap-tab .nav-pills li.active {
    color: #fff !important;
    background-color: #333 !important;
    cursor: default;
    font-weight: 600;
}

.wrap-tab .nav-pills li a:hover {
    color: #000 !important;
}

.wrap-tab ul {
    padding-left: 0px;
    width: fit-content;
    float: left;
}

.wrap-tab ul li {
    list-style: none;
    text-decoration: none !important;
    margin-bottom: 41px;
}

.wrap-tab ul li a {
    list-style: none;
    color: #666 !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 20px;
    border-radius: 6px;
    white-space: nowrap;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: left;
    float: left;
    width: 100%;
}

.checkbox {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    background-color: #ccc;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark .checkbox-label {
    background-color: #111;
}

.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.checkbox:checked+.checkbox-label .ball {
    transform: translateX(24px);
}

.checkbox-label .fas img {
    filter: brightness(0) invert(1);
    height: 16px;
    margin-top: -4px;
}

.gadet-col .switch-col {
    position: absolute;
    bottom: -37px;
    left: 24px;
    background: #fff;
    padding: 5px 30px 14px 30px;
    border-radius: 10px;
    border: solid 1px #ddd;
    font-size: 14px;
    text-align: left;
    box-shadow: 0px 18px 36px -18px rgba(0, 0, 0, 0.1), 0px 30px 45px -30px rgba(50, 50, 93, 0.05);
}

.gadet-col .switch-col b {
    line-height: 2.5em;
}

/* MARQUEE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.marquee-wrapper {
    position: relative;
}

.marquee {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 120px 0;
}

.marquee-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #f7f8f8;
    -webkit-box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.04));
    box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.04));
    min-height: 380px;
    color: #333;
    border-radius: 8px;
}

.marquee-item:hover {
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.09));
    box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.09));
}

.marquee img {
    padding: 0 30px;
    height: 50px;
    filter: grayscale(1);
}

.marquee img:hover {
    filter: grayscale(0);
}

.member {
    width: 100%;
}

.member-link {
    display: block;
}

.member-img-wrapper {
    margin: 0;
    background: #333;
    border-radius: 8px;
}

.member-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
    background-position: left bottom;
}

.member-img-wrapper img {
    opacity: 1;
}

.member-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 25px;
    text-align: right;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 100;
}

.member-title {
    margin: 0 0 5px;
}

.member-subtitle {
    margin: 0;
    text-transform: uppercase;
    color: #666;
}

.member-subtitle button {
    color: #666;
}

.member-subtitle button:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.member-link:hover .member-details {
    transform: none;
}

.member-link:hover .member-img {
    filter: grayscale(0);
}

.marquee-arrow {
    position: absolute;
    bottom: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #ddd;
    display: none;
}

.marquee-arrow.arrow-prev {
    left: calc(50% - 50px);
}

.marquee-arrow.arrow-next {
    right: calc(50% - 50px);
}

@media (min-width: 768px) {
    .marquee-item {
        width: 400px;
    }

    .member-img {
        height: 500px;
    }

    .member-title {
        font-size: 1.6em;
    }

    .marquee-arrow {
        top: 50%;
        transform: translateY(-50%);
        width: 70px;
        height: 70px;
    }

    .marquee-arrow.arrow-prev {
        left: 40px;
    }

    .marquee-arrow.arrow-next {
        right: 40px;
    }
}

@media screen and (max-width:992px) {
    .tab-img-wrap {
        margin-top: 24px;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .trial-txt {
        text-align: center;
    }

    .wrap-center {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .dwnld-wrap {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 480px) {
    .marquee-item {
        width: 400px;
    }

    .marquee {
        padding: 50px 0 !important;
    }
}

@media (min-width: 414px) {
    .marquee-item {
        width: 400px;
    }

    .marquee {
        padding: 50px 0 !important;
    }

}

@media (max-width: 325px) {
    .card-col .btn-dwnld {
        margin-top: 10px !important;
    }
}

@media screen and (min-width:325px) and (max-width: 450px) {
    .foot-info .card-col {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        border: none !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media screen and (min-width:344px) and (max-width:450px) {
    .card-col .btn-dwnld {
        margin-left: 0px !important;
    }
}

@media (min-width: 320px) {
    .marquee-item {
        width: 360px;
    }

    .marquee {
        padding: 50px 0 !important;
    }
}

@media screen and (max-width:325px) {
    .b-footer {
        font-size: 12px !important;
    }
}

.overlay-col {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 50px;
}

.overlay-col h3 {
    color: #2c2f36 !important;
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.overlay-col p {
    color: #666;
}

.scroll-symbol {
    width: 40px;
    height: 40px;
    float: left;
    margin-right: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all .4s ease-out;
}

.home-features {
    padding-bottom: 90px !important;
}

.home-features h3 {
    color: #fff !important;
}

.home-features-grid {
    margin: 40px 0;
}

@media screen and (max-width:480px) {
    .home-features-grid {
        margin: 20px 0;
        margin-top: 0px;
    }
}

.home-features-grid h3 {
    float: left;
    height: 50px;
    display: flex;
    align-items: center;
}

.home-features {
    background: url(https://cdn.lithospos.com/web/assets/images/theme/grid.svg) repeat #2c2f36;
    color: #c9c6c6;
}

.home-features h4 {
    font-size: 24px;
    color: #fff !important;
}


:root {
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(5rem, 0.5rem + 20vmin, 15rem);
    --gap: calc(var(--size) / 30);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-text: papayawhip;
        --color-bg: navy;
        --color-bg-accent: #2626a0;
    }
}

* {
    box-sizing: border-box;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

article .marquee {
    padding: 30px 0 60px 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}

.marquee svg {
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
}

.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}

.wrapper--vertical {
    flex-direction: row;
    height: 100vh;
}

.toggle svg {
    --size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.screenshot-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

h2.accordion-header {
    margin-bottom: 0;
}

.accordion {
    padding: 0px 30px 0px 0px;
}

.tab-top {
    margin-bottom: 0px !important;
}

:root {
    --primary-color: #ffac00;
    --secondary-color: #2c2f36;
    --body-color: #F3F3F3;
}

.working-process .accordion-item {
    border-radius: 8px;
    overflow: hidden;
    border: 0px solid #eee;
    margin-bottom: 30px;
}

.working-process .accordion-item:last-child {
    margin-bottom: 0px;
}

.working-process .accordion-item .accordion-button {
    padding: 10px 20px;
    font-size: 16px !important;
}

.working-process .accordion-item .accordion-collapse.collapse.show,
.working-process .accordion-item .accordion-collapse.collapse.show {
    transition: all 0.1s ease-in-out;
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
}

.working-process .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 0px 24px 20px 24px;
}

.accordion-body .btn {
    margin-top: 15px;
    padding: 8px 18px;
}

.working-process .accordion-item .accordian-numbers {
    font-size: 40px;
    padding-right: 20px;
    font-weight: 200;
}

.working-process .accordion-item .collapsing {
    transition: all 0.2s ease-in-out;
}

.accordion-button {
    color: #2c2f36;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: transparent;
    color: #666;
}

.accordion-button:not(.collapsed)::after {
    display: none;
}

.pad-60-r {
    padding-right: 60px;
}

.pad-60-l {
    padding-left: 60px;
}

.int-marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 70px;
    overflow-x: hidden;
    margin-top: 30px;
}

.int-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marqueee 15s linear infinite;
}

.int-track img {
    height: 30px;
    margin: 0 20px;
    filter: grayscale(100%);
}

.int-track img:hover {
    filter: grayscale(0%);
}

@keyframes marqueee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-slider-left {
    z-index: 100;
    background-image: linear-gradient(89deg, #541142, #541142 31%, #fff0);
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -17px;
}

.logo-slider-left.red,
.logo-slider-left.bg-persian {
    background-image: linear-gradient(89deg, #fff, #fff 31%, #fff0);
}

.logo-slider-right1.red,
.logo-slider-right1.bg-persian {
    background-image: linear-gradient(270deg, #fff, #fff 31%, #fff0);
}

.logo-slider-right1 {
    z-index: 100;
    background-image: linear-gradient(270deg, #541142, #541142 31%, #fff0);
    width: 50px;
    height: 100%;
    position: absolute;
    inset: 0 0 0 auto;
    right: -17px;
}

.specials h2 {
    margin-bottom: 40px;
    text-align: center;
}

.specials h4 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.specials-col {
    margin: 20px 0;
    border: solid 1px #eee;
    background: #fff;
    border-radius: 8px;
    height: 460px;
    padding: 60px 40px 0px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px #eee;
}

.specials-col img {
    border: 0px solid #000000;
    box-shadow: 0 0 50px #dedede;
    width: 100% !important;
}

.specials-col h4 {
    margin: 0 0 15px 0;
    color: #2c2f36;
}

.specials-col ul {
    padding: 0;
    margin: 0;
}

.specials-col ul li {
    list-style: none;
    line-height: 2.4em;
}

.sp-kiosk {
    text-align: left;
    padding-left: 60px;
}


.sp-kiosk img {
    border-radius: 36px 36px 0px 0px;
    -moz-border-radius: 36px 36px 0px 0px;
    -webkit-border-radius: 36px 36px 0px 0px;
}

.sp-selfcheckout .sp-mockup-col img {
    border-radius: 46px 46px 0px 0px;
    -moz-border-radius: 46px 46px 0px 0px;
    -webkit-border-radius: 46px 46px 0px 0px;
}

.sp-selfcheckout .sp-mockup-col {
    bottom: -28px;
}

.sp-kiosk .sp-mockup-col {
    bottom: 0px;
}

.sp-waiter-app img {
    box-shadow: none !important;
}

.sp-waiter-app .sp-mockup-col {
    bottom: -5px !important;
}

.sp-dashboard img {
    border-radius: 52px 52px 0px 0px;
    -moz-border-radius: 52px 52px 0px 0px;
    -webkit-border-radius: 52px 52px 0px 0px;
}

.specials-col ul li img {
    height: 14px !important;
    width: inherit !important;
    margin-right: 15px;
    margin-top: -4px;
}

.sp-mockup-col {
    position: relative;
    bottom: -12px;
}

.impressed {
    padding: 30px !important;
    float: left;
    border: solid 1px #eee;
    background: #f7f8f8;
    border-radius: 8px;
}

.float-right {
    float: right !important;
}

.updates .card-col p {
    margin-bottom: 0;
}

.updates .card-col {
    padding: 0px !important;
    overflow: hidden;
    position: relative;
}

.update-img {
    display: inline-block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.update-img img {
    transition: transform 0.4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.updates .card-col:hover img {
    transform: translateY(-20px);
}

.updates h2 {
    margin-bottom: 60px;
}

.update-content {
    padding: 20px 20px 0px 20px;
    position: relative;
    transition: transform 0.4s;
    z-index: 0;
    background: #fff;
}

.update-content h5 {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 18px;
}

.update-content h4 {
    color: #2c2f36;
}

.update-content .arr-button span:after {
    top: 9px;
}

.blog-img .arr-button span:after {
    top: 8px;
}

.updates .card-col a {
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    bottom: -25px;
    position: relative;
    opacity: 0.5;
    text-decoration: none;
    color: #ffac00;
    font-weight: 600;
    width: fit-content;
}

.updates h4 {
    margin-bottom: 55px;
}

.updates .card-col:hover a {
    display: block;
    bottom: 0px;
    opacity: 1;
}

.updates .card-col:hover .update-content {
    transform: translateY(-30px);
}

.foot-contact {
    text-align: center;
}

.foot-contact h4 {
    color: #fff;
    padding: 0 15%;
}

.foot-contact p {
    font-size: 16px;
    color: #fff;
    padding: 0 20%;
}

.highlight-section {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    height: 100% !important;
    transition: all 1s;
    position: relative;
    text-align: left;
}


.highlight-section:before {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    bottom: -9.5px;
    content: "";
    height: 9.5px;
    left: 6.5%;
    position: absolute;
    width: 88%;
    transition: background-color 0.3s ease;
}

.highlight-section:hover:before {
    background-color: rgba(0, 0, 0, 0.15);
}

.highlight-section p {
    margin: 0;
}

footer {
    width: 100%;
    padding: 100px 0 30px 0;
    background: #fff;
    height: auto;
    float: left;
}

.foot-bottom {
    padding-top: 7px;
}

.foot-logo img {
    height: 40px;
}

.mn-10 {
    margin: 0 15px !important;
}

.mn-b-80 {
    margin-bottom: 80px;
}

.mn-t-40 {
    margin-top: 40px;
}

.mn-t-80 {
    margin-top: 80px;
}

.mn-b-20 {
    margin-bottom: 20px !important;
}

.mn-b-60 {
    margin-bottom: 60px !important;
}

footer h5 {
    margin-bottom: 20px;
    color: #333;
    margin-top: 40px;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 2.4em;
}

footer ul li a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    font-weight: 300;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

footer ul li a:hover {
    color: #000;
}

.foot-info .card-col {
    border: solid 1px #eee;
    padding: 30px 40px 40px 40px;
}

.foot-info .card-col h4 {
    color: #2c2f36;
    margin-bottom: 5px;
}

.foot-info .card-col h3 {
    font-size: 20px;
    color: #2c2f36;
    margin-bottom: 15px;
}

.download img {
    width: 180px;
    margin-top: 0px;
}

@media screen and (min-width:1028px) and (max-width:1211px) {
    .download img {
        width: 140px;
    }
}

@media screen and (min-width:992px) and (max-width:1028px) {
    .download img {
        width: 130px;
    }
}

@media screen and (max-width:993px) {
    .media-icons {
        display: grid;
        grid-template-columns: repeat(2, auto) !important;
        gap: 8px;
        justify-content: center;
    }
}

@media screen and (max-width:577px) {
    .download img {
        width: 145px;
    }

    .media-icons {
        gap: 6px !important;
    }
}

@media screen and (min-width: 1050px) and (max-width:1200px) {
    .btn-dwnld {
        margin-top: 3px !important;
    }
}

@media screen and (min-width: 1028px) and (max-width:1047px) {
    .b-footer {
        padding: 10px 10px !important;
    }

    .foot-info .card-col h3 {
        font-size: 18px;
    }
}

@media screen and (min-width:992px) and (max-width:1028px) {
    .b-footer {
        font-size: 12px !important;
    }

    .foot-info .card-col h3 {
        font-size: 16px;
    }
}

@media screen and (max-width:415px) {
    .download img {
        width: 120px;
    }

    .foot-info .card-col h3 {
        font-size: 17px;
    }
}

@media screen and (max-width:350px) {
    .download img {
        width: 100px;
    }

    .media-icons {
        gap: 4px !important;
    }

    .b-footer {
        font-size: 13px !important;
    }

    .foot-info .mn-l-10 {
        margin-left: 2px;
    }
}

.foot-info .download h3 {
    margin-bottom: 20px !important;
}

.copy-right ul {
    padding: 0;
    margin: 0;
}

.copy-right {
    color: #666;
    text-decoration: none;
}

.copy-right ul li {
    padding: 0;
    margin: 0 0 0 30px;
    float: left;
}

.social .icons {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: solid 1px #eee;
    float: right;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.social .icons:hover {
    background: #2c2f36;
}

.social .icons:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.social .icons img {
    height: 22px;
    opacity: 0.8;
}

.large-mockup {
    padding-bottom: 200px !important;
}

.large-mockup h2 {
    padding: 0 10%;
}

.large-mockup p {
    padding: 0 10%;
    margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
    .menu-dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        margin-top: 0px;
    }
}

@media only screen and (max-width: 1024px) {
    .menu-header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
    }

    .menu-header.is-active {
        visibility: visible;
        background-color: #fff !important;
    }

    .menu-header.is-active>.menu-arrow {
        display: block;
    }

    .darkmode .menu-header.is-active {
        background-color: #fff;
    }

    .submenu-inner-3 {
        background: #fff !important;
    }

    .p-left-menu {
        padding-left: 13px !important;
    }

    .menu-arrow {
        display: none;
        cursor: pointer;
        width: 35px;
        height: 62px;
        text-align: center;
    }

    .menu-arrow>i.bx {
        font-size: 1.5rem;
        line-height: 4rem;
        color: var(--black-300);
        transition: all 0.25s ease;
    }

    .darkmode .menu-arrow>i.bx {
        color: var(--white-100);
    }

    .back-icon {
        width: 25px;
        height: 24px;
        margin-top: 19px;
        margin-left: 4px;
    }

    .menu-title {
        font-family: inherit;
        font-size: 20px;
        font-weight: 500;
        line-height: inherit;
        text-transform: capitalize;
        color: #2c2f36;
    }

    .darkmode .menu-title {
        color: var(--white-100);
    }

    .menu-title {
        color: #2c2f36 !important;
    }

    .menu-inner {
        height: 100%;
        margin-top: -4rem;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        /* position: relative; */
        top: -16px !important;
        bottom: 0px !important;
        padding-top: 30px;
        padding-left: 10px;

    }

    .menu-inner::-webkit-scrollbar {
        display: none !important;
    }

    .sect-col .col-md-card {
        float: none !important;
    }

    .m-none {
        display: none !important;
    }

    .cat-pad {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .menu-item {
        display: block;
        line-height: 1;
        padding-inline: 0;
        margin-top: 6px;
    }

    .menu-link {
        justify-content: space-between;
        height: 2.5rem;
        line-height: 2.5rem;
        padding-inline: 1.25rem;
    }

    .menu-link>i.bx {
        margin-left: 0.5rem;
        transform: rotate(0deg);
    }

    .menu-link a {
        color: #2c2f36 !important;
    }

    .menu-item {
        color: #2c2f36 !important;
    }

    .cat-ul ul {
        padding-left: 45px !important;
    }

    .symbol-col img {
        height: 25px;
    }

    .symbol-col {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 390px) {

    .card-list-title small {
        font-size: 11px !important;
    }

    .left-mgn {
        margin-left: 6px !important;
    }

    .card-left {
        padding-left: 10px !important;
    }
}

.none-768 {
    display: block;
}

@media screen and (max-width:1025px) {
    .logo {
        position: relative;
        left: 16px;
        bottom: 8px;
    }

    .logo img {
        height: 30px !important;
    }

    .head-icons {
        margin-top: auto !important;
        /* position: absolute;
    bottom: 20px;
    left: 6%;
    width: calc(100% - 12%); */
    }

    .head-icons .icons {
        margin-left: 11px !important;
    }

    .menu-inner .social {
        margin: 0px !important;
    }
}

@media only screen and (max-width: 1024px) {
    .burger {
        display: block;
    }

    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding-top: 4rem;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: translateX(0%);
        padding-bottom: 20px;
    }

    .submenu.is-active {
        display: block;
    }

    .submenu-inner {
        flex: 0 0 100%;
        padding: 0rem;
    }

    .m-menu {
        display: none !important;
    }

    .submenu-link {
        display: block;
    }

    .submenu-image {
        margin-top: 0;
    }

    .card-left {
        padding-left: 10px !important;
    }

    .logo {
        position: relative;
        left: 16px;
        bottom: 8px;
    }

    .logo img {
        height: 30px;
    }

    .head-icons {
        display: flex;
        justify-content: flex-start;
        /* position: absolute;
        bottom: 0;
        left: 0; */
        padding: 20px 0;
    }

    .head-icons .icons {
        margin-left: 11px !important;
    }
}

@media screen and (min-width:1025px) {
    .logo {
        display: none;
    }

    .head-icons {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .none-768 {
        display: block;
    }

    .top-bar .col {
        width: 50% !important;
        float: left !important;
    }

    .top-bar button {
        margin: 0 0 0 11px !important;
    }

    .download img {
        margin-top: 2px;
    }

}

@media only screen and (max-width: 344px) {
    .top-bar button {
        margin: 0 0 0 5px !important;
    }

    .top-bar {
        font-size: 14px;
    }
}

@media only screen and (max-width: 661px) {
    .home-wrap h3 {
        padding-right: 0px;
    }

    .menu {
        width: 85% !important;
    }

    .navbar-left {
        flex: 0 0 45% !important;
    }

    .navbar-right {
        flex: 0 0 45% !important;
    }

    .navbar-center {
        flex: 0 0 45% !important;
    }

    .brand img {
        height: 30px !important;
    }

    .banner {
        padding: 50px 0 0px 0;
        text-align: center;
    }

    .banner-image {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 414px) {
    .navbar-left {
        flex: 0 0 44% !important;
    }

    .guest .card {
        padding: 40px !important;
    }
}

@media screen and (max-width: 1024px) {
    .hover-animation {
        position: relative;
    }
}

@media screen and (min-width: 768px) and (max-width:992px) {
    .hover-animation {
        height: 500px;
    }

    .copy-right {
        font-size: 12px;
    }
}

@media screen and (max-width:769px) {
    .updates .arr-button {
        margin: auto;
    }
}

@media screen and (max-width:576px) {
    .hover-animation {
        height: 350px;
    }

    .hover-animation img {
        object-fit: cover;
    }

    .accordion {
        padding: 0px !important;
    }

    .get-started h2 {
        margin: 0 0 33px 0;
    }

    .tr-sec {
        padding: 30px 12px !important;
    }

    .large-mockup h2 {
        padding-top: 30px !important;
    }

    .arr-button {
        margin: auto;
    }

    footer {
        padding: 30px 14px 30px 14px;
    }

    .footer .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .padding-20 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .p-right {
        padding-right: 0px;
    }

    .pr-right {
        padding-left: 0px;
    }

    .txt-wrap {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .p-top {
        padding-top: 30px !important;
    }

    .p-tab {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .sec-img {
        padding: 12px !important;
    }

    .large-mockup h2 {
        padding: 0 4%;
    }

    .sec-img {
        margin-top: 25px;
    }

    .banner {
        padding: 36px 0 36px 0 !important;
    }

    .foot-info .card-col h3 {
        margin-bottom: 10px;
    }

    .content-col {
        padding: 60px 0;
    }
}


@media screen and (min-width:576px) {
    .hover-animation img {
        object-fit: cover;
    }
}

@media screen and (max-width: 991px) {
    .push-column-1-6 {
        left: 50%;
        right: auto;
    }

    .push-column-2-6 {
        left: auto;
        right: 50%;
    }

    .column-1-6,
    .column-2-6 {
        position: relative;
        float: left;
    }

    .column-1-6 {
        width: 50%;
    }

    .column-2-6 {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    .pad-60-r {
        padding-right: 0px;
    }

    .pad-60-l {
        padding-left: 0px;
    }

    .btn-right {
        float: none !important;
    }

    .foot-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column !important;
    }

    .social {
        margin-left: 0px !important;
        margin: auto !important;
    }

    .social .icons {
        margin-top: 20px;
    }

    footer {
        text-align: center;
    }

    .download {
        margin-top: 20px;
    }

    .foot-end {
        flex-wrap: wrap !important;
        justify-content: center;
    }

    .foot-link {
        margin: auto !important;
    }

    .btn-track {
        margin-left: 0px !important;
    }

    .card-wrap {
        margin-top: 20px;
    }

    .working-process .accordion-item .accordion-collapse .accordion-body {
        text-align: left;
    }

    .txt-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-image {
        margin-top: 30px;
    }

}

@media screen and (min-width:576px) and (max-width:768px) {
    .sec-img {
        width: 100%;
        padding: 20px !important;
        overflow: hidden;
    }
}

@media screen and (max-width: 767px) {
    .section {
        text-align: center;
    }
}

@media screen and (max-width:769px) {
    .copy-right ul li {
        margin: 0px !important;
        float: none !important;
    }
}

@media screen and (max-width: 348px) {
    .social {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 322px) {
    .btn-track {
        margin-top: 10px;
        margin-left: 0px !important;
    }
}

@media screen and (max-width:576px) {
    .top-padding {
        padding: 40px 0 !important;
    }

    .get-start-col {
        padding: 15px !important;
        margin-top: 12px !important;
    }

    .download img {
        margin-top: 2px;
    }

    .mn-t-80 {
        margin-top: 37px;
    }

    footer h5 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 992px) {
    .banner {
        text-align: center;
    }

    .banner-image {
        margin-top: 20px;
    }

    .pad-60-l {
        padding-left: 0px;
    }

    .pad-60-r {
        padding-right: 0px;
    }

    .banner-image {
        margin-top: 30px;
    }

    .tab-sec .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .get-start-col {
        margin-top: 20px;
    }

    .btn-none {
        display: none !important;
    }

    .feature-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding-top: 120px;
        place-items: center;
    }

    .efficient p {
        text-align: center !important;
    }

    .efficient h3 {
        text-align: center !important;
    }

    .feature-wrap div {
        padding: 30px;
        border-radius: 10px;
        width: 100% !important;
    }

    .img-4 {
        position: absolute;
        right: -80px !important;
        bottom: 50px !important;
    }

    .work-ftr {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
        padding-top: 35px;
        place-items: center;
    }

    .work-ftr div {
        width: 100%;
    }


    .image-wrap2 {
        margin-top: 20px;
    }

    .work-ftr div {
        width: 100% !important;
    }

    .left-sec {
        display: flex;
        justify-content: center;
    }

    .sector-col-details h3 {
        text-align: left !important;
    }

    .sector-col-details p {
        text-align: left !important;
    }


    .client-pos p {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .btn-free .btn {
        display: none;
    }

    .btn-flex {
        gap: 0px !important;

    }
}

@media screen and (min-width: 768px) {
    .dwnld-wrap {
        gap: 50px;
    }

    .btn-dwnld {
        margin-top: 10px;
    }

    footer {
        text-align: left;
    }
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .card-bottom {
        margin-top: 25px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    .footr-wrap {
        padding-left: 50px;
    }

    .tr-sec .container {
        padding: 0px;
    }

    .banner .container {
        padding-left: 7px;
        padding-right: 7px;
    }
}

@media screen and (min-width:768px) {
    .foot-main {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width:992px) {
    .banner {
        width: 100%;
        padding: 80px 0 60px 0;
    }
}

@media (min-width:576px) and (max-width:992px) {
    .top-padding {
        padding: 80px 0 !important;
    }

    .content-col {
        padding: 60px 0;
    }

    .sec-img {
        margin-top: 40px;
        padding-left: 3px;
    }
}

@media screen and (max-width:1200px) {
    .btn-none {
        display: none !important;
    }

}

@media screen and (max-width: 480px) {
    .btn-14 {
        gap: 3px !important;
    }

    .features-android {
        background: #2c2f36 !important;
        color: #fff;
        height: auto;
        text-align: center;
    }

    .features-android button {
        font-size: 13px;
    }

    .features-android .btn {
        padding: 10px 10px;
    }
}

@media screen and (max-width: 415px) {
    .btn-dwnld {
        margin-top: 10px;
    }

    body {
        font-size: 16px !important;
    }

    .sec-main img {
        width: 50px !important;
        height: 50px !important;
    }
}

.slick-prev:before,
.slick-next:before {
    font-size: 28px;
    font-weight: bold !important;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.btn-flex {
    display: flex;
    gap: 5px;
    justify-content: start;
    margin-top: 25px;
}

.btn-free .btn {
    background-color: #2c2f36;
    color: #fff;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.btn-demo .btn {
    border: 2px solid #fff;
    color: #fff;
    box-sizing: border-box;
}

.types {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-padding {
    padding: 120px 0px;
    width: 100%;
    height: auto;
}

.types-image {
    margin: auto;
    position: relative;
    width: 1304px;
    height: 565px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
}

.types-image .img-1 {
    position: absolute;
    bottom: 7%;
    left: 0px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
    width: 323px;
    height: 307px;

}

.types-image .img-1 img {
    width: 100%;
    height: 100%;
}

.types-image .img-2 {
    position: absolute;
    top: 7%;
    right: 0px;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
    width: 323px;
    height: 393px;

}

.types-image .img-2 img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:1400px) {
    .types-image {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 80px;
        width: 100%;
    }

    .main-img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width:992px) {
    .types-image .img-2 {
        width: 245px;
        height: 292px;
    }

    .types-image .img-1 {
        width: 229px;
        height: 217px;
    }

    .img-1,
    .img-2 {
        padding: 10px !important;
    }

    .img-2 {
        position: absolute;
        top: 13% !important;
    }

    .img-1 {
        position: absolute;
        bottom: 14% !important;
    }

    .retail-banner {
        background-size: cover !important;
    }

    .res-banner {
        background-size: cover !important;
    }

    .demo-banner {
        background-size: cover !important;
    }

    .demo-banner .hero-txt {
        width: 80%;
    }

    .app-sec-2 {
        display: none !important;
    }
}

@media screen and (max-width:830px) {
    .types-image .img-1 {
        width: 191px;
        height: 177px;
    }

    .types-image .img-2 {
        width: 200px;
        height: 229px;
    }

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 688px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .img-1 {
        bottom: 20% !important;
    }

    .img-2 {
        top: 18% !important;
    }
}

@media screen and (max-width: 720px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 611px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .types-image .img-2 {
        width: 182px;
        height: 210px;
    }

    .types-image .img-1 {
        width: 179px;
        height: 156px;
    }

    .img-1 {
        bottom: 19% !important;
    }

    .img-2 {
        top: 19% !important;
    }
}

@media screen and (max-width: 640px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 544px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .img-1 {
        bottom: 23% !important;
    }

    .img-2 {
        top: 22% !important;
    }
}

@media screen and (max-width: 576px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 494px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .types-image .img-1 {
        width: 151px;
        height: 133px;
    }

    types-image .img-2 {
        width: 133px;
        height: 175px;
    }

    .img-1 {
        bottom: 19% !important;
    }

    .img-2 {
        top: 17% !important;
    }
}

@media screen and (max-width: 510px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 428px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .types-image .img-1 {
        width: 131px;
        height: 119px;
    }

    .types-image .img-2 {
        width: 135px;
        height: 165px;
    }

    .img-1 {
        bottom: 23% !important;
    }

    .img-2 {
        top: 22% !important;
    }
}

@media screen and (max-width: 450px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 388px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .types-image .img-1 {
        width: 111px;
        height: 99px;
    }

    .types-image .img-2 {
        width: 111px;
        height: 131px;
    }

    .img-1 {
        bottom: 22% !important;
    }

    .img-2 {
        top: 33% !important;
    }
}

@media screen and (max-width: 400px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 357px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .img-1 {
        bottom: 21% !important;
    }

}

@media screen and (max-width: 380px) {
    .img-2 {
        top: 35% !important;
    }

    .img-1 {
        bottom: 35% !important;
    }

    .types-image .img-1 {
        width: 86px;
        height: 77px;
    }

    .img-1 {
        bottom: 36% !important;
        padding: 5px !important;
    }

    .img-2 {
        top: 36% !important;
        padding: 5px !important;
    }

    .types-image .img-2 {
        width: 89px;
        height: 109px;
    }
}

@media screen and (max-width: 371px) {

    .types .container,
    .types .container-md,
    .types .container-sm {
        max-width: 357px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media screen and (max-width:768px) {
    .types-image {
        height: 492px;
    }

    .img-1 {
        bottom: 15%;
    }

    .img-2 {
        top: 13%;
    }

    .trial-img img {
        height: auto !important;
    }

    .ac-img img {
        height: auto !important;
    }

    .soln .icon-img img {
        height: auto !important;
    }
}

@media screen and (max-width: 576px) {
    .types-image {
        height: 396px;
    }
}

@media screen and (max-width: 480px) {
    .types-image {
        height: 342px;
    }

    .img-1 {
        bottom: 19% !important;
    }

    .img-2 {
        top: 18% !important;
    }

    .circle {
        height: 55px !important;
    }
}

@media screen and (max-width: 414px) {
    .types-image {
        height: 313px;
    }
}

.efficient .image-wrap1 {
    position: relative;
}

.efficient .img-3 {
    position: absolute;
    bottom: 65px;
    left: -108px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    width: 301px;
    height: 311px;

}

.efficient p {
    text-align: left;
}

.e-img {
    width: 493px;
    height: 552px;
}

.e-sec {
    display: flex;
    justify-content: end;
}

.img-3 img {
    width: 265px;
    height: 273px;
}

@media screen and (max-width:992px) {
    .image-wrap1 {
        position: relative;
        display: inline-block;
        margin-top: 20px;
    }

    .b-para p {
        text-align: left;
    }

    .e-img {
        width: 100% !important;
        max-width: 493px !important;
        position: relative;
    }

    .img-3 {
        position: absolute;
        bottom: 37% !important;
        left: -64px !important;
        transform: translateY(50%) !important;
        padding: 15px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
        width: 60%;
        max-width: 301px;
        height: auto;
    }

    .img-3 img {
        width: 100%;
        height: 100%;
    }

    .types-image {
        margin-top: 0px;
    }

    .e-sec {
        justify-content: flex-start !important;
    }

    .image-wrap2 {
        position: relative;
        display: inline-block;
    }

    .w-img {
        width: 100% !important;
        max-width: 493px !important;
        position: relative;
    }

    .img-4 {
        position: absolute;
        transform: translateX(50%);
        padding: 15px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
        width: 60%;
        max-width: 301px;
        height: auto;
        left: 24% !important;
    }

    .img-4 img {
        width: 100% !important;
        height: 100% !important;
    }


    .feature-wrap {

        padding-top: 100px !important;
    }

    .work-ftr {
        padding-top: 40px !important;
    }

    .apps h3 {
        margin-top: 0px !important;
    }

    .tab-col-container {
        position: relative;
        display: flow-root;
        border-radius: 14px;
        margin-top: 60px;
        height: auto;
    }

    .wrap-tab ul li a {
        display: inline-block;
        list-style: none;
        color: #666 !important;
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap;
        background-color: #fff;
        padding: 15px !important;
        border-radius: 6px;
        text-align: center;
        width: 220px !important;
    }

    .tabs .content .gadet-col {
        height: 278px;
        width: 50%;
        padding: 39px !important;
    }

    .tabs .content {
        width: 70%;
    }

    .wrap-tab .tabs {
        padding: 3rem 1rem;
    }

    .gadet-col .switch-col {
        padding: 2px 10px 4px 10px;
    }
}

@media screen and (max-width:769px) {

    .efficient .container,
    .efficient .container-md,
    .efficient .container-sm {
        max-width: 833px !important;
    }

    .work .container,
    .work .container-md,
    .work .container-sm {
        max-width: 638px !important;
    }

    .place .container,
    .place .container-md,
    .place .container-sm {
        max-width: 833px !important;
    }

    .apps .container,
    .apps .container-md,
    .apps .container-sm {
        max-width: 833px !important;
    }

    .operation-sec .container,
    .operation-sec .container-md,
    .operation-sec .container-sm {
        max-width: 833px !important;
    }

    .sell .container,
    .sell .container-md,
    .sell .container-sm {
        max-width: 833px !important;
    }
}

@media (max-width: 768px) {
    .img-3 {
        width: 257px !important;
        height: 270px !important;
        left: -61px !important;
    }

    .e-img {
        width: 493px;
        height: 485px !important;
    }

    .image-wrap2 {
        position: relative;
        display: inline-block;
    }

    .w-img {
        width: 100% !important;
        height: 485px !important;
    }

    .img-4 {
        width: 257px !important;
        height: 270px !important;
        left: 18% !important;
    }

    .img-4 img {
        width: 100% !important;
        height: 100% !important;
    }

    #sector-col {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .sec-main {
        padding: 14px 10px !important;

    }

}

@media screen and (max-width:630px) {
    .e-img {
        height: 411px !important;
    }

    .img-3 {
        width: 229px !important;
        height: 241px !important;
        left: -61px !important;
    }

    .w-img {
        height: 411px !important;
    }

    .img-4 {
        width: 229px !important;
        height: 241px !important;
        left: 15% !important;
    }
}

@media screen and (max-width:576px) {
    .e-img {
        height: 366px !important;
    }

    .img-3 {
        width: 178px !important;
        height: 216px !important;
        left: -41px !important;
        padding: 10px !important;
    }

    .w-img {
        height: 366px !important;
    }

    .img-4 {
        width: 178px !important;
        height: 216px !important;
        padding: 10px !important;
        bottom: 44px !important;
        left: 25% !important;
    }

    .feature-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
        padding-top: 120px;
        place-items: center;
    }

    .work-ftr {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 30px;
        padding-top: 35px;
        place-items: center;
    }

    #sector-col {
        display: block !important;
    }

    .sector-sub-col {
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 33px;
    }

    .sector-col-details {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .bakery-banner .hero-txt {
        width: 100% !important;
    }

    .b-para p {
        text-align: center;
    }

    .features-col {
        text-align: center !important;
    }

    .ec-content p {
        text-align: center !important;
    }

    .cafe-content p {
        text-align: center !important;
    }
}

@media screen and (max-width:480px) {
    .img-3 {
        width: 157px !important;
        height: 184px !important;
        left: -50px !important;
        padding: 10px !important;
    }

    .e-img {
        height: 319px !important;
    }

    .img-4 {
        width: 157px !important;
        height: 184px !important;
        padding: 10px !important;
    }

    .w-img {
        height: 319px !important;
    }
}

@media screen and (max-width:415px) {
    .e-img {
        height: 282px !important;
    }

    .img-3 {
        width: 133px !important;
        height: 156px !important;
        left: -33px !important;
        padding: 10px !important;
    }

    .w-img {
        height: 282px !important;
    }

    .img-4 {
        width: 133px !important;
        height: 156px !important;
        padding: 10px !important;
        bottom: 35px !important;
        left: 28% !important;

    }

    .feature-wrap div {
        padding: 30px !important;
    }

    .btn-free .btn,
    .btn-demo .btn {
        padding: 10px 12px !important;
        width: auto !important;
    }

    .feature-wrap {
        padding-top: 45px !important;
    }

    .work-ftr {
        padding-top: 80px !important;
    }

    .apps h3 {
        margin-top: 0px !important;
    }
}

@media screen and (max-width:350px) {
    .img-3 {
        width: 117px !important;
        height: 146px !important;
        left: -41px !important;
        padding: 10px !important;
    }

    .e-img {
        height: 250px !important;
    }

    .img-4 {
        width: 117px !important;
        height: 146px !important;
        padding: 10px !important;
    }

    .w-img {
        height: 250px !important;
    }

    .btn-free .btn,
    .btn-demo .btn {
        padding: 13px 12px !important;
        width: auto !important;
        font-size: 14px;
    }

}

.feature-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 120px;
}

.feature-wrap div {
    padding: 30px;
    border-radius: 10px;
    width: 304px;
    position: relative;
}

.feature-wrap div img {
    height: 70px;
    margin-bottom: 30px;
}

.feature-wrap div h5 {
    font-size: 22px;
}

.work {
    position: relative;
}

.image-wrap2 {
    position: relative;
}

.image-wrap2 .w-img {
    width: 493px;
    height: 558px;
}

.img-4 {
    position: absolute;
    right: 0px;
    bottom: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}

.img-4 img {
    width: 265px;
    height: 275px;
}

.work p {
    text-align: left;
}

.work-ftr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 35px;
}

.work-ftr img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.operations {
    width: 100%;
    border-radius: 20px;
    background-color: #ffac00;
    margin: auto;
    text-decoration: center;
    padding: 80px 136px;
    height: 870px;
    position: relative;
}

.operations p {
    text-align: center;
    color: #fff;
}

.operations h2 {
    text-align: center;
    color: #fff;
}

.apps .image-wrap1 {
    position: relative;
}

.apps .img-3 {
    position: absolute;
    bottom: 65px;
    left: -108px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
}

.e-img {
    width: 493px;
    height: 552px;
}

.e-sec {
    display: flex;
    justify-content: end;
}

.apps p {
    text-align: left;
    margin-top: 10px;
}

.place p {
    text-align: left;
    margin-top: 10px;
    /* margin-bottom: 0px; */
}

@media screen and (min-width:1200px) {

    .sec-last {
        padding-left: 50px;
    }

    .android-left {
        padding-left: 50px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1282px !important;

    }

    .feature-wrap div {
        width: auto;
    }

    .work-ftr div {
        width: auto;
    }

    .e-img,
    .w-img {
        width: 459px !important;
    }

    .img-4 {
        position: absolute;
        right: 46px !important;
    }

    .img-3 {
        left: -67px !important;
    }

    .sec-main {
        width: auto !important;

    }

}

@media screen and (min-width: 992px) and (max-width: 1200px) {

    .e-img,
    .w-img {
        width: 392px !important;
    }

    .img-3 {
        left: -61px !important;
    }

    .img-4 {
        right: 14px !important;
    }

    .sec-main {
        width: auto !important;
    }

    .feature-wrap div {
        width: auto;
    }

    .work-ftr div {
        width: auto;
    }

}

@media screen and (min-width:768px) and (max-width:769px) {
    .sector-col-details {
        padding-left: 139px !important;
    }
}

@media (min-width: 576px) and (max-width:992px) {
    .sell .row {
        display: block !important;
    }

    .sec-main {
        width: 100% !important;
    }

    .left-sec {
        display: block;
    }

    .sector-col-details {
        padding: 30px 0px !important;
    }

}

.sector h3 {
    text-align: center !important;
    margin-bottom: 10px;
}


.sector p {
    text-align: center !important;
}


.sector-colm ul li {
    list-style: none;
}

.sector-colm ul li::before {
    content: "\f00c";
    font-family: 'FontAwesome';
    margin-right: 15px;
    color: #54b758
}

.left-sec,
.right-sec {
    margin-top: 40px;
}

.sect-sub-col {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 10%;
    right: 0;
    left: 0;
    z-index: 10000;
    text-align: center;
}

.sector-col img {
    display: flex;
    margin-right: auto;

}

.white-color {
    color: #fff !important;
}

.black-color {
    color: #000 !important;
}

.retail-sect .sectordiv {
    width: 24.5% !important;
}

.sector-col {
    text-align: center;
    margin: 15px 0;
    cursor: pointer;
    border-radius: 10px;

}

.sec-main {
    width: 189px;
    height: 169px;
    border: 1px solid #DDDDDD !important;
    padding: 30px 10px;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow .3s;
}

.sec-main:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.sec-main h6 {
    color: #000000 !important;
    margin-top: 20px;
}

.sector-col-details {
    background: #fff;
    height: calc(100% - 30px);
    text-align: center;
    padding: 30px 50px;
    margin: 15px 0;
    border-radius: 10px;
    padding-top: 0px;
    margin-top: 0px;
}

.icon-wrap {
    width: 149px;
    height: 133px;
    padding: 30px 38px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.sector-col-details .sector-col {
    box-shadow: none !important;
}

.sector-col-details h4 {
    text-align: left;
    margin: 40px 0 0 0;
    font-weight: 600;
    color: #000;

}

.sector-col-details p {
    text-align: left;
    margin-top: 20px;
}


.btn-more {
    width: 129px;
    height: 50px;
    background-color: #2c2f36;
    color: #fff;
}

.btn-more:hover {
    border: 2px solid #2c2f36;
    background-color: transparent;
    color: #2c2f36;
}

#sector-col {
    width: auto;
    overflow-x: visible;
    white-space: initial;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sectordiv {
    height: auto;
    display: inline-block;
}

@media screen and (max-width:768px) {
    #sector-col {
        display: block;
        white-space: nowrap;
    }

    .sec-main {
        width: auto;
        height: auto;
    }
}

.abt-para p {
    text-align: left !important;
}

.sm-icon img {
    width: 80% !important;
}

.abt-partners {
    border: solid 1px #eee;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
    transition: all 1s;
    border-radius: 10px;
}

.abt-partners:hover {
    box-shadow: 0 8px 20px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

@media screen and (min-width:1200px) {
    .abt-partners {
        padding: 40px !important;
    }
}

.partner-wrap {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.abt-partners img {
    margin: auto;
    height: auto;
    width: 100%;
    border: none;
}

.app-flex {
    display: flex;
    justify-content: center;
    gap: 5px !important;
}

.app-flex div {
    width: 200px;
}

.app-flex img {
    width: 100%;
}

@media screen and (max-width:992px) {
    .app-flex div {
        width: 200px;
    }

    .app-flex img {
        width: 100%;
    }

    .operations h3 {
        font-size: 30px;
    }
}

.orange-bg {
    background: #ffac00 !important;
}

.sunmi-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.sunmi-banner img {
    width: 100%;
    z-index: 0;
}

@media screen and (max-width:1200px) {

    .section-padding {
        padding: 80px 0px;
    }

    .us-banner .hero-txt {
        width: 80%;
    }
}

@media screen and (max-width:992px) {
    .partner-wrap {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .abt-para p {
        text-align: left !important;
    }

    .order-code h3 {
        text-align: center !important;
    }

    .order-code p {
        text-align: center !important;
    }
}

@media screen and (max-width:768px) {
    .partner-wrap {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width:576px) {
    .partner-wrap {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0px 10px 0px 10px !important;
    }

}

@media screen and (max-width:415px) {
    .partner-wrap {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

    }

    .abt-partners {
        padding: 20px;
    }

    .abt-partners img {
        width: 90% !important;
    }

    .sm-icon img {
        width: 60% !important;
    }

}

.soln .icon-img img {
    width: 577px;
    height: 352px;
}

.ico img {
    height: 86px;
}

.ac-ico img {
    height: 86px;
    margin-bottom: 10px;
}

.ac-img img {
    width: 577px;
    height: 352px;
}

.ac-wrap {
    display: flex;
    justify-content: flex-end;
}

.trial-icon img {
    height: 86px;
    margin-bottom: 10px;
}

.trial-img img {
    width: 577px;
    height: 352px;
}

.img-pos {

    height: 50px;
    margin-bottom: 10px;
}

.features1 {
    margin-top: 74px !important;
}

.btn-14 {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.features-android {
    background: #2c2f36 !important;
    color: #fff;
    height: 371px;
    text-align: center;
    position: relative;
}

.features-android h4 {
    color: #fff;
}

.features-android .android-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

@media screen and (max-width:330px) {
    .features-android .android-bg {
        width: 98%;
    }
}

.btn-f {
    color: #fff;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    background-color: #2c2f36 !important;
    border-radius: 50px !important;
}

.client-wrp {
    width: 56px;
    height: 96px;
}

.client-pos {
    text-align: center;
}

.card-pad {
    padding: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.card-pad p {
    margin-bottom: 0px;
}

.row-top {
    margin-top: 50px;
}

@media screen and (max-width:992px) {

    .soln,
    .accept,
    .trial-wrap {
        text-align: center;
    }

    .ac-wrap {
        display: flex;
        justify-content: center;
    }

    .soln .icon-img img {
        width: 100% !important;
    }

    .ac-img img {
        width: 100%;
    }

    .trial-img img {
        width: 100% !important;

    }
}

.b1-btn {
    background: #fff !important;
    border: solid 2px #2c2f36 !important;
    color: #666 !important;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    border-radius: 50px !important;
}


.bg-relative {
    position: relative;
}

.bg-relative .common-middle-class-1 {

    position: absolute;
    left: 14%;
    top: 25%;
    right: 20%;
}

.bg-rel {
    position: relative;
}

.bg-rel .common-middle-class-1 {
    position: absolute;
    left: 14%;
    top: 25%;
    right: 20%;
}

.contact-wrp {
    text-align: center;
}

@media screen and (max-width:1400px) {
    .bg-relative .common-middle-class-1 {
        top: 13% !important;
    }

    .bg-rel .common-middle-class-1 {
        top: 13% !important;
    }
}

@media screen and (max-width:992px) {
    .bg-relative p {
        text-align: left !important;
    }

    .bg-rel p {
        text-align: left !important;
    }

    .bg-relative .common-middle-class-1 {
        right: 10% !important;
        left: 10% !important;

    }

    .bg-rel .common-middle-class-1 {
        right: 10% !important;
        left: 10% !important;
    }

    .bg-relative .common-middle-class-1 {
        position: static !important;


    }

    .bg-rel .common-middle-class-1 {
        position: static !important;
    }

    .bg-relative .common-middle-class-1 {
        padding: 20px;

    }

    .bg-rel .common-middle-class-1 {
        padding: 20px;
    }

    .s-img {
        width: 100% !important;
    }

    .primary-btn {
        padding: 12px 15px;
        font-size: 16px;
    }
}

@media screen and (max-width:576px) {
    .bg-relative .common-middle-class-1 {
        padding: 20px;


    }

    .bg-rel .common-middle-class-1 {
        padding: 20px;

    }

    .s-img {
        width: 100% !important;
    }

    .img-reseller {
        width: 70%;
    }

    .delivery-app-settings .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.pos-round {
    text-align: center;
}

.round-img {
    width: 80%;
}

.t-top {
    margin-top: 45px;
}

.t1-top {
    margin-top: 35px;
}

@media screen and (max-width:992px) {
    .round-img {
        display: none;
    }

    .img-none {
        display: none;
    }
}

.try-btn-new {
    background: #fff !important;
    border: solid 2px #2c2f36 !important;
    color: #666 !important;
    border-radius: 50px !important;
}

.cafe-content h2 {
    margin-top: 10px;
}

.start-btn {
    color: #fff;
    box-shadow: 0 8px 24px -10px #343434 !important;
    background-color: #333 !important;
    border-radius: 50px !important;
}

.top-wrap {
    position: relative;
}

.top-wrap .common-middle-class-1 {
    position: absolute;
    left: 14%;
    top: 25%;
    right: 20%;
}

.bottom-wrap {
    position: relative;
}

.bottom-wrap .common-middle-class-1 {
    position: absolute;
    left: 14%;
    top: 25%;
    right: 20%;
}

.cafe-img-wrap {
    display: flex;
    justify-content: center;
}

.cafe-img-wrap img {
    width: 909px;
    height: 497px;
}

.cafe-img-wrap img {
    width: 100%;
}

.cafe-content p {
    text-align: left;
}

@media screen and (max-width:1400px) {
    .bottom-wrap .common-middle-class-1 {
        position: absolute;
        left: 20%;
        top: 20%;
        right: 20%;
    }

    .top-wrap .common-middle-class-1 {
        position: absolute;
        left: 14%;
        top: 20%;
        right: 20%;
    }

}

@media screen and (max-width:992px) {
    .bottom-wrap .common-middle-class-1 {
        position: static;
    }

    .top-wrap .common-middle-class-1 {
        position: static;
    }

    .top-wrap p {
        text-align: left !important;
    }

    .bottom-wrap p {
        text-align: left !important;
    }

}

.dwnld-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.dwnld-main {
    text-align: center;
    margin-top: 40px;
    padding: 60px 10px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    padding: 60px 10px;
    border-radius: 4px;
    margin: 15px 0;
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: 0.8s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    border-radius: 10px;
}

.dwnld-main:hover {
    -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid #f0f0f0;
}

.border-hover-none:hover {
    border: solid 4px #ffac00;
}

.icons-dwnld {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.icons-dwnld a {
    width: 130px;

}

@media screen and (max-width:1200px) {
    .icons-dwnld a {
        width: 100px;
    }
}

.dwnld-main-round {
    border: solid 2px #ffac00 !important;

}

.wrap-pricing {
    padding-top: 100px;
}

.wrp-img img {
    width: 70%;
}

.wrp-img .gadgets-col {
    display: flex;
    justify-content: center;
}

.start-drive {
    color: #fff;
    box-shadow: 0 8px 24px -10px #343434 !important;
    background-color: #333 !important;
    border-radius: 50px !important;
}

.ipad {
    width: 800px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.retial-pg-banner_img_01 {
    margin-top: -125px;
}

.retial-pg-banner_img_02 {
    margin-top: -125px;
}

.ipad img {
    width: 100%;
}

.ec-img-wrap {
    display: flex;
    justify-content: center;
}

.start-f {
    color: #fff;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    background-color: #2c2f36 !important;
    border-radius: 50px !important;
}

.s-wrap-img {
    display: flex;
    justify-content: center;
}

.s-wrap-img .ipad {
    width: 800px;
}

.s-wrap-img .ipad img {
    width: 100%;
}

.btn-sec-1 {
    color: #fff;
    background-color: #2c2f36 !important;
    border-radius: 6px !important;
    border: 2px solid transparent !important;
    padding: 10px 20px;
    box-sizing: border-box;
}

.btn-sec-1:hover {
    border: 2px solid #2c2f36 !important;
    color: #2c2f36 !important;
    background-color: transparent !important;
}

.btn-sec-2 {
    background: #fff !important;
    border: 2px solid #2c2f36 !important;
    color: #2c2f36 !important;
    border-radius: 6px !important;
    padding: 10px 20px;
    box-sizing: border-box;
}

.btn-sec-2:hover {
    background: #2c2f36 !important;
    color: #fff !important;
}

.section-left {
    position: relative;
}

.section-right {
    position: relative;
}

.sec-content p {
    text-align: left;
}

.s-wrap-img {
    display: flex;
    justify-content: center;
}

.s-wrap-img .gadgets-col {
    width: 800px;
}

.s-wrap-img .gadgets-col img {
    width: 100%;
    margin-top: 20px;
}

@media screen and (max-width:992px) {
    .section-left .common-middle-class-1 {
        position: static;

    }

    .section-right .common-middle-class-1 {
        position: static;

    }

    .section-left p {
        text-align: left !important;

    }

    .section-right p {
        text-align: left !important;

    }

}

.i-left {
    position: relative;
}

@media screen and (max-width:992px) {
    .ftr-col p {
        text-align: left;
    }

    .i-left p {
        text-align: left !important;
    }

    .i-left .common-middle-class-1 {
        position: static;
    }

}

.demo-p {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 20px;
}

.btn-order {
    color: #fff;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    background-color: #2c2f36 !important;
    border-radius: 50px !important;
    border: 2px solid #2c2f36 !important;
}

.qk-mockup img {
    width: 90%;
}

.main-head p {
    font-size: 16px;
    text-align: center !important;
}

.main-head {
    padding: 90px 0px;
}


.order-code-img img {
    width: 100%;
}

.order-code h3 {

    text-align: left;
}

.order-code p {
    text-align: left;
}

.order-head {
    padding-top: 7%;
}

.bg-wrap-round {
    text-align: center;
    color: #fff;
}

.bg-wrap-round h2 {

    color: #fff;
}

.pos-ftr .content-col {
    background-color: #fff !important;
}

.bg-wrap-round p {
    font-size: 16px;
}

.wrap-round {
    background: #ffac00 !important;
    color: #fff;
    padding: 120px 0px !important;
}

@media screen and (max-width:992px) {
    .demo-p {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
    }

    .op-top p {
        text-align: left !important;
    }

    .ob-top p {
        text-align: left !important;
    }
}

@media screen and (max-width:480px) {
    .wrap-round {
        margin-top: 30px;
    }
}

@media screen and (max-width:414px) {
    .wrap-round {
        margin-top: 20px;
    }
}

.img-partner {
    width: 100%;
}

.img-part {
    width: 140px;
}

.bg-blue {
    background: #f8f9fc !important;
}

.pay-wrapper {
    margin-top: 80px !important;
    width: 80% !important;
    margin: auto;
}

.pay-wrapper img {
    height: 80px;
    margin: auto;
}

.pay-wrapper a {
    text-decoration: none !important;
    color: #666 !important;
    text-align: center;
}

.pay-wrapper .product-box-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ddd;
    margin: 15px 0;
    border-radius: 10px;
    padding: 20px;
}

.pay-wrapper h3 {
    margin: 10px 0 0 0 !important;
    font-size: 16px !important;
}

.pay-wrapper p {
    margin-top: 6px;
}

.pay-image {
    width: 100%;
}

.lite-green {
    background: #eafcf6 !important;
}

.lite-yellow {
    background: #fcf3ed !important;
}

.lite-blue {
    background: #edf6fc !important;
}

.lite-red {
    background: #fceded !important;
}

.lite-green2 {
    background: #f6fff0 !important;
}

.lite-purple {
    background: #f3f2ff !important;
}

.lite-blue2 {
    background: #f2faff !important;
}

.lite-pista {
    background: #f2fff9 !important;
}


@media screen and (max-width:992px) {
    .section-sales .sale-txt {
        text-align: left !important;
    }

}

/* .payacard-col {
    padding: 0px 0 80px 0 !important;
    text-align: center;
   
}

.payacard-col img {
    height:80px;
    background-color: #ffff;
    padding: 10px 30px;
    border-radius: 10px;
}

@media screen and (max-width:577px){
    .payacard-col img {
    height: 60px;
    background-color: #ffff;
    padding: 10px 15px;
    border-radius: 10px;
}
} */

.row-integ{
    display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  justify-items: center;
}
@media screen and (max-width:993px){
    .row-integ{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
}
}
@media screen and (max-width:480px){
  .row-integ img{
     padding: 10px 0px !important;
      height:60px !important;
}
}
.row-integ div{
        width: 80%;
    background-color: #ffff;
    margin: auto;
    display: flex;
    justify-content: center;
      border-radius: 10px;
}
.row-integ img{
     padding: 10px 10px;
  
      height:80px;
}

.icon-fill svg {
    fill: #ff9200;
}

.pos-wrapper {
    display: flex;
}

.us-banner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:480px) {
    .pos-wrapper {
        display: flex;
    }

    .sec1-wrap .img-icon {
        width: 100% !important;
        border-radius: 10px;
        height: auto;
    }
}

.bg-lead {
    background: #ffac00 !important;

}

.sunmi-btn {
    color: #fff;
    box-shadow: 0 8px 24px -10px #2c2f36 !important;
    background-color: #2c2f36 !important;
    border-radius: 50px !important;
    border: 2px solid #2c2f36 !important;
}

.sunmi-btn:hover {
    color: #fff !important;
}

.bg-app {
    background: #393a3c !important;
    padding: 80px 65px 80px 60px !important;
}

.bg-sunmi2 {
    background: #cbccce !important;
    padding: 80px 35px 80px 65px !important;
}

.white-txt {
    color: #fff !important;
}


.start-free-button {
    color: #fff;
    box-shadow: 0 8px 24px -10px #343434 !important;
    background-color: #333 !important;
    border-radius: 50px !important;
    float: left;
}

.start-sec {
    width: 600px;
    height: auto;
    float: right;
    padding: 100px 50px;
}

.start-txt {
    font-size: 2rem;
}

.para-txt {
    text-align: left !important;
}

@media screen and (max-width:1300px) {
    .start-sec {
        width: auto;
    }
}

@media screen and (max-width:992px) {
    .bg-app {
        background: #393a3c !important;
        padding: 10px !important;
    }

    .bg-sunmi2 {
        background: #cbccce !important;
        padding: 10px !important;
    }

}

@media screen and (max-width:576px) {

    .abt-partners img {
        width: 60% !important;
    }

    .drive-content p {
        text-align: center !important;
    }

    .fashion-content p {
        text-align: center !important;
    }

    .ftr-col p {
        text-align: center !important;
    }
}

.contact-col a {
    text-decoration: none ! Important;
}

.contact-col a {
    text-decoration: none ! Important;
}

.query-col {
    position: relative;
}

.query-col {
    padding: 50px;
    font-size: 20px;
    text-align: left;
    border: solid 1px #ddd;
    border-radius: 5px;
}

@media screen and (min-width:1200px) {
    .query-col {
        padding: 30px 10px;
        width: 100%;
        height: 100%;
    }

    .img-contact h5 {
        font-size: 17px;
    }
}

@media screen and (max-width:1200px) {
    .query-col {
        padding: 30px;
        height: 150px !important;
        width: 100%;
    }

    .img-contact h5 {
        font-size: 15px;
    }

}

@media screen and (max-width: 992px) {
    .query-col {
        padding: 30px;
        height: 100% !important;
        width: 100%;
    }

    .row-container {
        width: 100% !important;
    }
}

@media screen and (max-width: 769px) {
    .query-col {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .cntct-div {
        display: block !important;
    }


}

.query-col::before {
    content: " ";
    display: block;
    position: absolute;
    inset: 0 0 0 0;
    background: hsl(200 10% 100%);
    z-index: -1;
    transition: transform .3s ease;
}

.query-col::before {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.qline {
    width: 3px;
    height: calc(100% - 30px);
    background: #ffac00;
    position: absolute;
    left: 15px;
    top: 15px;
}

.query-col h5 {
    margin-bottom: 2px;
}

.location-col {
    border: solid 1px #dddddd;
    padding: 40px;
    height: calc(100% - 40px);
    border-radius: 5px;
    width: 100%;
}

.contact-location h4 {
    color: #000;
}

.contact-banner p {
    font-size: 18px;
}

.location-col img {
    margin-bottom: 20px;
    width: 30px;
}

@media screen and (max-width:992px) {
    .ipad-banner h1 {
        color: #fff;
    }

    .wrap-hero {
        transform: none !important;
        bottom: 0 !important;
        margin: 0;
        top: 0;
        left: 0;
        margin-right: 0%;
        width: 100%;
        background: #00112c;
        padding: 35px;
        width: 100%;
    }
}

@media screen and (max-width:680px) {
    .wrap-hero {
        padding: 20px 0 0 0 !important;
    }
}

@media screen and (max-width:576px) {

    .sec-content {
        text-align: center !important;
    }

    .main-head {
        padding: 40px 0px;
    }

    .order-code h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 60px 0px;
    }

    .pos-ftr h1 {
        font-size: 1.8rem;
    }

    .bg-wrap-round h2 {
        color: #fff;
    }

}

@media screen and (min-width:992px) {
    .free-head-btn {
        display: none !important;
    }

    .dwnld-main {
        height: 450px;
    }
}


@media screen and (max-width:360px) {
    .head-trial-btn {
        font-size: 13px;
        padding: 5px 10px;
    }

}

.prvcy b {
    color: #000;
    font-weight: bold;
}



.flex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
    place-items: center;
}

.flex-container .card {
    width: 100%;
    height: 100% !important;
    padding: 30px;
    border: solid 1px #ddd;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}


.flex-container .card img {
    width: 140px;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px;
    border-radius: 5px;

}

@media screen and (max-width:992px) {
    .flex-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
        place-items: center;
    }

    .drive-left,
    .drive-right {
        padding: 0px !important;
    }
}

@media screen and (max-width:768px) {
    .flex-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
        place-items: center;
        padding: 10px;
    }

    .col-auto {
        flex: initial;
        margin-top: 20px;
        width: unset !important;
    }

    .price-filter-col .row {
        display: flex;
        justify-content: center;
    }

    .popular {
        margin-top: 50px;
    }

    .package-container {
        width: auto !important;
    }
}

.mn-t-50 {
    margin-top: 50px;
}


table {
    border-collapse: collapse;
}


/* TABLE STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.wrap-content {
    padding: 0px !important;
}

.wrap-table-wrapper {
    margin-top: 0px !important;
}

.sticky-top-pricing {
    background: #fff;
    border-radius: 10px !important;
}

table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

table thead {
    background: var(--white);
    transition: box-shadow 0.2s;
}

.tbl-head-col {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(20, 19, 19, 0.09);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.09);
}

.price-head {
    background: #f6f7f8;
    height: 50px;
}

.price-head th {
    background: #f6f7f8;
    font-size: 16px !important;
    color: #2c2f36;
}

.switch-col {
    margin: 100px 0 60px 0;
}

.switch-button {
    background: rgba(255, 255, 255, 0.56);
    border-radius: 30px;
    overflow: hidden;
    width: 400px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-right: 200px;
    position: relative;
    margin: auto;
    border: solid 1px #ededed;
}

.switch-button:before {
    content: "Restaurant";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    color: #333;
}

.switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    transform: translateX(200px);
    transition: transform 200ms linear;
}

.switch-button-checkbox+.switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    user-select: none;
    pointer-events: none;
}

.switch-button-checkbox+.switch-button-label:before {
    content: "";
    background: #ff9801;
    color: #fff !important;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    transform: translateX(0);
    transition: transform 200ms;
}

.switch-button-checkbox+.switch-button-label .switch-button-label-span {
    position: relative;
}

.pop-link-col {
    position: absolute;
    z-index: 10;
    right: 22px;
    bottom: 18px;
    box-shadow: 0px 18px 36px -18px rgba(0, 0, 0, 0.1), 0px 30px 45px -30px rgba(50, 50, 93, 0);
}

.pop-link-col .btn {
    border: solid 2px #fff;
    color: #fff;
}

.pop-link-col .btn:hover {
    border: solid 2px #fff;
    color: #fff;
}

.table-container {
    border: solid 1px #ededed;
}

table th,
table td {
    width: 25%;
    min-width: 150px;
    border-bottom: solid 1px #f7f7f7;
}

table td {
    text-align: center;
}

colgroup:nth-child(1) {
    width: 25%;
    border: 0 none;
}

colgroup:nth-child(2) {
    width: 25%;
}

colgroup:nth-child(3) {
    width: 25%;
    border: 4px solid #ffac00 !important;
}

.pro-pack-th {
    border: 2px solid #ffac00 !important;
}

colgroup:nth-child(4) {
    width: 24%;
}

.tbl-popular {
    background: #ffac00 !important;
    text-align: center;
    color: #fff !important;
}

table th:nth-child(1) {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0 15px;
}

table th:nth-child(1) .svg-wrapper {
    margin-top: 10px;
}

table th:nth-child(1) svg {
    width: 22px;
    height: 22px;
}

table th .heading {
    padding: 26px 0px 0 0;
    color: var(--white);
    text-align: center;
    font-size: 20px;
}

table th:nth-child(2) .heading {
    background: var(--starter);
}

table th:nth-child(3) .heading {
    background: var(--essential);
}

table th:nth-child(4) .heading {
    background: var(--professional);
}

table th .info {
    position: relative;
    padding: 0rem 0;
    font-size: 16px;
    font-weight: normal;
    border-left: 1px solid var(--lightgray);
    text-align: center;
    margin-bottom: 26px;
}

table th .info p {
    margin-bottom: 26px;
}

table th .popular {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 11px;
    background: var(--popular);
    padding: 4px 8px;
    border-radius: 2px;
}

table th .amount {
    font-size: 2rem;
}

table th .amount span {
    display: block;
    transform: translateY(-8px);
}

table th:nth-child(2) .amount {
    color: var(--starter);
}

table th:nth-child(3) .amount {
    color: var(--essential);
}

table th:nth-child(4) .amount {
    color: var(--professional);
}

table th .billing-msg,
table th .amount span {
    font-weight: normal;
    font-size: 0.8rem;
}

table th button {
    display: inline-block;
    border-radius: 8px;
    padding: 8px 14px !important;
    margin-top: 10px;
    transition: all 0.2s;
}

table th:nth-child(2) button {
    color: var(--starter);
    border: 1px solid var(--starter);
}

table th:nth-child(2) button:hover {
    background: var(--starter);
}

table th:nth-child(3) button {
    color: var(--essential);
    border: 1px solid var(--essential);
}

table th:nth-child(3) button:hover {
    background: var(--essential);
}

table th:nth-child(4) button {
    color: var(--professional);
    border: 1px solid var(--professional);
}

table th:nth-child(4) button:hover {
    background: var(--professional);
}

table th button:hover {
    background: #27292f !important;
    color: #fff !important;
}

table td {
    padding: 18px 22px !important;
}

table td:not(:first-child) {
    border-left: 1px solid var(--lightgray);

}


table td:first-child {
    font-size: 1rem;
    text-align: left;
    padding-left: 15px;
}



table svg.not-included {
    fill: var(--gray);
}

table svg.starter {
    fill: #198754 !important;

}

table svg.essential {
    fill: var(--essential);
}

table svg.professional {
    fill: #198754 !important;
}


.price-filter-col {
    width: fit-content;
    margin: auto;
}

.pricing-filtercol {
    text-align: center;
    padding: 50px 0;
    font-weight: 400;
}

.pricing-filtercol select {
    height: 50px;
    padding: 0 15px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.pricing-filtercol input {
    height: 50px;
    padding: 0 15px;
    border: solid 1px #ccc;
    border-radius: 6px;
}

.pad-top-30 {
    padding-top: 50px !important;
}

.banner-inner-col h4 {
    color: #2c2f36;
    margin-bottom: 50px;
}

.package-container {
    margin: auto;
}

.package-container .col-md-4 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.package-col {
    background: #fff;
    box-shadow: 0 0 0 #000;
    border: 1px solid #eee;
}

.package-col .h5-sub {
    margin-bottom: 0px;
}

.package-col h5 {
    margin-bottom: 10px;
}


.package-col ul {
    padding: 0;
    margin: 0;
}

.package-col ul li {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1.8 !important;
}

.package-col button {
    width: 100%;
    margin-top: 0px;
}

.package-col h5 {
    font-size: 18px;
    margin: 15px 0;
}

.package-col h4 {
    font-size: 40px !important;
    margin-bottom: 0;
    margin-top: 43px;
}

.package-col h4 span {
    font-size: 16px !important;
    font-weight: 600;
    color: #666 !important;
}

.package-col img {
    height: 11px;
    margin-right: 5px;
}

.popular {
    position: relative;
}

.popular .package-col {
    background: #fff;
}

.popular .package-col h2 {
    color: #fff;
}

.btn-highlight.color-4 {
    background: #2c2f36;
}

.btn-highlight.color-4:hover {
    background: #000;
    border-color: #000;
}

.popular .package-col button {
    background: #ffac00;
    color: #2c2f36;
}

.popular .package-col button:hover {
    background: #ffb722 !important;
    color: #2c2f36 !important;
    border-color: #ffb722;
}

.popular-label {
    background: #ffac00;
    color: #fff;
    position: absolute;
    z-index: 0;
    width: calc(100% - 26px);
    left: 13px;
    margin-top: 50px;
    border: 0px solid #000000;
    padding: 15px 0;
    font-size: 22px;
    font-weight: 600;
    padding-left: 40px;
}

.package-container {
    width: 96% !important;
    margin: auto;
}

.package-col {
    background: #fff;
    box-shadow: 0 0 0 #000;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
}

.package-col:before {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    bottom: -9.5px;
    content: "";
    height: 9.5px;
    left: 6.5%;
    position: absolute;
    width: 88%;
    transition: background-color 0.3s ease;
}

.package-col:hover:before {
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.1);
}

.package-col h1 {
    color: #ffac00;
    margin-bottom: 10px;
}

.package-col ul {
    padding: 0;
    margin: 0;
}

.package-col ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.package-col button {
    width: 100%;
    margin-top: 0px;
}

.package-col h5 {
    font-size: 24px;
    margin: 15px 0;
    font-weight: 500;
}

.package-col img {
    height: 11px;
    margin-right: 5px;
}

.popular {
    position: relative;
}

.popular .package-col h2 {
    color: #fff;
}

.popular-label {
    background: #ffac00;
    color: #fff;
    position: absolute;
    z-index: 0;
    width: calc(100% - 26px);
    left: 13px;
    margin-top: 50px;
    border: 0px solid #000000;
    padding: 10px 0;
    font-weight: 600;
    padding-left: 40px;
}

.RoiCal-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 65%;
    margin: 20px auto;

}

.RoiCal-toggle-wrap p {
    color: #51545E;
}

.RoiCal-toggle {
    width: 100px;
    height: 44px;
    position: relative;
    margin-right: 20px;
    width: 30%;
}

.RoiCal-toggle input[type=checkbox] {
    visibility: hidden;
    pointer-events: none;
}

.RoiCal-toggle label span::before,
.RoiCal-toggle label span::after {
    position: absolute;
    box-sizing: border-box;
}

.RoiCal-toggle label {
    color: #F5F9FF;
    display: block;
    cursor: pointer;
    transition: all .2s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.RoiCal-toggle label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background-color: #F5F9FF;
    transition: all .2s ease;
    border: 0px;
    box-sizing: border-box;
}

.RoiCal-toggle label::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background-color: #fff;
    transition: all .2s ease;
    box-sizing: border-box;
}

.RoiCal-toggle input[type=checkbox]:checked+label {
    color: #fff;
}

.RoiCal-toggle input[type=checkbox]:checked+label::before {
    background-color: #fff;
}

.RoiCal-toggle input[type=checkbox]:checked+label::after {
    left: calc(100% - 4px - 35px);
}

.mn-t-50 {
    margin-top: 50px;
}

table {
    border-collapse: collapse;
}

.sticky-top-pricing {
    top: 70px !important;
    background: #fff;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar {
    display: none;
}

table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

table thead {
    background: var(--white);
    transition: box-shadow 0.2s;
}

.tbl-head-col {
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.09);
}

.price-head {
    background: #f6f7f8;
    height: 50px;
}

.price-head th {
    background: #f6f7f8;
    font-size: 16px !important;
}

.switch-col {
    margin: 100px 0 60px 0;
}

.switch-button {
    background: rgba(255, 255, 255, 0.56);
    border-radius: 30px;
    overflow: hidden;
    width: 400px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-right: 200px;
    position: relative;
    margin: auto;
    border: solid 1px #ededed;
}

.switch-button:before {
    content: "Restaurant";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    color: #333;
}

.switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
    transform: translateX(200px);
    transition: transform 200ms linear;
}

.switch-button-checkbox+.switch-button-label {
    position: relative;
    padding: 15px 0;
    display: block;
    user-select: none;
    pointer-events: none;
}

.switch-button-checkbox+.switch-button-label:before {
    content: "";
    background: #ff9801;
    color: #fff !important;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 30px;
    transform: translateX(0);
    transition: transform 200ms;
}

.switch-button-checkbox+.switch-button-label .switch-button-label-span {
    position: relative;
}

.table-container {
    border: solid 1px #ededed;
}

table th,
table td {
    width: 25%;
    min-width: 150px;
    border-bottom: solid 1px #f7f7f7;
}

table td {
    text-align: center;
}

colgroup:nth-child(1) {
    width: 25%;
    border: 0 none;
}

colgroup:nth-child(2) {
    width: 25%;
}

colgroup:nth-child(3) {
    width: 25%;
    border: 4px solid #ffac00;
}

colgroup:nth-child(4) {
    width: 24%;
}

.dashboard-img-border .image-card-wrap img {
    border: solid 1px #eee;
}

.tbl-popular {
    background: #ffac00 !important;
    text-align: center;
    color: #fff !important;
}

table th:nth-child(1) {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 22px;

}

table th:nth-child(1) .svg-wrapper {
    margin-top: 10px;
}

table th:nth-child(1) svg {
    width: 22px;
    height: 22px;
}

table th .heading {
    padding: 26px 0px 0 0;
    color: #2c2f36;
    text-align: center;
}

table th:nth-child(2) .heading {
    background: var(--starter);
}

table th:nth-child(3) .heading {
    background: var(--essential);
}

table th:nth-child(4) .heading {
    background: var(--professional);
}

table th .info {
    position: relative;
    padding: 0rem 0;
    font-size: 16px;
    font-weight: normal;
    border-left: 1px solid var(--lightgray);
    text-align: center;
    margin-bottom: 26px;
}

table th .info p {
    margin-bottom: 10px;
}

.plan-chart table th .info p {
    font-size: 14px !important;
    padding: 0 15px;
    height: 46px;
}

table th .popular {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 11px;
    background: var(--popular);
    padding: 4px 8px;
    border-radius: 2px;
}

table th .amount {
    font-size: 2rem;
}

table th .amount span {
    display: block;
    transform: translateY(-8px);
}

table th:nth-child(2) .amount {
    color: var(--starter);
}

table th:nth-child(3) .amount {
    color: var(--essential);
}

table th:nth-child(4) .amount {
    color: var(--professional);
}

table th .billing-msg,
table th .amount span {
    font-weight: normal;
    font-size: 0.8rem;
}

table th button {
    display: inline-block;
    border-radius: 6px;
    padding: 8px 14px !important;
    margin-top: 10px;
    transition: all 0.2s;
}


table th:nth-child(2) button {
    color: var(--starter);
    border: 1px solid var(--starter);
}

table th:nth-child(2) button:hover {
    background: var(--starter);
}

table th:nth-child(3) button {
    color: var(--essential);
    border: 1px solid var(--essential);
}

table th:nth-child(3) button:hover {
    background: var(--essential);
}

table th:nth-child(4) button {
    color: var(--professional);
    border: 1px solid var(--professional);
}

table th:nth-child(4) button:hover {
    background: var(--professional);
}

table th button:hover {
    background: #27292f !important;
    color: #fff !important;
}

table td {
    padding: 10px;
}

table td:not(:first-child) {
    border-left: 1px solid var(--lightgray);
}

table td:first-child {
    font-size: 1rem;
    text-align: left;
    font-weight: 500;
    color: #333;
    padding-left: 15px;
}

table svg {
    width: 22px !important;
    height: auto !important;
}

table svg.not-included {
    fill: var(--gray);
}

table svg.starter {
    fill: var(--starter);
}

table svg.essential {
    fill: var(--essential);
}

table svg.professional {
    fill: var(--professional);
}

.price-filter-col {
    width: fit-content;
    margin: auto;
}

.pricing-filtercol {
    text-align: center;
    padding: 50px 0;
    font-weight: 400;
}

.pricing-filtercol select {
    height: 42px;
    width: 198px;
    padding: 0 15px;
    border-radius: 6px;
    background: #fff !important;
}

.pricing-filtercol input {
    height: 50px;
    padding: 0 15px;
    border: solid 1px #ccc;
    border-radius: 6px;
}

.pad-top-30 {
    padding-top: 50px !important;
}

.banner-inner-col h4 {
    color: #2c2f36;
    margin-bottom: 50px;
}

.box-shadow-col {
    background: #FFFFFF;
    border: 1px solid #e7ecec;
    -webkit-box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.04));
    box-shadow: 0px 6px 50px var(--Ev100, rgba(30, 10, 58, 0.04));
    padding: 30px;
    border-radius: 10px;
    height: calc(100% - 24px);
    transition: all 0.5s;

}

.pad-15p {
    padding: 0 15%;
}

.screen-col {
    position: relative;
    max-height: 850px;
    overflow: hidden;
}

.screen-col img {
    /* width: 76%;
    border-radius: 14px;
    position: relative;
    margin-top: 50px; */
    width: 76%;
    max-width: 100%;
    border-radius: 14px;
    position: relative;
    /* Makes z-index work */
    margin-top: 50px;
    /* z-index: 101;        */
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* Center image */
    z-index: 0;
}

.screen-col-overlay {
    /* width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(44, 47, 54);
    min-height: 250px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(44, 47, 54, 0) 27%, rgba(0, 0, 0, 0.7707457983193278) 100%); */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, rgba(44, 47, 54, 0) 0%, rgba(0, 0, 0, 0.77) 100%);
    z-index: 1;
}


.img-thumb-col {
    margin: 25px 0;
}

.img-thumb-col img {
    width: 54px !important;
    height: 54px;
    border: solid 1px #ffe490;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fffce5;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

@media screen and (max-width: 1024px) {

    .swiper-container {
        overflow: hidden !important;
    }

    .pad-title-p {
        padding: 0 5% 0 0%;
    }

    .banner-container {
        padding: 70px 0px 15px 0px;
    }

    .absolute-container {
        position: relative !important;
        padding-right: 12px !important;
    }

    .h-features {
        min-height: auto;
    }

    .pad-title-p-center {
        padding: 0 10% 0 10%;
    }

    .pad-t-195 {
        padding-top: 150px !important;
    }

    .integrations-logos img {
        height: 20px;
    }

    .int-main-img {
        padding-right: 10px !important;
    }

    .int-main-info {
        padding-left: 10px !important;
    }

    .mn-b-60 {
        margin-bottom: 40px;
    }

    .white-col {
        padding: 30px;
        margin-bottom: 15px;
    }

    .white-col p {
        margin-bottom: 0;
    }

    .int-card-list-title h4 {
        font-size: 22px !important;
    }

    .int-card-list-title {
        padding-left: 0px;
    }

    .section-tab p {
        margin-bottom: 0 !important;
        line-height: 1.4em;
    }

    .grid-5-col .white-col {
        height: auto;
    }

    .grid-sub-col .absolute-col {
        padding: 30px;
    }

    .img-scale {
        height: 100%;
    }

    .img-scale img {
        height: 100% !important;
    }

    .img-scale:last-child {
        margin-bottom: 0 !important;
    }

    .grid-col-1 {
        padding-right: 0 !important;
    }

    .int-main-img img {
        width: -webkit-fill-available;
        height: 100%;
    }

    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }

}

@media screen and (max-width: 991px) {
    .row-reverse-normal {
        display: block;
    }

    .banner-container {
        height: 500px !important;
    }

    .screenshot-col {
        padding: 0 70px;
    }

    .pad-t-195 {
        padding-top: 110px !important;
    }

    .banner-container {
        padding-bottom: 20px !important;
    }

    .int-main-img {
        padding: 0 0px !important;
    }

    .int-main-info {
        padding: 0 0px !important;
        margin-top: 15px;
    }

    .grid-sub-col {
        padding: 0 !important;
    }

    .grid-col-2 {
        padding: 0 !important;
    }

    .white-col {
        margin-bottom: 15px;
        padding: 25px;
    }

    .white-col h3 {

        margin-bottom: 5px;
    }

    .white-col p {
        margin-bottom: 0;
    }

    .grid-5-col .white-col {
        height: auto;
    }

    .grid-sub-col .absolute-col {
        padding: 24px;
    }

    .grid-sub-col .absolute-col h3 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }

    .grid-col-3 {
        padding: 0px !important;
    }
}

@media screen and (max-width: 768px) {
    .content-col {
        padding: 40px 0;
    }

    .absolute-container {
        position: relative !important;
        padding-right: 25px !important;
        padding-left: 25px;
    }

    .col-auto {
        flex: initial;
        width: unset !important;
    }
}

@media screen and (max-width: 660px) {
    .tbl-head-col th {
        height: 120px;
    }

    colgroup:nth-child(3) {
        border: 2px solid #ff9801;
    }

    table th:nth-child(1) {
        font-size: 16px;
    }

    .price-head th {
        font-size: 14px;
    }

    colgroup:nth-child(1) {
        width: 40%;
    }

    colgroup:nth-child(2) {
        width: 20%;
    }

    colgroup:nth-child(3) {
        width: 20%;
    }

    colgroup:nth-child(4) {
        width: 20%;
    }

    table td:first-child {
        font-size: 14px !important;
    }

    .pro-pack-th {
        background: #ffac00 !important;
        color: #fff !important;
    }

    .price-head th {
        font-size: 14px !important;
    }

    .price-head {
        height: 40px !important;
    }

    .info p {
        display: none;
    }

    .tbl-popular {
        display: none;
    }

    table th .heading {
        padding: 0px 0px 0 0;
        text-align: left;
        font-size: 16px;
        padding-left: 18px;
    }

    table th .info {
        margin-bottom: 0;
    }

    table th .heading span {
        display: none;
    }

    table th button {
        display: none !important;
    }

    table th .heading {
        transform: rotate(-90deg);
    }

    table th,
    table td {
        min-width: auto;
        width: 20%;
    }

    table td:first-child {
        width: 40%;
    }

    table th:nth-child(1) {
        width: 40%;
    }

    .row-reverse-normal {
        display: block !important;
    }

    .swiper-container {
        overflow: hidden !important;
    }

    .pad-title-p {
        padding: 0 0% 0 0%;
    }

    .screenshot-col {
        width: 100%;
        padding: 0;
    }

    .screenshot-col img {
        width: 100% !important;
    }

    .pad-t-195 {
        padding-top: 110px !important;
    }
}

@media screen and (max-width: 480px) {
    .product-box {
        padding: 0px 0px 0px 0px !important;
    }

    .team .col-md-4 {
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    .team .col-md-4:last-child {
        margin-bottom: 0px !important;
    }

    .language button {
        margin-left: 0 !important;
    }

    .top-bar .col {
        padding: 0 !important;
    }

    .content:hover {
        width: 100%
    }

    .screenshot-col img {
        border-radius: 10px;
    }

    .absolute-container {
        position: relative !important;
    }

    .h-features {
        min-height: auto;
    }

    .grid-sub-col .absolute-col {
        top: 0;
        bottom: inherit;
    }

    .grid-col-1 {
        height: 500px;
        margin-bottom: 20px;
    }

    .img-scale {
        border-radius: 20px;
    }

    .m-no-pad {
        padding: 0 !important;
    }

    .pad-65-l {
        padding-left: 0px;
    }

    .point-symbol-col .col-xxl-6 {
        padding: 0 !important;
    }

    .grid-5-col {
        padding: 20px 8px 8px 8px !important;
    }

    .absolute-container {
        padding-right: 20px !important;
        padding-left: 20px;
    }

    .pad-title-p-center {
        padding: 0 10% 0 10%;
    }

    .pad-title-p-center {
        padding: 0 0%;
    }

    .screenshot-container P {
        margin-bottom: 30px;
    }

    .screenshot-container section {
        width: 100%;
        margin: auto;
        padding: 0px 8px;
    }

    .integrations-container {
        padding: 110px 8px 30px 8px;
    }

    .row-reverse-normal {
        padding: 0;
    }

    .grid-points-col {
        padding: 30px 8px;
    }

    .row-reverse {
        padding: 0 !important;
    }

    .reports {
        padding: 30px 8px !important;
    }

    .mn-b-60 {
        margin-bottom: 30px;
    }

    .report-col-1 {
        padding: 0 !important;
    }

    .gray-col {
        margin-bottom: 20px;
    }

    .report-col-2 {
        padding: 0 !important;
        margin-top: 20px;
    }

    .vertical-tab-col {
        padding: 30px 8px !important;
    }

    .section-tab .tab-title {
        padding: 25px 0px;
    }

    .three-pic-container .parallax:last-child {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0;
    }

    .three-pic-container .parallax:first-child {
        padding-left: 0px;
        padding-right: 0px;
    }

    .three-pic-container {
        padding: 30px 20px 0px 20px !important;
    }

    .three-pic-container .container {
        padding: 0 !important;
    }

    .profile {
        border-radius: 20px 20px 20px 20px !important;
        -moz-border-radius: 20px 20px 20px 20px !important;
        -webkit-border-radius: 20px 20px 20px 20px !important;
    }

    .three-pic-container .parallax {
        padding-left: 0;
        padding-right: 0;
    }

    .three-pic-container .parallax {
        margin-bottom: 20px;
    }

    .gray-col {
        padding: 20px;
    }

    .reports .gray-col h3 {
        padding-right: 0;
    }

    .row-reverse {
        display: block;
    }

    .map {
        width: 100%;
    }

    .lithos-map h5 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .profile {
        padding: 25px;
    }

    .profile h2 {
        transform: translateY(5.5ex);
        margin-bottom: 10px;
    }

    .profile h3 {
        transform: translateY(9.5ex);
    }

    .testim {
        width: 100% !important;
    }

    .testim .cont div p {
        padding: 0 30px !important;
        font-size: 18px !important;
    }

    .testim .cont div .img {
        padding: 0 30px !important;
    }

    .testim h2 {
        padding-left: 30px !important;
    }

    .testim .cont div h3 {
        margin: 30px 30px 0 30px !important;
    }

    .integrations-container {
        padding-bottom: 0 !important;
    }

    .resize img {
        height: 16px !important;
    }

    .pad-65-l {
        padding-left: 0px !important;
    }

    .pad-65-r {
        padding-right: 0px !important;
    }

    .slick-slide {
        padding-right: 10px;
    }

    .cat-section {
        padding: 10px 20px 0 20px !important;
    }

    .pop-arrow {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
    }

    .lithos-map h2 {
        padding: 0 5%;
        margin-top: 30px;
    }

    .lithos-map p {
        padding: 0 5%;
    }

    .integration-content-col {
        background: #fff;
        border-radius: 0;
        padding: 0 !important;
    }

    .integration-content-col h3 {
        font-size: 24px !important;
        margin-top: 15px;
    }

    .int-more-btn {
        margin-bottom: 30px;
    }

    .int-more-btn button {
        background: #2c2f36 !important;
        color: #fff !important;
        padding-left: 30px !important;
    }

    .separator {
        margin: 20px 0;
    }
}

.margin-para {
    margin-top: 50px;
}

@media screen and (max-width:992px) {
    .pricing-filtercol .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .price-filter-col .row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .price-filter-col .row .col-auto {
        margin-top: 10px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {

    .pricing-filtercol .container,
    .pricing-filtercol .container-md,
    .pricing-filtercol .container-sm {
        max-width: 801px !important;
    }

    .price-tag .container,
    price-tag .container-md,
    price-tag .container-sm {
        max-width: 801px !important;
    }
}

@media screen and (max-width:768px) {
    .ac-img img {
        width: 100% !important;
    }

    .trial-img img {
        width: 100% !important;
    }

    .soln .icon-img img {
        width: 100% !important;
    }
}

.web-col .form-item {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.web-col input {
    transition: all .2s ease;
}

.web-col input.form-style {
    color: #666;
    display: block;
    width: 100%;
    height: 48px;
    /* padding: 5px 20px; */
    padding: 14px 14px;
    border: 1px solid #eee;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 6px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
  
}

.web-col select {
    transition: all .2s ease;
}

.web-col select.form-style {
    color: #333;
    display: block;
    width: 100%;
    height: 48px;
    padding: 5px 25px;
    border: 1px solid #ccc;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    font-size: 14px;
}

.web-col textarea {
    transition: all .2s ease;
}

.web-col textarea.form-style {
    color: #333;
    display: block;
    width: 100%;
    height: 75px;
    /* padding: 5px 25px; */
    padding: 14px 14px;
    border: 1px solid #eee;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    font-size: 14px;

}

.web-col div.form-item .form-style:focus {
    outline: none;
    border: 1px solid #ddd;
    color: #333;
}

.web-col div.form-item p.formLabel {
    position: absolute;
    left: 15px;
    top: 12px;
    transition: all .2s ease;
    color: #666;
    font-size: 14px;
}

.web-col div.form-item p.formLabel::after {
    display: none;
}

.web-col .formTop {
    top: -15px !important;
    left: 20px;
    background-color: #fff;
    padding: 0 5px;
    border-radius: 4px;
    font-size: 14px !important;
    color: #666 !important;
}

.web-col .cformLabel {
    width: auto;
    background: #eef1f6;
    background: -moz-linear-gradient(top, #eef1f6 79%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #eef1f6 79%, #ffffff 100%);
    background: linear-gradient(to bottom, #fff 79%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eef1f6', endColorstr='#ffffff', GradientType=0);
    font-size: 14px;
    color: #666;
    position: absolute;
    top: -12px;
    margin-left: 20px;
    padding: 0 5px;
    z-index: 1;
}

.web-col .c-form-col .btn {
    background: #2c2f36;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
}

.web-col .c-form-col select {
    height: 48px;
    padding: 5px 22px;
    width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 6px;
}

.web-col .c-form-col {
    background: #fff;
    box-shadow: 0 0 30px #eee;
    padding: 32px 40px 32px 40px;
    border-radius: 10px;
    border: solid 1px #eee;
    margin: 15px 0;
}

.web-col .c-form-col small {
    color: #ff3c3c;
}

.web-col .form-error-message {
    color: #ff3c3c;
    font-size: 12px;
    margin-top: 5px;
}

.web-col .c-form-col .success {
    color: #43ab3c;
    font-weight: 600;
}

.web-col .c-form-col .success img {
    width: 20px;
    margin-top: -4px;
    margin-right: 5px;
}

.web-col .c-form-head p {
    margin-bottom: 30px;
    padding: 0 15%;
}

.web-col .c-form-col .form-item {
    margin: 25px 0;
}

.web-col .c-form-col h4 {
    color: #2c2f36;
}

.web-col .suport-card .s-c-info h4 {
    color: #2c2f36;
}

.web-col .c-form-col textarea.form-style {
    padding-top: 10px !important;
    height: 90px;
 
}

.web-col .suport-card {
    border: solid 1px #eee;
    margin: 15px 0;
    border-radius: 10px;
    width: 100%;
    float: right;
    box-shadow: 0 0 30px #eee;
    display: flex;
    align-items: center;
}

.web-col .suport-card img {
    width: 90px;
    float: left;
    margin-right: 30px;

}

.web-col .suport-card .free-trial-btn {
    position: relative !important;
    border: solid 1px #ccc;
    color: #666;
    text-transform: inherit;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.web-col .suport-card .free-trial-btn:hover {
    background-color: #2c2f36;
    color: #fff;
    border-color: transparent;
}

.web-col .s-c-info {
    width: 80%;
    float: left;
    padding-left: 40px;
}

.bar-wraps {
    margin-top: 0px;
    margin-bottom: 60px;
}

#derterminate-success {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bar-container {
    position: relative;
    overflow: hidden;
    width: 50%;
    height: 15px;
    border-radius: 50px;
    background-color: #fff;
    margin: auto;
    align-self: flex-start;
}

.progress-line {
    height: 15px;
    border-radius: 50px;
    background-color: #ff9200;
    animation: loading-success 1s linear;
}

.infinite-line {
    position: absolute;
    height: 15px;
    background-color: #ffac00;
    border-radius: 50px;
    will-change: left, right;
    animation: loading-infinite 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-iteration-count: 3;
    animation-fill-mode: forwards;
}

.progress-line2 {
    position: absolute;
    height: 15px;
    border-radius: 50px;
    background-color: #ffac00;
    animation: loading-success 1s ease-in;
    animation-delay: 3.5s;
    animation-fill-mode: forwards;
}

.bar-wraps {
    text-align: center;
}

.bar-wraps .btn {
    margin-top: 50px;
}

.ph3 {
    font-size: 20px !important;
    padding: 0 15%;
}

.bar-wraps .btn-primary {
    color: #fff;
    background-color: #ff9200;
}

.bar-wraps h1 {
    text-align: center;
    margin-bottom: 20px;
}

@keyframes loading-infinite {
    0% {
        width: 80px;
        left: 0;
        right: 100%;
    }

    1% {
        width: 100px;
    }

    60% {
        width: 140px;
    }

    100% {
        width: 50px;
        left: 100%;
        right: 0%;
    }
}

@keyframes loading-success {
    0% {
        width: 0%;
    }

    80% {
        width: 65%;
    }

    100% {
        width: 100%;
    }
}

#inderterminate-determinate {
    margin-top: 50px;
}

div.icon {

    height: 60px;
    width: 60px;
    margin: auto;
    margin-top: -38px;
}

.success svg {
    border-radius: 50%;
    fill: #35B37E;
    visibility: hidden;
    animation: success-load 1s ease-in;
    animation-delay: 4.8s;
    background-color: #f8f9fc;
    animation-fill-mode: forwards;
}

.cancel svg {
    animation: hiding-icon .6s ease-out;
    animation-delay: .6s;
    visibility: visible;
    animation-fill-mode: forwards;
}

@keyframes hiding-icon {
    0% {
        transform-origin: center;
        transform: rotate(0deg);
        visibility: visible;
    }

    70% {
        transform: rotate(0deg);
        opacity: 1;
    }

    90% {
        opacity: .8;
    }

    100% {
        transform: rotate(180deg);
        opacity: 0;
    }
}

@keyframes success-load {
    0% {
        transform: scale(1.3, 1.3);
        visibility: visible;
    }

    10% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1, 1);
        visibility: visible;
    }
}

.card-verify {
    background: #fff;
    border-radius: 10px;
    padding: 50px 50px;
    margin: 15px 0;
    text-align: left;
    border: solid 1px #eee;
    height: calc(100% - 30px);
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.card-verify h3 {
    margin-bottom: 10px;
}

.card-verify p {
    margin-bottom: 0 !important;
    padding: 0;
    text-align: left;
}

.card-verify .btn {
    margin-top: 15px !important;
}

.card-verify .download-img {
    margin: 20px 5px 0px 0;
}

.supp-download img {
    height: 36px;
}


.supp-apps {
    margin: 20px 0;
}

.supp-apps img {
    height: 100px;
    margin: 15px 0;
}

.supp-apps h2 {

    margin-bottom: 10px;
}

.supp-apps a {
    color: inherit;
    text-decoration: none !important;
}

.supp-download img {
    height: 36px;
}

.gitext-form-col {
    width: 60% !important;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
}

.grid-content-col {
    background: url(https://cdn.lithospos.com/web/assets/images/theme/grid2.svg) repeat #f7f8f8;
    color: #c9c6c6;
}

@media screen and (max-width: 992px) {

    .ac-wrapper .container,
    .ac-wrapper .container-md,
    .ac-wrapper .container-sm {
        max-width: 818px !important;
    }

    .card-verify {
        padding: 30px 30px !important;
    }

    .supp-apps img {
        height: 80px;
    }
}

@media screen and (min-width:992px) {
    .supp-apps {
        flex: 0 0 20%;
        margin: 20px 0;
    }
}

.flex-apps {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
}

@media screen and (max-width:992px) {
    .flex-apps {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media screen and (max-width:768px) {
    .flex-apps {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
    }

}

@media screen and (max-width:576px) {
    .flex-apps {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.delivery-app-settings h3 {
    text-align: center;
    margin-bottom: 50px;
}

.circle {
    font-weight: bold;
    border-radius: 50%;
    background-color: #ffac00;
    color: #4D4545;
    width: 70px;
    height: 70px;
}

.how-it-works p {
    margin-bottom: 4px;
}

.how-it-works img {
    width: 40px;
}

.ci-icon {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    margin-right: 0%;
    width: 100%;
    transform: translate(0%, -50%);
}

.how-it-works.row {
    display: flex;
}

.how-it-works.row .col-2 {
    display: inline-flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
}

.how-it-works.row .col-2::after {
    position: absolute;
    border-left: 3px solid #ff9200;
    z-index: 1;
}

.how-it-works.row .col-2.bottom::after {
    height: 100%;
    left: 50%;
    top: 0%;
}

.how-it-works.row .col-2.top::after {
    height: 50%;
    left: 50%;
    top: 0;
}

.timeline div {
    padding: 0;
    height: 40px;
}

.timeline .hr-line {
    border-top: 3px solid #ffac00 !important;
    margin: 0 !important;
    top: 17px !important;
    position: relative !important;
}

.timeline .col-2 {
    display: flex;
    overflow: hidden;
}

.timeline .corner {
    border: 3px solid #ffac00;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.timeline .top-right {
    left: 50%;
    top: -50%;
}

.timeline .left-bottom {
    left: -50%;
    top: calc(50% - 3px);
}

.timeline .top-left {
    left: -50%;
    top: -50%;
}

.timeline .right-bottom {
    left: 50%;
    top: calc(50% - 3px);
}

.fd-app-features {
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline-event {
    position: relative;
    vertical-align: middle;
    cursor: pointer;
}

.right-features .timeline-event {
    text-align: right;
}

.timeline-event:hover .timeline-event-icon {
    background-color: #000;
}

.timeline-event:hover .timeline-event-icon img {
    transform: scale(1.1);
    filter: brightness(0%) invert(1);
}

.timeline-event:hover .timeline-event-thumbnail {
    -moz-box-shadow: inset 40em 0 0 0 #a83279;
    -webkit-box-shadow: inset 40em 0 0 0 #a83279;
    box-shadow: inset 40em 0 0 0 #a83279;
}

.timeline-event-copy {
    padding: 0px 0px 0px 75px;
    position: relative;
    top: initial;
    left: 0em;
    width: 100%;
    display: table;
    min-height: 115px;
}

.timeline-event-copy span {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    color: #fff;
}

.timeline-event-copy h4 {

    margin-bottom: 1.2em;
}

.timeline-event-copy strong {
    font-weight: 700;
}

.timeline-event-copy p:not(.timeline-event-thumbnail) {
    padding-bottom: 1.2em;
}

.timeline-event-icon {
    transition: transform .2s;
    background-color: #ffac00;
    outline: 0px solid white;
    display: block;
    margin: 0.5em 0.5em 0.5em -0.5em;
    position: absolute;
    top: 21%;
    left: 0em;
    width: 70px;
    height: 70px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    border-radius: 50%;
}

.timeline-event-icon img {
    position: relative;
    filter: brightness(0%) invert(1);
    top: 15%;
    transform: translate(0%, 0%);
    transition: transform .2s;
    width: 35px;
}

.right-features .timeline-event-icon {
    right: 0em !important;
    left: initial;
    margin: 0.5em -0.5em 0.5em 0.5em;
}

.right-features .timeline-event-copy {
    padding: 20px 75px 0px 0px;
}

.right-features .timeline-event-copy span {
    text-align: right;
    color: #fff;
}

.timeline-event-thumbnail {
    -moz-transition: box-shadow 0.5s ease-in 0.1s;
    -o-transition: box-shadow 0.5s ease-in 0.1s;
    -webkit-transition: box-shadow 0.5s ease-in;
    -webkit-transition-delay: 0.1s;
    transition: box-shadow 0.5s ease-in 0.1s;
    color: white;
    font-size: 0.75em;
    background-color: black;
    -moz-box-shadow: inset 0 0 0 0em #ef795a;
    -webkit-box-shadow: inset 0 0 0 0em #ef795a;
    box-shadow: inset 0 0 0 0em #ef795a;
    display: inline-block;
    margin-bottom: 1.2em;
    padding: 0.25em 1em 0.2em 1em;
}

.fd-delivery-app-features ul {
    display: inline-block;
    vertical-align: middle;
    float: none;
    width: 36.5%;
    margin-top: 25px;
}

.fd-delivery-app-features .fd-app-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27%;
    vertical-align: middle;
    float: none;
}

.fd-app-img img {
    width: 80%
}

.fd-delivery-app-features h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.grow {
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.how-it-works:hover .grow {
    transform: scale(1.1);
}


.outline-outward {
    display: inline-block;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.outline-outward:before {
    content: '';
    position: absolute;
    border: #ffac00 solid 2px;
    border-radius: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition-duration: .3s;
    transition-property: top right bottom left;
}

.how-it-works:hover .outline-outward:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
}


.outline-inward {
    display: inline-block;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.outline-inward:before {
    content: '';
    position: absolute;
    border: #ececec solid 2px;
    top: -16px;
    right: -16px;
    bottom: -16px;
    left: -16px;
    opacity: 0;
    transition-duration: .3s;
    transition-property: top right bottom left;
}

.how-it-works:hover .outline-inward:before {
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    opacity: 1;
}

.text-right {
    text-align: right;
}

.ftr-online {
    background: #43474d !important;
}

.ftr-online ul {
    list-style: none !important;
}

.app-sec {
    position: relative;
    background-color: #ffac00;
    background-size: 100% 100%;
    text-align: center;
    padding: 120px 0px !important;
}

.app-sec h4 {
    color: #fff;
}

.app-sec p {
    color: #fff;
}

.app-sec .app-sec-1 .common-middle-class-2 {
    position: absolute;
    left: 10%;
    top: 25%;
}

@media screen and (max-width:992px) {

    .app-sec .app-sec-1 .common-middle-class-2 {
        position: static;
        padding: 32px 39px;
        text-align: center;

    }
}

@media (max-width: 768px) {

    .delivery-app-settings .container,
    .delivery-app-settings .container-md,
    .delivery-app-settings .container-sm {
        max-width: 773px;
    }

    .fd-app-img img {
        display: none;
    }

    .fd-delivery-app-features ul {
        width: auto;

    }

    .right-features .timeline-event-icon {
        left: 0px;
        margin: 0px;
    }

    .right-features .timeline-event-copy span {
        text-align: left;
        padding-left: 100px;
        color: #fff;
    }

    .right-features .timeline-event-copy {
        padding: 1px 75px 0px 0px;
    }

    .timeline-event-icon {
        margin: 0px;

    }

    .fd-delivery-app-features ul {

        margin-top: 0px;
    }

    .timeline-event-copy span {
        padding-left: 20px;
    }

    .how-it-works .col-6 {
        width: 75% !important;
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }

    .how-it-works .col-2 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .circle {
        height: 70px;
    }

}

@media screen and (min-width:1025px) and (max-width:1200px) {

    .top-bar .container,
    .top-bar .container-lg,
    .top-bar .container-md,
    .top-bar .container-sm {
        max-width: 1060px;
    }

    .header .container,
    .header .container-lg,
    .header .container-md,
    .header .container-sm {
        max-width: 1060px !important;
    }

    .banner .container,
    .banner .container-lg,
    .banner .container-md,
    .banner .container-sm {
        max-width: 1060px !important;
    }

    .tr-sec .container,
    .tr-sec .container-lg,
    .tr-sec .container-md,
    .tr-sec .container-sm {
        max-width: 1060px !important;
    }

    .home-sec .container,
    .home-sec .container-lg,
    .home-sec .container-md,
    .home-sec .container-sm {
        max-width: 1060px !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1278px) {
    .head-trial-btn {
        font-size: 15px;
        padding: 8px 7px !important;
    }
}

@media screen and (max-width:576px) {
    .fd-delivery-app-features .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

}


.phonepe-qr p {
    font-size: 20px;
}


@media screen and (min-width:1200px) {
    .d-col {
        padding: 80px 0px !important;
    }

}

@media screen and (max-width:1200px) {
    .d-col {
        padding: 50px 0px !important;
    }

}

@media screen and (max-width:576px) {
    .d-col {
        padding: 20px 0px 10px 0px !important;
    }

}

.qr-tab img {
    width: 70%;
    margin-top: 20px;
}

.qr-app-dwnld {
    text-align: center;
    margin-top: 20px;
}

.signup p {
    margin-bottom: 50px;

}

.rqst-head h1 {
    padding: 0 15%;
    text-align: center;
}

.rqst-head p {
    padding: 0 20%;
    text-align: center;
}

.rqst-head ul {
    padding: 0;
    margin: 0;
}

.rqst-head ul li {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 2.5em;
}

.rqst-head ul li img {
    width: 25px;
    float: left;
    position: relative;
    margin: 12px 10px 0 0px;
}

.rqst-head h4 {
    margin-bottom: 30px;
}

.rqst-banner {
    text-align: center;
}

.rqst-banner img {
    width: 80%;
    margin: auto;
    margin: 30px 0 80px 0;
}

.pos-features {
    padding: 30px 30px;
    margin: 15px 0;
    background: #fff;
    border-radius: 15px;
}

.pos-features p {
    margin-bottom: 0px;
}

.pos-features img {
    height: auto;
    margin-bottom: 10px;
}

.pos-features h2 {
    text-align: center;

    margin-bottom: 10px;
}

.reqstdemo {
    text-align: center !important;
    margin-top: 30px;
}

.rqst-demo-hd-col h4 {
    color: #2c2f36;
}

@media screen and (max-width:992px) {
    .dwnld-wrap {
        display: block !important;
        text-align: center;
    }

    .download {
        margin-top: 37px;
    }

    .d-col {
        padding: 0px 0px 0px 0px !important;
    }

    .d-col h1 {
        margin-top: 31px;
    }

    .rqst-head h1 {
        padding: 0px;
    }

    .rqst-head p {
        padding: 0px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .head-trial-btn {
        padding: 0px;
       font-size: 14px;
        padding: 11px 10px !important;
    }
}

@media screen and (max-width:576px) {
    .top-bar .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .phonepe-qr p {
        font-size: 16px;
    }

    .rqst-head h1 {
        padding: 0px;
    }

    .rqst-head p {
        padding: 0px;
    }

    .cnt-wrapper {
        display: flex;
        justify-content: center;
        margin: auto;
        align-items: center;

    }

    .toy-txt {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:391px) {
    .web-col .s-c-info {
        width: 80%;
        float: left;
        padding-left: 24px;
    }

    .web-col .suport-card img {
        width: 60px;
        float: left;
        margin-right: 20px;
    }

    .suport-card img {
        padding: 0px 0px 0px 20px;
    }

}

.quote-txt {
    text-align: center !important;
}

.btn-free .btn:hover {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
}

.btn-demo .btn:hover {
    border: 2px solid #2c2f36;
    background-color: #2c2f36;
    color: #fff;
}

select {
    background-color: transparent !important;
}

.talk-col a {
    text-decoration: none !important;
    color: #666 !important;
}

select {
    color: #000 !important;
}

@media screen and (max-width:1200px) {
    .specials-col {
        padding: 30px;

    }
}

@media screen and (max-width:992px) {
    .specials-col {
        height: 827px;
    }
}

@media screen and (max-width: 768px) {
    .specials-col {
        height: 748px;
    }
}

@media screen and (max-width: 576px) {
    .specials-col {
        height: 705px;
    }
}

@media screen and (max-width: 576px) {

    .specials-col {
        padding: 20px;

    }
}

@media screen and (max-width: 480px) {
    .specials-col {
        height: 615px;
    }
}

@media screen and (max-width: 415px) {
    .specials-col {
        height: 552px;
    }
}

@media screen and (max-width: 380px) {
    .specials-col {
        height: 509px;
    }

}

@media screen and (max-width: 350px) {
    .specials-col {
        padding: 6px;
    }

    .hover-zoom .specials-col {
        padding: 15px;
    }
}


.card-list-title h5 a {
    color: #2c2f36 !important;
    text-decoration: none !important;
}

.menu-link a {
    color: #666;
    text-decoration: none !important;
}

.submenu-title a {
    color: #666 !important;
    text-decoration: none !important;
}

.demo-btn {
    border: solid 2px #2c2f36;
    background: transparent;
    font-size: 16px;
    color: #2c2f36;
    padding: 8px 15px;
    border-radius: 4px;

}

.demo-btn a {
    color: inherit;
    text-decoration: none;
}

.demo-btn:hover {
    background-color: #2c2f36;
    color: #fff;
}

.demo-btn a:hover {
    color: #fff;
}


.demo-btn:active,
.demo-btn:focus {
    background-color: #2c2f36;
    color: #fff;
    border-color: #2c2f36;
}

.copy {
    color: #333 !important;
    text-decoration: none !important;
}

.head-trial-btn a {
    color: #fff !important;
    text-decoration: none !important;
}


.kiosk-banner {
    position: relative;
    background-color: #FFA300;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    padding: 120px 0px 0px 0px;

}

.kiosk-bg {
    background-color: #FFA300;
}

.btn-k {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.btn-trial {
    background-color: #fff;
    color: #333333;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 3px !important;
    transition: all 0.3s ease;
}

.btn-trial:hover {
    border-color: #fff;
    color: #fff;
}

.button-demo {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 3px !important;
    background-color: transparent;
    transition: all 0.3s ease;
}

.button-demo:hover {
    background-color: #ffffff33;
    color: #fff;
    border-color: transparent;
}

.kiosk-banner h1 {
    color: #fff;
}

.kiosk-banner p {
    font-size: 20px;
}

.img-k {
    margin-top: 60px;
    width: 896px;
    height: 685px;
    overflow: hidden;
}

.img-k img {
    width: 100%;
}

.guest {
    text-align: center;
}

.guest .col-md-4 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.guest .card {
    border: 1px solid #EEEEEE !important;
    text-align: left !important;
    padding: 53px;
}

.guest .card p {
    margin-bottom: 0px;
}

.c-guest {
    border-radius: 10px 0px 0px 10px !important;
}

.c-guest-1 {
    border-radius: 0px 10px 10px 0px !important;
}

.guest img {
    width: 60px;
    height: 60px;
}

.guest .row {
    margin-top: 50px;
}

.guest-efficient h4 {

    color: #333333;

}

.guest-flex {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.guest-work h4 {

    color: #333333;

    margin-top: 10px;
}

.guest-work .guest-flex h3 {
    font-size: 22px;

}

.self-order {
    background-color: #F5F5F5;

}

.self-order .card {
    padding: 30px 30px;
    border-radius: 10px;
    border: 0px;
}

.self-icon {
    background-color: #fff9e3;
    border: 1px solid #FEC85E;
    border-radius: 10px;
    padding: 18px;
    width: 76px;
    height: 76px;
}

.self-icon img {
    width: 40px;
    height: 40px;
}

.s-row {
    margin-top: 70px;
}

.c-image-check {
    width: 538px;
    height: 449px;
}

.c-image-check img {
    width: 100%;
    height: 100%;
}

.checkout h4 {

    color: #333333;
}

.try-k-btn .btn {
    background-color: #FFA300;
    border-radius: 3px;
    padding: 12px 30px;
    color: #fff;
}

.try-k-btn .btn:hover {
    border: 1px solid #FFA300;
    color: #FFA300;
    background: transparent;
}

.checkout ul {
    padding-left: 0px !important;
}

.k-list {
    margin-top: 20px;
}

.k-list li {
    list-style: none;
    margin-top: 10px;
}

.k-list li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"%3E%3Cpath fill="none" stroke="%2300B129" stroke-width="2" d="M2 8l4 4 8-8"%3E%3C/path%3E%3C/svg%3E') no-repeat center;
    margin-right: 10px;
    border: 2px solid #00B129 !important;
    color: #00B129 !important;
    border-radius: 5px;
    padding: 8px;
    margin-bottom: -3px;
}


.checkout-wrap .k-list li {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    position: relative;
    bottom: 3px;
}

.check-image {
    padding: 20px;
}

.checkout p {
    font-size: 20px;
}

.self-row {
    margin-top: 25px;
}

.guest-left {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.checkout-wrap .container,
.checkout-wrap .container-lg,
.checkout-wrap .container-md,
.checkout-wrap .container-sm {
    margin: auto;
}

.guest-work-img {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width:992px) {

    .guest-efficient {
        text-align: center;
    }

    .guest-efficient h4 {
        margin-top: 40px;
    }

    .guest-efficient img {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }

    .guest .card {
        text-align: center !important;
    }

    .guest h3 {
        text-align: center;
    }

    .self-order .card {
        margin-top: 20px;
    }

    .self-row {
        margin-top: 0px;
    }

    .guest-work {
        text-align: center;
    }

    .guest-work img {
        margin-top: 20px;
        width: 100%;

    }

    .img-k {
        width: auto;
        height: auto;
    }

    .hero-kiosk {
        width: 75%;
    }

    .guest {
        padding: 60px 0px 0px 0px;
        text-align: center;
    }

    .c-image-check {
        width: 100%;
    }

    .none-height {
        height: auto;
    }

    .check-image {
        padding: 0px;
    }

    .guest-work-img {
        display: block;

    }

    .c-image-check {
        margin-top: 20px;
    }

}

@media screen and (max-width:800px) {

    .guest {
        padding-top: 10px;
        text-align: center;
    }

    .checkout {
        margin: 0px 0px;
    }
}

@media screen and (max-width:768px) {
    .c-image-check {
        width: 100%;
        height: 100%;
    }

    .guest-flex {
        flex-wrap: wrap;
        gap: 0px;
        margin-top: 35px;
        justify-content: center;
    }

    .sp-mockup-col {
        margin-top: 30px;
    }

    .foot-contact h4 {
        font-size: 28px;
    }
}


.checkout h4 {
    color: #333333;
}

.checkout-wrap {
    padding-left: 10px;
    padding-right: 10px;
}


@media screen and (min-width:576px) and (max-width:670px) {
    .tab_content {
        padding: 20px 36px;
    }
}

@media screen and (max-width:768px) {
    .foot-contact p {
        padding: 0 5%;
    }
}

@media screen and (max-width: 415px) {

    .hero-kiosk {
        width: 100%;
    }

    .c-image-check {
        margin-top: 0px;
    }

    .foot-contact p {
        font-size: 16px;
        color: #fff;
        padding: 0 5%;
    }

    .foot-contact h4 {
        font-size: 26px;
    }

}

@media (min-width: 992px) and (max-width:1200px) {

    .guest .container,
    .guest .container-lg,
    .guest .container-md,
    .guest .container-sm {
        max-width: 1060px !important;
    }

    .guest-efficient .container,
    .quest-efficient .container-lg,
    .quest-efficient .container-md,
    .quest-efficient .container-sm {
        max-width: 1060px !important;
    }

    .self-order .container,
    .self-order .container-lg,
    .self-order .container-md,
    .self-order .container-sm {
        max-width: 1060px !important;
    }

    .guest-work .container,
    .guest-work .container-lg,
    .guest-work .container-md,
    .guest-work .container-sm {
        max-width: 1060px !important;
    }

    .checkout-wrap .container,
    .checkout-wrap .container-lg,
    .checkout-wrap .container-md,
    .checkout-wrap .container-sm {
        max-width: 1060px !important;
        margin: auto;
    }

    .guest-efficient img {
        width: 100%;
    }

    .guest-work img {
        width: 100%;
        height: 100%;
    }

    .c-image-check {
        width: 100%;
        height: 100%;
    }

    .c-image-check img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width:992px) {
    .content-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .order-head {
        padding-top: 0px;
    }
}

.self-order p {
    margin-bottom: 0px;
}

.setting-btn {
    background-color: #2c2f36;
    color: #fff;
    border: 1px solid #2c2f36;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.setting-btn:hover {
    background-color: #fff !important;
    color: #2c2f36 !important;
    border-color: #ffac00;
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.location-col:hover {
    border: 2px solid #ffac00;
    transition: all 0.3s ease;
}

table th .info button {
    background: #2c2f36;
    color: #fff !important;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.info button:hover {
    color: #fff !important;
    background: #000 !important;
    color: #fff !important;
}

.section-left,
.section-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section-topper {
    padding: 80px 0px 0px 0px;
}

@media screen and (max-width:1200px) {
    .section-right {
        display: flex;
        justify-content: flex-start !important;
    }

}

.section-left {
    display: flex;
    justify-content: flex-end;
}

.section-right {
    display: flex;
    justify-content: flex-end;
}

.img-all {
    width: 588px;

}

.img-all img {
    width: 100%;
    height: 100%;
}

.sec-wrap-img {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width:992px) {
    .img-all {
        width: 100%;
        height: auto;
        margin-top: 35px;
    }

    .section-topper {
        padding: 50px 0px 0px 0px;
    }

}

@media screen and (max-width:480px) {

    .right-features .timeline-event-copy {
        padding: 1px 0px 0px 0px;
    }

    .right-features .timeline-event-copy span {
        text-align: left;
        padding-left: 87px;
        color: #fff;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .img-all {
        width: 100%;
        height: auto;
    }

}

@media screen and (min-width:1200px) {
    .para-sunmi {
        padding-left: 75px;
    }
}

.free-wrap {

    color: #2c2f36;
    position: relative;
}

.img img {
    width: 100%;

}

.free h2 {
    color: #fff;
}

.clr-free h2 {
    color: #fff;

}

.free-wrap h3 {
    color: #2c2f36 !important;
}

.free-wrap h2 {
    color: #fff;
    margin-top: 10px;
}

@media screen and (min-width:768px) and (max-width:1300px) {

    .price-tag .container,
    .price-tag .container-lg,
    .price-tag .container-md,
    .price-tag .container-sm {
        max-width: 1146px !important;
    }
}

@media screen and (min-width:320px) and (max-width:1300px) {

    .price-table-wrapper .container,
    .price-table-wrapper .container-lg,
    .price-table-wrapper .container-md,
    .price-table-wrapper .container-sm {
        max-width: 1146px !important;
    }

    .price-wid .container,
    .price-wid .container-lg,
    .price-wid .container-md,
    .price-wid .container-sm {
        max-width: 1146px !important;
    }
}

@media screen and (min-width:992px) and (max-width:1300px) {
    .app-sec .app-sec-1 .common-middle-class-2 {
        position: absolute;
        left: 2%;
        top: 25%;
    }
}

.sec-2-img {
    width: 550px;
    height: auto;
}

.sec1-wrap .img-icon {
    border-radius: 10px;
    width: 200px;
    height: auto;
}

.sec-2-img img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.in-sec {
    display: flex;
    align-items: center;
}

@media screen and (max-width:1200px) {
    .sec-2-img {
        width: auto;
        height: auto;
    }

    .sec1-wrap .img-icon {
        border-radius: 10px;
        width: 200px;
        height: auto;
    }

    .sec-2-img img {
        width: 100%;
        border-radius: 10px;
        height: auto;
    }
}

@media screen and (max-width:992px) {

    .sec-2-img {
        margin-top: 20px;
    }

    .get-started h2 {
        padding-right: 0px !important;
    }

    .foot-contact h4 {
        padding: 0px !important;
    }

}

/* .sunmi-txt h1 {
    color: #000 !important;
} */

/* .sunmi-txt ul li {
    color: #000 !important;
} */

/* .sunmi-txt p {
    color: #000 !important;
} */


@media screen and (min-width:992px) {
    .image-break {
        display: flex;
        justify-content: flex-end;
    }
}

@media (min-width: 576px) and (max-width:768px) {

    .top-bar .container,
    .top-bar .container-sm {
        max-width: 638px;
    }

    .header .container,
    .header .container-sm {
        max-width: 638px;
    }

    .banner .container,
    .banner .container-sm {
        max-width: 638px;
    }

    .tr-sec .container,
    .tr-sec .container-sm {
        max-width: 638px;
    }

    .home-sec .container,
    .home-sec .container-sm {
        max-width: 638px;
    }
}


.department {
    margin-top: 50px;
}

.departments h4 {
    font-size: 24px !important;
    text-transform: uppercase;
    color: #fff !important;
    position: relative;
    margin-top: 15px;
    display: inline-block;
}

.products {
    padding-top: 0px;
}

.product-box {
    border-radius: 6px;
    z-index: 16;
    padding: 0px 15px 0px 15px;
    cursor: pointer;
    position: relative;
    transition: all 1s;
    text-align: left;
}

.product-box a {
    color: #fff;
}

.product-box img {
    transition: all .3s ease-in-out;
    width: 80%;
}

.map-holder div.wpcf7-spam-blocked {
    border: 2px solid #ffa500;
    border: none;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    float: left;
    padding-top: 0;
    margin-top: 0;
}

.product-box h5 {
    padding: 25px 15px 5px;
    font-size: 16px;
    color: #0a59a1;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-slick {
    padding: 0px;
}

.product-slick:focus {
    outline: none;
}

.hover-a {
    display: none;
}

.product-box:hover .hover-a {
    display: block;
    transition: all 1s;

}

.sticky {
    transition: all .4s;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .4s;
    background: rgb(0, 0, 0);
    box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.16);
}

.fixed .navbar-brand {
    padding: 10px 0;

}

.fixed .navbar-default .navbar-nav>li>a {
    font-size: 15px;
}

.fixed .search-holder a {
    padding: 10px 15px;
    font-size: 12px;
}

.center .slick-prev:before {
    content: url(../images/left-arrow.svg);
    font: normal normal normal 14px/1 FontAwesome;
    color: #fff;
    font-size: 20px;
    padding: 20px 0;
    border-radius: 4px;

}

.center .slick-next:before {
    content: url(../images/right-arrow.svg);
    font: normal normal normal 14px/1 FontAwesome;
    color: #ffffff;
    font-size: 20px;
    padding: 20px 0;
    border-radius: 4px;
}

.slick-track {
    text-align: center;
    float: none;
    margin: 0 auto;
}


@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}


.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: #fff !important;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .4;
    color: #666;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -60px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '←';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: -60px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '→';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}


.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.backoffice-col {
    margin-top: 30px;
    position: relative;
}

.backoffice-col img {
    height: 600px !important;
}

.backoffice-features-col {
    position: absolute;
    background: #fff;
    z-index: 100;
    width: 410px;
    text-align: left;
    padding: 25px;
    border-radius: 10px;
    border: solid 1px #eee;
    box-shadow: 0 0 10px #eee;
    margin-top: 120px;
}

.bfc-2 {
    margin-top: 280px;
}

.bfc-3 {
    right: 0;
}

.bfc-4 {
    margin-top: 280px;
    right: 0;
}

.backoffice-features-col p {
    padding: 0;
    margin: 0;
}

.backoffice-features-col h5 {
    padding: 0;
}


@media screen and (max-width:1200px) {
    h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 45px;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 35px;
    }
}

@media screen and (max-width:992px) {
    h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    h3 {
        font-size: 35px;
    }

    .section-padding {
        padding: 70px 0px;
    }
}

@media screen and (max-width:768px) {
    h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 42px;
    }

    h3 {
        font-size: 30px;
    }

}

@media screen and (max-width:480px) {
    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 30px;
    }

    .section-padding {
        padding: 60px 0px 30px 0px;
    }

    h4 {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
    }
}

@media screen and (max-width:414px) {
    .section-padding {
        padding: 45px 0px !important;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h1 {
        font-size: 30px;
    }

    .k-list li span {
        font-weight: 500;
        font-size: 14px;
        color: #000000;
        margin-left: 0px;
        position: relative;
        bottom: 3px;
    }
}

.img-trak-wrap {
    background-color: #eaeded;
    border-radius: 5px;
    position: relative;
    padding: 40px 0 221px 0px;
    margin-top: 100px;
}

.img-trak-wrap h5 {
    text-align: left !important;
    margin-bottom: 5px;
}

.img-trak-wrap p {
    word-break: break-word;
    padding: 0px;
    text-align: left !important;
    margin-bottom: 5px;
}

.image-trak img {
    width: 25%;
    border-radius: 8px;
    position: absolute;
    left: -30px;
    top: 15.5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.img-track {
    position: relative;
}

.content-track {
    position: absolute;
    bottom: 152px;
}

.content-track h5 {
    padding-left: 30px;
    margin-bottom: 5px;
}

.content-track p {
    padding-left: 30px;
    word-break: break-word;
}

.dashboard-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.card-graph img {
    width: 20%;
    border-radius: 8px;
    position: absolute;
    top: -40px;
    right: 35.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);

}

.content-track-sec {
    position: absolute;
    bottom: 263px;
    right: 30px;
}

.img-track .card-wrap {
    position: absolute;
    bottom: -64px;
    margin-top: 30px;
    padding-right: 36px;
}

.img-track .card-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:1400px) {
    .img-trak-wrap {
        padding: 30px 0 208px 0px;
    }

    .content-track {
        position: absolute;
        bottom: 142px;
    }

    .content-track-sec {
        position: absolute;
        bottom: 237px;
        right: 25px;
    }

    .image-trak img {
        top: 14.5% !important;
    }

    .img-track .card-wrap {
        position: absolute;
        bottom: -69px;
    }
}

@media screen and (max-width: 1300px) {
    .img-track .card-wrap {
        position: absolute;
        bottom: -66px;
    }

    .content-track-sec {
        position: absolute;
        bottom: 235px;
        right: 24px
    }
}

@media screen and (min-width:1200px) and (max-width:1250px) {
    .content-track-sec {
        position: absolute;
        bottom: 235px;
        right: 16px;
    }

    .img-track .card-wrap {
        position: absolute;
        bottom: -53px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .img-trak-wrap p {
        font-size: 14px;
    }
}

@media screen and (max-width:1200px) {
    .image-trak img {
        position: absolute;
        left: -27px;
    }

    .p-break {
        display: inline !important;
    }

    .dashboard-img img {
        width: 90%;
    }

    .img-track .card-wrap {
        bottom: -54px;
        padding-left: 0px !important;
    }

    .card-graph img {
        width: 23.4%;
    }

    .content-track-sec {
        position: absolute;
        bottom: 154px;
        right: 44px;
    }

    .content-track {
        position: absolute;
        bottom: 50px;
        width: 24%;
    }

    .left-wrap {
        width: 22%;
    }

    .card-graph img {
        width: 23%;
        border-radius: 8px;
        position: absolute;
        top: -59px;
    }

    .image-trak img {
        top: 21.5% !important;
    }

    .img-track .card-wrap img {
        width: 100%;
    }

    .track-para {
        width: 85%;
    }

    .img-trak-wrap {
        padding: 30px 0 172px 0px;
    }
}

@media screen and (max-width: 1050px) {
    .content-track-sec {
        position: absolute;
        bottom: 148px;
        right: 43px;
    }

    .image-trak img {
        width: 23%;
        position: absolute;
        left: -10px;
    }

    .img-track .card-wrap {
        bottom: -51px;
    }

    .image-trak img {
        top: 23.5% !important;
    }

    .content-track {
        position: absolute;
        bottom: 60px;
    }
}

@media screen and (min-width:1050px) and (max-width:1100px) {
    .image-trak img {
        width: 23% !important;
        left: -13px !important;
    }

    .content-track {
        position: absolute;
        bottom: 72px !important;
        width: 24%;
    }

}

@media screen and (min-width:1201px) and (max-width:1330px) {
    .image-trak img {
        width: 24%;
        border-radius: 8px;
        position: absolute;
        left: -10px;
    }

    .content-track {
        position: absolute;
        bottom: 159px;
    }

}

@media screen and (max-width: 1025px) {
    .img-trak-wrap {
        padding: 30px 0 159px 0px;
    }

    .img-track .card-wrap {
        bottom: -46px;
    }

    .content-track {
        position: absolute;
        bottom: 57px;
    }

    .content-track-sec {
        position: absolute;
        bottom: 148px;
        right: 44px;
    }
}

@media screen and (max-width: 992px) {

    .img-trak-wrap {
        padding: 20px 0 125px 0px;
    }

    card-graph img {
        width: 23%;
        border-radius: 8px;
        position: absolute;
    }

    .dashboard-img img {
        width: 94%;
    }

    .content-track-sec {
        position: absolute;
        bottom: 110px;
        right: 21px;
    }

    .content-track {
        position: absolute;
        bottom: 26px;
    }

    .image-trak img {
        top: 23.5% !important;
        left: -24px;
    }

    .img-track .card-wrap {
        padding-right: 36px;
        padding-left: 0px !important;
        bottom: -25px;
    }

    .img-trak-wrap p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .track-para {
        width: 90%;
    }

    .dashboard-img img {
        margin-top: 0px;
    }

    .card-graph img {
        right: 19px;
        top: -42px;
    }

    .content-track h5 {
        padding-left: 20px;
        font-size: 18px;
    }

    .content-track p {
        padding-left: 20px;
    }

    .image-trak img {
        position: absolute;
        left: -17px;
        width: 25%;
    }

    .image-trak img {
        top: 25.5%;
    }

    .img-trak-wrap h5 {
        font-size: 15px;
    }
}

@media screen and (max-width: 890px) {
    .image-trak img {
        position: absolute;
        left: -21px;
        width: 25%;
    }
}

@media screen and (max-width:768px) {
    .left-wrap {
        width: 100%;
    }

    .content-track {
        width: 100%;
    }

    .img-track .card-wrap {
        bottom: -4px;
        left: 0%;
        padding-right: 4px !important;
        padding-left: 0px !important;
    }

    .img-track .container,
    .img-track .container-sm {
        max-width: 638px;
    }

    .content-track {
        position: absolute;
        bottom: 45px;
    }

    .content-track-sec {
        position: absolute;
        bottom: 115px;
        right: 21px;
    }

    .content-track h5 {
        padding-left: 18px;
    }

    .content-track p {
        padding-left: 18px;
    }

    .image-trak img {
        position: absolute;
        left: -27px;
    }


    .image-trak img {
        position: absolute;
        left: -17px;
    }

    .dashboard-img img {
        width: 95%;
    }

    .img-track .card-wrap {
        padding-right: 0px;
    }

    .card-graph img {
        right: 29px;
    }

    .kiosk-banner {
        padding: 60px 0px 0px 0px;
    }

}

@media screen and (max-width:576px) {
    .btn-trial {
        padding: 12px 20px;
    }
}

@media screen and (max-width:620px) {
    .content-track-sec {
        position: absolute;
        bottom: 111px;
        right: 26px;
    }

    .content-track {
        position: absolute;
        bottom: 41px;
    }

}

@media screen and (max-width:576px) {
    .image-trak img {
        position: absolute;
        left: -8px;
    }

    .card-graph img {
        right: 21px;
    }

    .img-track .card-wrap {
        padding-right: 21px;
        bottom: -12px;
    }

    .content-track-sec {
        bottom: 112px;
        right: 4px;
    }

    .img-trak-wrap p {
        margin-bottom: 10px;
    }

    .content-track h5 {
        padding-left: 8px;
    }

    .content-track p {
        padding-left: 8px;
    }

    .card-graph img {
        right: 23px;
    }

    .content-track {
        position: absolute;
        bottom: 71px;
    }

    .img-track .card-wrap {
        padding-right: 32px;
        bottom: 2px;
    }
}

@media screen and (max-width:540px) {
    .content-track-sec {
        bottom: 112px;
        right: 11px;
    }

}

@media screen and (max-width:515px) {

    .dashboard-img img {
        width: 87%;
    }

    .content-track-sec {
        bottom: 102px;
        right: 4px;
    }

    .content-track {
        position: absolute;
        bottom: 65px;
    }
}

@media screen and (max-width:480px) {
    .content-track-sec {
        bottom: 98px;
        right: 9px;
    }

    .content-track {
        position: absolute;
        bottom: 63px;
    }

    .card-graph img {
        right: 13px;
    }
}

@media screen and (max-width:414px) {

    .img-track .card-wrap {
        padding-right: 0px !important;
        bottom: 2px;
        left: 0%;
    }

    .card-graph img {
        width: 19%;
        top: -19px;
        right: 15px;
    }

    .dashboard-img img {
        width: 90%;
    }

    .content-track {
        position: absolute;
        bottom: 43px;
    }

    .content-track-sec {
        bottom: 72px;
        right: 9px;
    }

    .card-upi {
        padding-top: 0px !important;
    }

    .card-upi-btm {
        padding-bottom: 0px !important;
    }
}

@media screen and (max-width:380px) {
    .card-graph img {
        width: 19%;
        top: -19px;
        right: 18px;
    }

    .content-track-sec {
        bottom: 73px;
        right: 6px;
    }

    .card-wrap {
        padding-right: 15px;
    }
}

@media screen and (max-width:350px) {

    .image-trak img {
        top: 25%;
    }

    .content-track {
        position: absolute;
        bottom: 20px;
    }

    .content-track-sec {
        bottom: 69px;
        right: 1px;
    }
}

.qk-steps h4 {
    color: #2c2f36;
    margin: 15px 0;
}

.qk-step-col {
    padding: 50px 25px 30px 25px;
    background: #ffff;
    height: 100%;
    margin: 0 15px;
    border-radius: 15px;

}

.qk-step-img {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qk-step-img img {
    filter: brightness(0) invert(0);
}

.bg-wrap-round h3 {
    color: #fff;
}

.rqst-head h3 {
    text-align: center;
}

.pad-none-top {
    padding-top: 0px !important;
}

.pad-none-btm {
    padding-bottom: 0px !important;
}

.bild-txt {
    text-align: center;
}

.payment_region .controls {
    width: fit-content;
    float: right;
    margin: auto;
    text-align: left !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.payment_region .controls h5 {
    margin-bottom: 0px;
}

.payment_region .controls select {
    width: 200px;
    padding: 10px 10px;
    border-radius: 6px;
    border: 1px solid #e7ecec;
    background-color: #fff !important;

}

.payment-solution-col {
    margin-top: 50px;
}

.payment-solution {
    border: solid 1px #eee;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.payment-solution img {
    width: auto;
    height: 30px;
    margin-bottom: 15px;
}

.payment-solution p {
    text-align: left !important;
}

.payment-solution a {
    color: #333;
    margin-bottom: 15px;
}

.nav-pills-custom {
    display: flex;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 20px 10px;
    margin: auto;
    background: #f7f8f8;
}

.nav-pills-custom li {
    flex: 1;
    text-align: center;
    list-style: none;
}

.nav-pills-custom .nav-link {
    padding: 13px 56px;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    border-radius: 50px;
}

.nav-pills-custom .nav-link {
    position: relative;
}

.nav-pills-custom .nav-link.active {
    padding: 13px 56px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    background: #2c2f36;
    color: #fff !important;

}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* common banner */
.cover-wrap {
    height: 100% !important;
}

/* .banner-inner */
.banner-inner {
    position: relative;
}


.banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.other-banner {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width:993px) and (max-width:1600px) {
    .other-banner {
        height: auto;
    }
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}


@media screen and (max-width: 993px) {
    .banner-cap {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        padding: 25px 85px;
        z-index: 0;
    }

    .banner-inner h2 {
        margin-bottom: 5px;
        font-size: 28px;
        text-align: center;
    }

    .banner-inner p {
        text-align: center;
    }

    .banner-inner {
        height: auto !important;
        background: #1a213c !important;
        margin-top: 0px !important;
    }

    .banner-inner img {
        position: relative !important;
        object-fit: cover;
    }
}

@media screen and (min-width: 993px) {
    .banner-inner {
        position: relative;
    }


    .banner-cap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 0;
    }
}

@media screen and (max-width:768px) {
    .banner-cap {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        padding: 25px 49px;
        z-index: 0;
    }
}

@media screen and (max-width:650px) {
    .banner-cap {

        padding: 25px 10px;
    }
}

/* .retail,restaurent banner-inner */
.main-banner {
    position: relative;
}


.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.high-banner {
    text-align: left;
    padding: 100px 0 80px 0;
}

.main-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}


.banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}


@media screen and (max-width: 993px) {
    .main-banner .banner-cap {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        padding: 25px 15px;
        z-index: 0;
    }

    .main-banner h1 {
        margin-bottom: 5px;
        font-size: 28px;
        text-align: center;
    }

    .main-banner p {
        text-align: center;
    }

    .main-banner {
        height: auto !important;
        background: #1a213c !important;
        margin-top: 0px !important;
    }

    .main-banner img {
        position: relative !important;
        object-fit: cover;
    }
}

@media screen and (min-width:1024px) and (max-width:1200px) {

    .banner-product .container,
    .banner-product .container-lg,
    .banner-product .container-md,
    .banner-product .container-sm,
    .banner-product .container-xl {
        max-width: 1059px !important;
    }

    .delivery-system .container,
    .delivery-system .container-lg,
    .delivery-system .container-md,
    .delivery-system .container-sm,
    .delivery-system .container-xl {
        max-width: 1059px !important;
    }

    .w-top .container,
    .w-top .container-lg,
    .w-top .container-md,
    .w-top .container-sm {
        max-width: 1059px !important;
    }

}

.i-section .container,
.i-section .container-lg,
.i-section .container-md,
.i-section .container-sm,
.i-section .container-xl {
    max-width: 1117px !important;
}

.c-section .container,
.c-section .container-lg,
.c-section .container-md,
.c-section .container-sm,
.c-section .container-xl {
    max-width: 1165px !important;
}

@media screen and (min-width: 993px) {
    .main-banner {
        position: relative;
    }


    .main-banner .banner-cap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 0;
    }
}

.partner-banner {
    height: auto;
}

.c-info a {
    text-decoration: none !important;
    color: #fff !important;
}

.img-store {
    position: static !important;
}

.banner-product {
    padding: 80px 0px;
}

.delivery-app-bg {
    background-color: #541788;
}

.banner-product .btn {

    transition: all 0.3s ease;
    padding: 10px 22px;
}

.banner-product .btn:hover {
    color: #FFAC00;
    border: 2px solid #FFAC00;
}

.banner-product img {
    border-radius: 10px;
}

.align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding-top: 40px;
}

.ftr-div {
    padding: 120px 0px;
}

@media screen and (max-width:992px) {
    .ftr-div {
        padding: 60px 0px;
    }
}

.delivery-wrap div {
    padding: 30px 20px;
    background-color: #F9FAFB;
    text-align: center;
    border-radius: 14px;
}

.delivery-wrap div h5 {
    font-size: 18px;
}

.delivery-wrap div:hover img {
    transform: scale(1.1);
}

.delivery-wrap img {
    margin-bottom: 25px;
    height: 80px;
    transition: transform 0.3s ease;
}

.choose-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 40px;
}

@media screen and (min-width:992px) {
    .choose-wrap img {
        position: relative;
        bottom: 36px;
    }
}

.bg-clr {
    background-color: #F9FAFB;
}

.choose-wrap .card {
    border: 1px solid #EEEEEE !important;
    border-radius: 14px;
}

.choose-wrap .card .card-body {
    padding: 30px;
}

.choose-wrap p {
    margin-bottom: 0px !important;
}

.delivery-system .card {
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    height: 100%;
}

.delivery-system .card .image-card-wrap {
    background-color: #F9FAFB;
    padding: 30px;
}

.delivery-system .card .image-card-wrap img {
    width: 100%;
    border-radius: 13px;
}

.delivery-system .card-body {
    padding: 30px;
}

.choose-wrap .d-lg-flex {
    align-items: center;
}

.center-wrap {
    display: flex;
    justify-content: center;
}

.choose-wrap img {
    width: 69px;
}

@media screen and (max-width:992px) {
    .delivery-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding-top: 40px;
    }

    .choose-wrap .card {
        text-align: center;
    }

    .choose-wrap p {
        margin-bottom: 0px;
    }

    .banner-product {
        text-align: center;
    }

    .hero-text-wrap {
        margin-bottom: 30px;
    }

    .delivery-wrap div {
        padding: 30px 30px;
    }
}

@media screen and (max-width:768px) {
    .choose-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 40px;
    }

    .delivery-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding-top: 40px;
    }

    .choose-wrap .card .card-body {
        padding: 20px;
    }
}

@media screen and (max-width:576px) {
    .delivery-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding-top: 40px;
    }

    .guest .container {
        padding-left: 26px;
        padding-right: 26px;
    }

    .delivery-wrap img {
        margin-bottom: 25px;
        height: 60px;
        transition: transform 0.3s ease;
    }

    .choose-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding-top: 40px;
    }
}

@media screen and (max-width:415px) {
    .delivery-wrap h5 {
        font-size: 13px !important;
    }

    .delivery-wrap {
        gap: 10px;
    }
}

@media screen and (max-width:1300px) {
    h5 {
        font-size: 18px;
    }
}

@media screen and (min-width:992px) and (max-width:1300px) {

    .i-section .container,
    .i-section .container-lg,
    .i-section .container-md,
    .i-section .container-sm,
    .i-section .container-xl {
        max-width: 911px !important;
    }
}

@media screen and (max-width:992px) {

    .c-section .container,
    .c-section .container-lg,
    .c-section .container-md,
    .c-section .container-sm,
    .c-section .container-xl {
        max-width: 720px !important;
    }

    .i-section .container,
    .i-section .container-lg,
    .i-section .container-md,
    .i-section .container-sm,
    .i-section .container-xl {
        max-width: 725px !important;
    }
}

@media (max-width: 768px) {

    .i-section .container,
    .i-section .container-lg,
    .i-section .container-md,
    .i-section .container-sm,
    .i-section .container-xl {
        max-width: 540px !important;
    }

    .c-section .container,
    .c-section .container-lg,
    .c-section .container-md,
    .c-section .container-sm,
    .c-section .container-xl {
        max-width: 540px !important;
    }
}

.self-bg {
    background-color: #42994a;
}

.customer-bg {
    background: #07a47d;
}

.queue-bg {
    background: #7339c6;
}

.waiter-app-bg {
    background: linear-gradient(90deg, #F8667B 0%, #FE955D 100%);
}

.dashboard-bg {
    background: linear-gradient(90deg, #ed6430 0%, #f19247 100%);
}

.kd-bg {
    background: linear-gradient(90deg, #505153 0%, #404041 100%);
}

.kd-wrap .card {
    border: 1px solid #EEEEEE;
    border-radius: 16px;
}

.kd-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    justify-items: center;
    align-content: center;
    padding-top: 40px;
}

.kd-wrap div img {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.kd-wrap div:hover img {
    transform: scale(1.1);
}

.kd-wrap div {
    background-color: #F9FAFB;
    padding: 40px;
    border-radius: 14px;
}

@media screen and (max-width:1300px) {
    .kd-wrap div {
        padding: 40px 20px;
    }
}

@media screen and (max-width:992px) {
    .kd-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
}

@media screen and (max-width:576px) {
    .kd-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        text-align: center;
    }
}

@media screen and (min-width:992px) {
    .hero-text-wrap p {
        margin-right: 140px;
    }
}

@media screen and (min-width:1024px) and (max-width:1024px) {

    .banner-product .container,
    .banner-product .container-lg,
    .banner-product .container-md,
    .banner-product .container-sm,
    .banner-product .container-xl {
        max-width: 972px !important;
    }

    .delivery-system .container,
    .delivery-system .container-lg,
    .delivery-system .container-md,
    .delivery-system .container-sm,
    .delivery-system .container-xl {
        max-width: 972px !important;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {

    .c-section .container,
    .c-section .container-lg,
    .c-section .container-md,
    .c-section .container-sm,
    .c-section .container-xl {
        max-width: 960px !important;
    }

    .hero-text-wrap p {
        margin-right: 78px;
    }
}

@media screen and (min-width:992px) and (max-width:1025px) {

    .w-top .container,
    .w-top .container-lg,
    .w-top .container-md,
    .w-top .container-sm {
        max-width: 960px !important;
    }
}

@media screen and (max-width:768px) {

    .w-top .container,
    .w-top .container-sm {
        max-width: 540px;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {

    .ftr-kd .container,
    .ftr-kd .container-lg,
    .ftr-kd .container-md,
    .ftr-kd .container-sm,
    .ftr-kd .container-xl {
        max-width: 1004px !important;
    }
}

@media screen and (max-width:1500px) {
    .catcontainer {
        overflow: visible !important;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .wrap-tab .tabs {
        padding: 3rem 0.5rem;
    }
}

@media screen and (max-width:1200px) {
    .wrap-tab ul li a {
        font-size: 12px;
        font-weight: 600;
    }
}

@media screen and (max-width: 992px) {

    .catcontainer {
        overflow: visible;
        position: relative;
        display: block;
    }

    .category_container {
        display: block;
        --gap: 0;
    }

    .catcontainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        height: 1000px;
    }

    .category_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 17px;
    }

}

@media screen and (max-width:769px) {
    .tab-col-container {
        background: transparent;
    }

    .tabs .content {
        background: #fff;
    }

    .wrap-tab ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 15px;
        column-gap: 15px;
        justify-items: center;
        margin: auto;
    }

    .tabs .content {
        padding: 3rem 3rem 3rem 3rem;
        width: 100%;
    }

    .wrap-tab .tab-content {
        position: relative;
    }

    .wrap-tab ul li {
        margin-bottom: 0px;
    }

    .tabs .content .gadet-col {
        height: 339px;
    }

    .wrap-tab ul li a {
        white-space: nowrap;
        background-color: #fff;
        padding: 10px 10px;
        border-radius: 6px;
        text-align: center;
        font-size: 11px;
        width: 192px !important;
    }

    .tab-col-container {
        margin-top: 0px;
    }

    .wrap-tab .tabs {
        padding: 3rem 1rem;
    }

    .tabs .content {
        margin-top: 60px;
        border-radius: 20px;
    }

    .tab-sec {
        height: 942px;
    }

    .tab-sec .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

}

@media screen and (max-width: 680px) {
    .tabs .content .gadet-col {
        height: 331px;
    }
}

@media screen and (max-width:670px) {
    .wrap-tab ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-sec {
        height: 989px;
    }

}

@media screen and (max-width: 480px) {
    .wrap-tab ul {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        row-gap: 8px;
        column-gap: 8px;
        margin-bottom: 10px;
    }

    .tabs-ftr {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .wrap-tab .tabs {
        padding-top: 1rem;
    }

    .tabs .content {
        margin-top: 30px;
    }
}

@media screen and (max-width: 769px) {
    .tabs .content {
        border-radius: 0px !important;

    }
}

@media screen and (max-width: 660px) {
    .tabs .content .gadet-col {
        height: 317px;
    }
}

@media screen and (max-width: 640px) {
    .tabs .content .gadet-col {
        height: 305px;
    }
}

@media screen and (max-width:620px) {
    .wrap-tab ul li a {
        font-size: 12px;
        font-weight: 600;
    }

    .tab-sec {
        height: 970px;
    }

    .tabs .content .gadet-col {
        height: 285px;
        width: 45%;
    }
}

@media screen and (max-width: 600px) {
    .tabs .content .gadet-col {
        height: 268px;
        width: 45%;
    }
}

@media screen and (max-width:580px) {
    .tabs .content .gadet-col {
        height: 237px;
        width: 46%;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -44px;
        left: 14px;
    }
}

@media screen and (max-width:576px) {
    .tab-sec {
        height: 1300px !important;
    }

    .tabs .content {
        padding: 1.5rem;
        width: 100%;
    }

    .category_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .tabs .content .gadet-col {
        width: 46%;
        top: 46px;
    }

    .tr-sec {
        padding: 40px 0px !important;
    }

    .img-tab {
        position: relative;
        bottom: 0px !important;
    }
}

@media screen and (max-width: 550px) {
    .tabs .content .gadet-col {
        height: 259px;
        width: 44%;
    }
}

@media screen and (max-width: 540px) {
    .tabs .content .gadet-col {
        height: 248px;
        width: 44%;
    }
}

@media screen and (max-width: 520px) {
    .tabs .content .gadet-col {
        height: 240px;
        width: 44%;
    }
}

@media screen and (max-width: 500px) {
    .tabs .content .gadet-col {
        height: 222px;
        width: 44%;
    }

    .tabs .content .gadet-col {
        position: absolute;
        left: 50%;
        bottom: -288px !important;
        top: auto !important;
        transform: translate(-50%, -50%);
        height: 229px;
    }

    .tabs .content .gadet-col {
        display: block;
    }
}

@media screen and (max-width:480px) {
    .tabs .content .gadet-col {
        top: 35px;
        height: 232px;
        padding: 25px !important;
        left: 23px;
        width: 48%;
    }

    .gadet-col .switch-col {
        bottom: -10px;
        left: 5px;
    }

    .tabs .content {
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .gadet-col .switch-col {
        bottom: 3px;
        left: 5px;
    }
}

@media screen and (max-width:415px) {


    .wrap-tab ul {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        row-gap: 8px;
        column-gap: 8px;
        margin-bottom: 10px;
    }

    .tab-sec .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .tr-sec {
        padding: 60px 0px !important;
    }

    .img-tab {
        position: relative;
        bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .gadet-col {
        top: 38px !important;
        height: 172px !important;
    }

    .tabs .content .imagemock {
        top: -153px !important;
    }
}

@media screen and (max-width:380px) {
    .tabs .content .gadet-col {
        left: 44% !important;
        bottom: -227px !important;
    }
}

@media screen and (max-width:350px) {
    .wrap-tab ul li a {
        padding: 9px;
    }

    .wrap-tab ul li a {
        font-size: 12px;
        font-weight: 600;
    }
}

@media (min-width: 576px) and (max-width: 768px) {

    .tab-sec .container,
    .tab-sec .container-sm {
        max-width: 689px;
    }
}

@media (min-width: 768px) and (max-width:769px) {
    .col-sm-12 {
        width: 100%;
    }
}

@media screen and (min-width:1025px) and (max-width:1080px) {

    .tab-sec .container,
    .tab-sec .container-lg,
    .tab-sec .container-md,
    .tab-sec .container-sm {
        padding: 0px 30px;
    }

    .tabs .content .gadet-col {
        height: 413px;
        top: 73px;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {

    .tab-sec .container,
    .tab-sec .container-lg,
    .tab-sec .container-md,
    .tab-sec .container-sm {
        padding: 0px 40px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {

    .get-started .container,
    .get-started .container-lg,
    .get-started .container-md,
    .get-started .container-sm,
    .get-started .container-xl {
        padding-left: 10px;
        padding-right: 25px;
    }

}

@media screen and (min-width:992px) and (max-width:1024px) {
    .tabs .content .gadet-col {
        height: 415px;
    }
}

@media screen and (max-width:1280px) {

    .get-started .container,
    .get-started .container-lg,
    .get-started .container-md,
    .get-started .container-sm,
    .get-started .container-xl {
        padding-left: 10px;
        padding-right: 25px;
    }
}

@media screen and (max-width:992px) {

    .get-started .container,
    .get-started .container-lg,
    .get-started .container-md,
    .get-started .container-sm,
    .get-started .container-xl {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 768px) {

    .get-started .container,
    .get-started .container-lg,
    .get-started .container-md,
    .get-started .container-sm,
    .get-started .container-xl {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width:576px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width:360px) {


    .category_container .content {
        width: 98% !important;
    }
}

@media screen and (max-width:576px) {

    @media screen and (max-width: 576px) {
        .tabs .content .gadet-col {
            padding: 16px !important;
        }
    }

    @media screen and (max-width: 576px) {
        .tabs .content .gadet-col {
            position: absolute;
            left: 50%;
            bottom: -288px !important;
            top: auto !important;
            transform: translate(-50%, -50%);
            height: 255px;
        }
    }

    @media screen and (max-width: 576px) {
        .tabs .content .gadet-col {
            width: 46%;
            top: 46px;
        }
    }

    @media screen and (max-width: 580px) {
        .tabs .content .gadet-col {
            height: 237px;
            width: 46%;
        }
    }

    @media screen and (max-width: 600px) {
        .tabs .content .gadet-col {
            height: 268px;
            width: 45%;
        }
    }

    @media screen and (max-width: 620px) {
        .tabs .content .gadet-col {
            height: 285px;
            width: 45%;
        }
    }

    @media screen and (max-width: 640px) {
        .tabs .content .gadet-col {
            height: 305px;
        }
    }

    @media screen and (max-width: 660px) {
        .tabs .content .gadet-col {
            height: 317px;
        }
    }

    @media screen and (max-width: 680px) {
        .tabs .content .gadet-col {
            height: 331px;
        }
    }

    @media screen and (max-width: 769px) {
        .tabs .content .gadet-col {
            height: 339px;
        }

    }

    @media screen and (max-width: 992px) {
        .tabs .content .gadet-col {
            height: 278px;
            width: 50%;
            padding: 39px !important;
        }
    }

    .tabs .content .gadet-col {
        display: block;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 450px;
    }

    .tabs .content .gadet-col {
        position: absolute;
        left: 50%;
        bottom: -288px !important;
        top: auto !important;
        transform: translate(-50%, -50%);
        height: 255px;
    }

    .tabs .content {
        overflow: visible;
    }

    .tabs .content .gadet-col {
        padding: 16px !important;
    }
}

@media screen and (max-width: 450px) {
    .tabs .content .gadet-col {
        position: absolute;
        left: 47% !important;
        height: 201px;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -47px;
        left: 5px;
    }

    .tabs .content .gadet-col {
        position: absolute;
        left: 50%;
        bottom: -208px !important;
    }
}

@media screen and (max-width:415px) {
    .pop-link-col {
        padding: 5px 15px 14px 15px;
    }

    .tabs .content .gadet-col {
        position: absolute;
        left: 50%;
        bottom: -221px !important;
        padding: 37px 11px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -43px;
        left: 5px;
    }

    .tabs .content .gadet-col {
        height: 204px;
    }

    .tab-sec {
        height: 1347px !important;
    }
}

@media screen and (max-width: 380px) {
    .tab-sec {
        height: 1313px !important;
    }

    .tabs .content .gadet-col {
        position: absolute;
        left: 50%;
        bottom: -203px !important;
    }

    .tab-sec {
        height: 1313px !important;
    }
}

@media screen and (max-width: 350px) {
    .tab-sec {
        height: 1265px !important;
    }
}

@media screen and (max-width: 330px) {
    .tab-sec {
        height: 1260px !important;
    }
}

@media screen and (max-width:769px) {
    .image-trak img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
    }

    .img-trak-wrap p {
        text-align: center !important;
    }

    .card-graph img {
        position: relative !important;
        bottom: auto;
        right: auto;
        top: auto;
        width: 100%;
    }

    .card-wrap {
        position: relative !important;
        padding-right: 0px;
        top: auto;
        left: auto;
        bottom: auto;
    }

    .content-track {
        position: relative !important;
        top: auto;
        left: auto;
        bottom: auto;
    }

    .track-para {
        text-align: center;
    }

    .content-track-sec {
        position: relative !important;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }

    .card-wrap img {
        width: 100%;
    }

    .content-track h5 {
        text-align: center !important;
    }

    .content-track p {
        text-align: center !important;
    }

    .img-trak-wrap h5 {
        text-align: center !important;
    }

    .img-trak-wrap p {
        text-align: center !important;
    }

    .track-para {
        width: 100%;
    }

    .image-trak {
        order: 2 !important;
    }

    .content-track {
        order: 1 !important;
    }

    .wrapper-flex {
        display: flex;
        flex-direction: column;
    }

    .card-graph {
        order: 2 !important;
    }

    .content-track-sec {
        order: 1 !important;
    }

    .dashboard-img img {
        width: 100%;
    }

    .img-trak-wrap {
        padding: 40px;
    }

    .img-trak-wrap p {
        font-size: 16px;
    }

    .img-trak-wrap h5 {
        font-size: 25px;
    }

    .updates h4 {
        margin-bottom: 20px;
    }

    .update-img {
        padding-top: 20px;
    }

}

@media screen and (max-width:576px) {
    .tab-sec {
        height: 1232px;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 414px;
        position: relative;
        z-index: 0;
        top: -241px;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    .pop-link-col {
        top: 0 !important;
        bottom: auto;
    }

    .tabs .content {
        padding: 0px 15px 15px 15px !important;
    }
}

@media screen and (max-width:480px) {
    .tabs .content .imagemock {
        max-height: 368px;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 405px !important;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -150px;
        left: -42px;
    }

    .tab-sec {
        height: 1056px !important;
    }
}

@media screen and (max-width:450px) {
    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 308px !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        width: 80%;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -166px;
        left: -41px;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 414px;
        position: relative;
        z-index: 0;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 355px !important;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 357px;
    }

    .tab-sec {
        height: 1056px !important;
    }
}

@media screen and (max-width: 430px) {
    .tab-sec {
        height: 1024px !important;
    }
}

@media screen and (max-width: 415px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -136px;
        left: -39px;
    }

    .tab-sec {
        height: 974px !important;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 307px;
        top: -233px;
    }

    .tabs .content .gadet-col {
        padding: 32px 11px !important;
        height: 178px;
        top: 321px !important;
    }

    .padding-none {
        padding-bottom: 10px !important;
    }

    .img-tab {
        position: relative;
        bottom: 20px !important;
    }
}

@media screen and (max-width: 400px) {
    .tab-sec {
        height: 900px !important;
    }
}

@media screen and (max-width: 390px) {
    .tabs .content .imagemock {
        width: 100%;
        max-height: 414px;
        position: relative;
        z-index: 0;
        top: -177px;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 313px;
        top: -147px !important;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 335px !important;
        height: 163px !important;
    }

    .tab-sec {
        height: 906px !important;
    }

    .tabs .content .gadet-col {
        padding: 32px 11px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -119px;
        left: -34px;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .imagemock {
        width: 100%;
        max-height: 288px;
        top: -147px !important;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 308px !important;
        height: 163px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -131px;
        left: -34px;
    }

    .tab-sec {
        height: 882px !important;
    }

}

@media screen and (max-width: 350px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -123px;
        left: -35px;
    }

    .tab-sec {
        height: 825px !important;
    }

    .tabs .content .imagemock {
        width: 100%;
        max-height: 254px;
        top: -134px !important;
    }

    .tabs .content .gadet-col {
        position: relative;
        z-index: 1;
        top: 271px !important;
        height: 149px !important;

    }
}

@media screen and (max-width: 330px) {
    .tab-sec {
        height: 820px !important;
    }
}

@media screen and (min-width:576px) and (max-width:768px) {
    .tabs .content {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    /* .p-top-none {
        padding: 40px 0px 70px 0px !important;
    } */

    .specials-col ul li {
        list-style: none;
        line-height: 2.4em;
        font-size: 14px;
    }

    .sp-selfcheckout .sp-mockup-col img {
        border-radius: 20px 20px 0px 0px;
    }

    .sp-kiosk img {
        border-radius: 20px 20px 0px 0px;
    }

    .img-trak-wrap {
        padding: 25px 15px;
    }
}

@media screen and (min-width:992px) {
    .pop-link-col {
        display: block;
    }
}

@media screen and (min-width:577px) {
    .pop-link-col-mobile .btn {
        display: none;
    }

    .pop-link-col .btn {
        display: block;
    }
}

@media screen and (max-width:576px) {
    .pop-link-col-mobile {
        height: 45px;
        right: 9px;
        bottom: 10px;
        display: block;
        text-decoration: none;
        line-height: normal;
    }

    .pop-link-col-mobile a {
        color: #666 !important;
    }

    .pop-link-col-mobile .btn:focus,
    .pop-link-col-mobile .btn:active,
    .pop-link-col-mobile .btn:focus-visible {
        color: #666 !important;
    }

    .gadet-col .switch-col {
        border-radius: 6px;
    }

    .pop-link-col-mobile {
        position: absolute;
        z-index: 10;
        background: #fff;

        right: 10px;
        border-radius: 6px;
        border: solid 1px #ddd;

    }

    .btm-buttom span {
        bottom: -1px !important;
        position: relative;
    }

    .pop-link-col .btn {
        display: none;
    }

    .pop-link-col-mobile .btn {
        display: block;
    }

    .tabs button,
    .tabs .button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

@media screen and (min-width:992px) {
    .partner-sec {
        padding-bottom: 50px !important;
    }
}


.list-items .card-icon {
    background: #fff1c7;
    border: solid 2px #ffc107 !important;
    border: solid 1px #eee;
    border-radius: 10px;
    padding: 12px !important;
    background: #f7f7f7;
    margin-left: 16px;
}

.list-items .card-icon img {
    width: 60px;
}

.btn-category {
    background: #2c2f36;
    padding: 30px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    box-sizing: border-box;
    width: 120px;
}

.btn-category:hover {
    outline: 2px solid #2c2f36;
    color: #2c2f36 !important;
    background: #f7f7f7 !important;
    font-weight: 600;
}


.list-items h5 {
    text-align: left;
    margin-bottom: 0px;
}

.list-items p {
    margin-bottom: 10px;
    text-align: left;
}

.content-left h6 {
    margin-right: auto;
}

.content-left p {
    margin-right: auto;
    text-align: left;
}

.wrap-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    position: relative;
}

@media screen and (min-width:992px) {
    .mt-list {
        margin-top: 25px;
    }

    .category-top {
        padding: 60px 0px 120px 0px !important;
    }

}

@media screen and (max-width:992px) {
    .m-list {
        margin-top: 10px;
    }

    .category-top {
        padding: 20px 0px 60px 0px !important;
    }

    .wrap-div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ph3 {

        padding: 0 5%;
    }

    .pad-15p {
        padding: 0;
    }
}

@media screen and (min-width:768px) and (max-width:768px) {
    .mn-t-50 {
        margin-top: 98px !important;
    }
}

@media screen and (max-width:768px) {

    .category-width .container,
    .category-width .container-sm {
        max-width: 630px !important;
    }
}

@media screen and (max-width:576px) {
    .wrap-div {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.top-wrap-sec {
    margin-top: 25px;
}

.wrap-sec-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.wrap-div-gap {
    grid-column-gap: 30px !important;
    grid-row-gap: 30px !important;
}

@media screen and (max-width:768px) {

    .sec-container .container,
    .sec-container .container-sm {
        max-width: 642px !important;
    }

    .card-pad {
        padding: 30px !important;
    }
}

@media (max-width: 992px) {

    .plan-chart .container,
    .plan-chart .container-md,
    .plan-chart .container-sm {
        max-width: 997px !important;
    }
}

@media screen and (min-width:1025px) and (max-width:1201px) {
    .menu ul {
        padding-left: 0px;
    }

    .demo-btn {
        display: block !important;
        font-size: 14px;
        padding: 8px 6px !important;
    }

    .head-trial-btn {
        display: block !important;
        font-size: 14px;
        padding: 8px 6px !important;
    }
}

@media screen and (max-width:993px) {

    .page-width .container,
    .page-width .container-sm {
        max-width: 720px !important;
    }
}

@media screen and (max-width:769px) {

    .page-width .container,
    .page-width .container-sm {
        max-width: 638px !important;
    }
}

@media screen and (min-width:768px) and (max-width:769px) {
    footer {
        text-align: center !important;
    }

    .foot-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column !important;
    }

    .social {
        margin: 0 auto !important;
    }
}

@media screen and (max-width:576px) {
    .foot-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column !important;
    }

    .pad-none-left {
        margin-left: 0px !important;
    }
}

@media screen and (max-width:350px) {
    .social .icons {
        margin-left: 7px !important;
    }

    .pad-none-left {
        margin-left: 7px !important;
    }
}

@media screen and (min-width:767px) and (max-width:769px) {
    .line-break {
        display: inline !important;
    }

    .wrapper-flex {
        margin: auto;
        width: 100%;
    }

    .image-trak img {
        width: 100%;
        margin-top: 20px;
    }

    .dashboard-img img {
        width: 100%;
        margin-top: 20px;
    }

    .card-graph img {
        width: 100%;
        margin-top: 20px;
    }

    .track-para {
        margin-top: 40px;
    }

    .content-track-sec {
        margin-top: 40px;
    }

    .card-wrap img {
        width: 100%;
    }

    .blog-img img {
        width: 100% !important;
        position: relative;
        bottom: 16px;
    }
}

@media screen and (min-width:769px) and (max-width:993px) {
    .tab-sec {
        height: 1051px;
    }

    .tabs .content {
        top: 326px;
    }

    .tab-col-container {
        margin-top: 0px !important;
    }

    .wrap-tab ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        margin: auto;
        row-gap: 10px;
        column-gap: 20px;
    }

    .wrap-tab ul li {
        margin-bottom: 10px;
    }

    .tabs .content {
        width: 100%;
    }

    .tab-col-container {
        background-color: transparent;
    }

    .tabs .content {
        background-color: #fff !important;
        padding: 20px !important;
        border-radius: 20px;
    }

    .tabs .content .gadet-col {
        height: 430px;
    }

    .tabs .content .gadet-col {
        top: 48px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    .p-plan {
        padding: 0 8px;
    }
}

@media screen and (min-width:1081px) and (max-width:1200px) {
    .tabs .content .gadet-col {
        height: 434px;
    }
}

@media screen and (min-width:1200px) {
    .p-break {
        display: block;
    }
}

.account-img {
    position: relative;
}

.account-img .accont-main-img {
    position: relative;
}

.account-img .image-1 {
    position: absolute;
    right: -6%;
    top: 24.5%;
}

.image-wrap-card-accnt {
    display: flex;
    gap: 10px;
    justify-content: end;
    position: absolute;
    bottom: 10%;
    right: -6%;
}

@media screen and (max-width:900px) {
    .image-wrap-card-accnt {
        display: flex;
        gap: 10px;
        justify-content: end;
        position: absolute;
        bottom: 13%;
        right: -3%;
    }

    .account-img .image-1 {
        position: absolute;
        right: -2%;
        top: 30%;
    }
}

@media screen and (max-width:768px) {
    .image-wrap-card-accnt {
        display: flex;
        gap: 10px;
        justify-content: end;
        position: absolute;
        bottom: 13%;
    }

    .account-img .image-1 {
        position: absolute;
        right: 0%;
        top: 35.5%;
    }
}

@media screen and (max-width:415px) {
    .image-wrap-card-accnt {
        display: flex;
        gap: 6px;
        justify-content: end;
        position: absolute;
        bottom: 13%;
        right: 0%;
    }
}

.order-mng-img {
    position: relative;
}

.accnt-main-img-2 {
    position: relative;
}

.image-accnt1 {
    position: absolute;
}

.image-accnt2 {
    position: absolute;
}

.image-accnt1 {

    position: absolute;
    left: -7%;
    top: 10%;
}

.image-accnt2 {

    position: absolute;
    left: -7%;
    top: 38%;
}

.image-wrap-card-accnt2 {
    display: flex;
    gap: 9px;
    justify-content: start;
    position: absolute;
    bottom: 8.5%;
    left: -7%;
}

.image-wid {
    width: 180px !important;
    height: 160px !important;
}

.image-width {
    width: 180px !important;
    height: 131px !important;
}

@media screen and (max-width:900px) {
    .image-accnt1 {
        position: absolute;
        left: -3%;
        top: 10%;
    }

    .image-accnt2 {
        position: absolute;
        left: -3%;
        top: 37%;
    }

    .image-wrap-card-accnt2 {

        left: -3%;
    }
}

@media screen and (max-width:768px) {
    .image-accnt1 {

        position: absolute;
        left: -2% !important;
        top: 6%;
    }

    .image-accnt2 {
        position: absolute;
        left: -2% !important;
        top: 36%;
    }
}

@media screen and (max-width:415px) {
    .image-wrap-card-accnt2 {
        display: flex;
        gap: 6px;
    }
}

.main-payment-img img {
    position: absolute;
    right: 20px;
}

.payment-image {
    position: relative;
}

.main-payment-img {
    position: relative;
}

.pay-img {
    width: 329px !important;
    height: 347px !important;
    position: absolute;
    right: -8%;
    top: 23%;
}

@media screen and (max-width:700px) {
    .pay-img {
        width: 60% !important;
        height: 80% !important;
        position: absolute;
        right: 0%;
    }
}


@media screen and (max-width:1045px) {
    .pay-img {
        position: absolute;
        right: -11%;
        top: 16%;
    }
}

@media screen and (min-width:1050px) and (max-width:1200px) {
    .image-width {
        width: 160px !important;
        height: 107px !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1260px) {
    .image-width {
        width: 180px !important;
        height: 128px !important;
    }
}

@media screen and (min-width:1000px) and (max-width:1050px) {
    .image-width {
        width: 140px !important;
        height: 94px !important;
    }
}

@media screen and (min-width:992px) and (max-width:1000px) {
    .image-width {
        width: 130px !important;
        height: 94px !important;
    }
}

@media screen and (max-width: 992px) {
    .image-accnt1 {
        position: absolute;
        left: -5% !important;
        top: 17%;
    }

    .image-accnt2 {
        position: absolute;
        left: -5% !important;
        top: 41% !important;
    }

    .image-wrap-card-accnt2 {
        display: flex;
        gap: 11px !important;
        bottom: 13.5% !important;
        left: -5% !important;

    }
}

@media screen and (max-width: 850px) {
    .image-accnt1 {
        position: absolute;
        left: -2% !important;
        top: 17%;
    }

    .image-accnt2 {
        position: absolute;
        left: -2% !important;
        top: 41% !important;
    }

    .image-wrap-card-accnt2 {
        display: flex;
        gap: 11px !important;
        bottom: 13.5% !important;
        left: -2% !important;

    }
}

@media screen and (max-width: 768px) {
    .image-wrap-card-accnt2 {
        gap: 11px !important;
        bottom: 12.5% !important;
        left: -2% !important;
    }


    .image-width {
        width: 159px !important;
        height: 115px !important;
    }

    .image-accnt1 {
        position: absolute;
        left: -2% !important;
        top: 13% !important;
    }
}

@media screen and (max-width: 620px) {
    .image-width {
        width: 144px !important;
        height: 108px !important;
    }

    .image-accnt2 {
        left: 0% !important;
        top: 38% !important;
    }

    .image-accnt1 {
        left: 0% !important;
        top: 11% !important;
    }
}

@media screen and (max-width: 600px) {
    .image-wrap-card-accnt2 {
        gap: 11px !important;
        bottom: 9.5% !important;
        left: 0% !important;
    }
}

@media screen and (max-width: 576px) {
    .image-width {
        width: 120px !important;
        height: 102px !important;
    }
}

@media screen and (max-width: 530px) {
    .image-width {
        width: 120px !important;
        height: 96px !important;
    }
}

@media screen and (max-width: 500px) {
    .image-width {
        width: 116px !important;
        height: 91px !important;
    }
}

@media screen and (max-width: 480px) {
    .image-width {
        width: 109px !important;
        height: 86px !important;
    }
}

@media screen and (max-width: 460px) {
    .image-width {
        width: 28% !important;
        height: 25% !important;
    }

    .image-accnt1 {
        left: 0% !important;
        top: 10% !important;
    }

    .image-wrap-card-accnt2 {
        gap: 8px !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1230px) {
    .account-img .image-1 {
        position: absolute;
        right: -6%;
        top: 22.5% !important;
    }
}

@media screen and (max-width:1201px) {
    .image-wid {
        width: 166px !important;
        height: 132px !important;
    }
}

@media screen and (min-width:1025px) and (max-width:1050px) {
    .account-img .image-1 {
        position: absolute;
        right: -6%;
        top: 23.5% !important;
    }
}

@media screen and (min-width:992px) and (max-width:1024px) {

    .image-wid {
        width: 139px !important;
        height: 117px !important;
    }

}

@media screen and (max-width: 992px) {
    .image-wid {
        width: 178px !important;
        height: 145px !important;
    }

    .account-img .image-1 {
        position: absolute;
        right: -6%;
        top: 45.5%;
    }
}

@media screen and (max-width: 850px) {
    .account-img .image-1 {
        position: absolute;
        right: -2%;
        top: 45.5%;
    }

    .image-wrap-card-accnt {
        right: -2% !important;
    }
}

@media screen and (max-width: 768px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 35.5%;
    }

    .image-wrap-card-accnt {
        right: 0% !important;
    }
}

@media screen and (max-width: 630px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 35.5%;
    }

    .image-wid {
        width: 174px !important;
        height: 141px !important;
    }
}

@media screen and (max-width: 600px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 32.5%;
    }
}

@media screen and (max-width: 580px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 30.5%;
    }
}

@media screen and (max-width:560px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 31.5%;
    }

    .image-wid {
        width: 156px !important;
        height: 138px !important;
    }
}

@media screen and (max-width: 540px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 29.5%;
    }
}

@media screen and (max-width: 530px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 27.5%;
    }
}

@media screen and (max-width: 510px) {
    .image-wid {
        width: 155px !important;
        height: 133px !important;
    }

    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 27.5%;
    }

}

@media screen and (max-width: 500px) {
    .image-wid {
        width: 140px !important;
        height: 126px !important;
    }
}

@media screen and (max-width: 480px) {
    .image-wid {
        width: 132px !important;
        height: 119px !important;
    }
}

@media screen and (max-width: 450px) {
    .image-wid {
        width: 125px !important;
        height: 113px !important;
    }
}

@media screen and (max-width: 430px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 25.5%;
    }
}

@media screen and (max-width: 415px) {
    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 22.5%;
    }
}

@media screen and (max-width: 405px) {
    .image-wid {
        width: 112px !important;
        height: 102px !important;
    }

    .account-img .image-1 {
        position: absolute;
        right: 0% !important;
        top: 27.5%;
    }
}

@media screen and (max-width: 390px) {
    .image-wid {
        width: 107px !important;
        height: 96px !important;
    }
}

@media screen and (max-width: 370px) {
    .image-wid {
        width: 102px !important;
        height: 91px !important;
    }
}

@media screen and (max-width: 355px) {
    .image-wid {
        width: 96px !important;
        height: 89px !important;
    }
}

@media screen and (max-width: 345px) {
    .image-wid {
        width: 92px !important;
        height: 86px !important;
    }
}

@media screen and (max-width: 335px) {
    .image-wid {
        width: 92px !important;
        height: 82px !important;
    }
}

@media screen and (max-width:1400px) {
    .image-accnt2 {
        position: absolute;
        left: -7%;
        top: 39%;
    }

    .image-wrap-card-accnt2 {
        display: flex;
        gap: 9px;
        justify-content: start;
        position: absolute;
        bottom: 5.5%;
        left: -7%;
    }

    .image-wrap-card-accnt {
        display: flex;
        gap: 10px;
        justify-content: end;
        position: absolute;
        bottom: 8%;
        right: -6%;
    }
}

@media screen and (max-width:1260px) {
    .pay-img {
        width: 322px !important;
        height: 325px !important;
        position: absolute;
        right: -8%;
        top: 23%;
    }
}

@media screen and (max-width: 1200px) {
    .pay-img {
        width: 60% !important;
        height: 71% !important;
        position: absolute;
        right: -8%;
        top: 21%;
    }
}

@media screen and (max-width:992px) {
    .pay-img {
        width: 60% !important;
        height: 71% !important;
        position: absolute;
        right: -6%;
        top: 21%;
    }
}

@media screen and (max-width: 870px) {
    .pay-img {
        width: 60% !important;
        height: 71% !important;
        position: absolute;
        right: -3%;
        top: 21%;
    }
}

@media screen and (max-width: 1250px) {
    .image-wrap-card-accnt {
        display: flex;
        gap: 10px;
        justify-content: end;
        position: absolute;
        bottom: 6%;
        right: -6%;
    }

    .image-wrap-card-accnt2 {
        display: flex;
        gap: 9px;
        justify-content: start;
        position: absolute;
        bottom: 4.5%;
        left: -7%;
    }
}

@media screen and (max-width: 768px) {
    .pay-img {
        width: 54% !important;
        height: 71% !important;
        position: absolute;
        right: -2%;
        top: 21%;
    }

    .account-img .image-1 {
        right: -2% !important;
    }

    .image-wrap-card-accnt {
        right: -2% !important;
    }

}

@media screen and (max-width:576px) {
    .pay-img {
        right: 0%;
    }

    .account-img .image-1 {
        right: 0% !important;
    }

    .image-wrap-card-accnt {
        right: 0% !important;
    }
}

@media screen and (max-width:1050px) {
    .image-accnt1 {
        position: absolute;
        left: -7%;
        top: 18%;
    }

    .image-accnt2 {
        position: absolute;
        left: -7%;
        top: 45%;
    }
}

@media screen and (max-width: 1025px) {
    .image-accnt1 {
        position: absolute;
        left: -7%;
        top: 11% !important;
    }

    .image-accnt2 {
        position: absolute;
        left: -7%;
        top: 40% !important;
    }
}

@media screen and (max-width: 992px) {
    .image-accnt1 {
        position: absolute;
        left: -7%;
        top: 17% !important;
    }

    .image-accnt2 {
        position: absolute;
        left: -7%;
        top: 41% !important;
    }
}

@media screen and (max-width: 768px) {

    .image-accnt2 {

        left: -2% !important;
        top: 40% !important;
    }

    .image-width {
        width: 159px !important;
        height: 115px !important;
    }

    .image-accnt1 {
        position: absolute;
        left: -2% !important;
        top: 15% !important;
    }
}

@media screen and (max-width: 620px) {
    .image-accnt1 {
        position: absolute;
        left: -2% !important;
        top: 12% !important;
    }
}

@media screen and (max-width: 620px) {
    .image-accnt2 {
        left: -2% !important;
        top: 38% !important;
    }
}

@media screen and (max-width: 601px) {
    .image-wrap-card-accnt2 {
        gap: 11px !important;
        bottom: 12% !important;
        left: -2% !important;
    }
}

@media screen and (max-width:580px) {
    .image-accnt1 {
        position: absolute;
        left: 0% !important;
        top: 18% !important;
    }

    .image-accnt2 {
        left: 0% !important;
        top: 44% !important;
    }

    .image-wrap-card-accnt2 {
        gap: 11px !important;
        bottom: 7.5% !important;
        left: 0% !important;
    }

    .image-width {
        width: 146px !important;
        height: 105px !important;
    }
}

@media screen and (max-width: 410px) {
    .image-accnt2 {
        left: 0% !important;
        top: 44.8% !important;
    }
}

@media screen and (max-width: 400px) {
    .image-accnt2 {
        left: 0% !important;
        top: 44.2% !important;
    }
}

@media screen and (max-width: 550px) {
    .image-wrap-card-accnt2 {
        gap: 11px !important;
        bottom: 6.5% !important;
        left: 0% !important;
    }
}

@media screen and (max-width: 540px) {
    .image-width {
        width: 140px !important;
        height: 101px !important;
    }
}

@media screen and (max-width: 520px) {
    .image-width {
        width: 135px !important;
        height: 96px !important;
    }
}

@media screen and (max-width: 500px) {
    .image-width {
        width: 129px !important;
        height: 92px !important;
    }
}

@media screen and (max-width: 480px) {
    .image-width {
        width: 124px !important;
        height: 88px !important;
    }
}

@media screen and (max-width: 455px) {
    .image-width {
        width: 119px !important;
        height: 85px !important;
    }
}

@media screen and (max-width: 440px) {
    .image-width {
        width: 111px !important;
        height: 79px !important;
    }
}

@media screen and (max-width: 415px) {
    .image-wrap-card-accnt2 {
        gap: 7px !important;
        bottom: 6.5% !important;
        left: 0% !important;
    }
}

@media screen and (max-width: 410px) {
    .image-width {
        width: 106px !important;
        height: 72px !important;
    }
}

@media screen and (max-width: 380px) {
    .image-width {
        width: 103px !important;
        height: 70px !important;
    }
}

@media screen and (max-width: 370px) {
    .image-width {
        width: 98px !important;
        height: 67px !important;
    }
}

@media screen and (max-width: 355px) {
    .image-width {
        width: 93px !important;
        height: 64px !important;
    }
}

@media screen and (max-width: 340px) {
    .image-width {
        width: 83px !important;
        height: 62px !important;
    }
}

@media screen and (max-width: 330px) {
    .image-width {
        width: 78px !important;
        height: 60px !important;
    }
}

/* === Retail Button === */
.btn-retail .btn {
    background-color: #FFAC00;
    color: #fff;
    border: 2px solid #FFAC00;
    transition: all 0.3s ease;
}

.btn-retail .btn:hover {
    background-color: transparent !important;
    color: #FFAC00 !important;
    border: 2px solid #FFAC00 !important;
}

.btn-retail .btn:focus {
    background-color: transparent !important;
    color: #FFAC00 !important;
    border: 2px solid #FFAC00 !important;
}

.btn-dark-retail .btn {
    border: 2px solid #333333;
    color: #2c2f36;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-dark-retail .btn:hover {
    border: 2px solid #2c2f36;
    color: #2c2f36;
    background-color: transparent;
}

.btn-dark-retail .btn:focus {
    border: 2px solid #333333;
    color: #2c2f36;
    border-radius: 3px;
}


.banner-retail {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding-top: 70px;
}

.pay-left {
    background-color: #D8D9FF;
    border-radius: 20px;
    padding: 15px 40px 15px 30px;
    width: 100%;
}

.pay-left h5 {
    text-align: left;
}

.pay-left h2 {
    text-align: left;
    margin-bottom: 10px;
}

.customers {
    background-color: #C9E4DF;
    border-radius: 20px;
    padding: 40px 40px 40px 40px;
    width: 100%;

}

.customers p {
    margin-bottom: 0px;
}

.img-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    margin-bottom: 15px;
}

.customers h2 {
    text-align: left;
    font-weight: 700;
    margin-bottom: 16px;
}

.customers h5 {
    text-align: left;
}

.tech-retail {
    background-color: #D2E0D3;
}

.tech-res {
    background-color: #9ED0F3;
}

.int-res {
    background-color: #D8D9FF;
}

.cust-res {
    background: #FBD7CD;
}

.m-top {
    margin-top: 44px;
}

.mr-top {
    margin-top: 35px;
}

.tech {
    border-radius: 20px;
    padding: 20px;
    width: 100%;
}

.tech h4 {
    text-align: left;

}

.tech img {
    width: 278px;
    height: 257px;
}

.banner-main {
    width: 493px;
    height: 582px;
    position: relative;
}

.banner-main img {
    height: 96%;
    width: 100%;
    position: relative;
}

.res-main img {
    height: 98%;
    width: 100%;
}

.banner-sec-1 {
    margin-top: 7%;
    width: 350px;
}

.banner-sec-2 {
    width: 350px;
}

.clr-int {
    background-color: #FAEDCB;
}

@media screen and (max-width:1300px) {
    .banner-sec-1 {
        margin-top: 7.4%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {

    .high-banner .container,
    .high-banner .container-lg,
    .high-banner .container-md,
    .high-banner .container-sm {
        max-width: 1060px;
    }

    .work .container,
    .work .container-lg,
    .work .container-md,
    .work .container-sm {
        max-width: 1060px;
    }

    .operation-sec .container,
    .operation-sec .container-lg,
    .operation-sec .container-md,
    .operation-sec .container-sm {
        max-width: 1060px;
    }

    .apps .container,
    .apps .container-lg,
    .apps .container-md,
    .apps .container-sm {
        max-width: 1060px;
    }

    .place .container,
    .place .container-lg,
    .place .container-md,
    .place .container-sm {
        max-width: 1060px;
    }

    .sec-sell .container,
    .sec-sell .container-lg,
    .sec-sell .container-md,
    .sec-sell .container-sm {
        max-width: 1060px;
    }

    .demo-section .container,
    .demo-section .container-lg,
    .demo-section .container-md,
    .demo-section .container-sm {
        max-width: 1060px;
    }

}

@media screen and (max-width:1025px) {
    .banner-retail {
        gap: 20px;
    }

    .banner-main-bg {
        background-color: #fff;
        width: 70%;
        padding: 20px !important;
        border-radius: 20px;
        position: absolute;
        bottom: 19px !important;
        right: 47px !important;
    }

    .banner-main {
        width: 380px;
    }

    .banner-main img {
        height: 100%;
        width: 100%;
    }

    .banner-main {
        height: auto;
    }

}

@media screen and (max-width:993px) {
    .banner-retail {
        gap: 20px;
    }

    .banner-main-bg {
        background-color: #fff;
        width: 70%;
        padding: 20px !important;
        border-radius: 20px;
        position: absolute;
        bottom: 16px !important;
        right: -6px !important;
    }

    .banner-main {
        width: 380px;
    }

    .banner-main img {
        height: 100%;
        width: 115%;
    }

    .banner-main {
        height: auto;
    }

    .banner-main {
        width: 100%;
    }

    .customers {
        padding: 30px !important;
    }

    .tech {
        padding: 30px;
    }
}

@media screen and (min-width:768px) and (max-width:769px) {
    .banner-sec-2 {
        width: 350px !important;
    }
}

@media screen and (min-width:769px) and (max-width:890px) {
    .banner-sec-1 {
        margin-top: 7%;
        width: auto;
    }

    .banner-sec-2 {
        width: auto;
    }

    .banner-main {
        width: auto;
    }

    .banner-main img {
        height: 88% !important;
    }

    .banner-main-bg {
        padding: 20px !important;
        bottom: 20px !important;
        right: 9px !important;
    }

    .banner-main img {
        height: 100% !important;
        width: 110%;
    }
}

@media screen and (min-width:890px) and (max-width:992px) {

    .customers {
        padding: 64px 40px 64px 40px;
    }

    .images-pos {
        display: flex;
        gap: 40px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .banner-sec-1 {
        width: auto;
    }

    .img-circle {
        width: 80px;
        height: 80px;
    }

    .banner-main {
        width: auto !important;
    }

    .banner-sec-2 {
        width: auto;
    }
}

@media screen and (max-width:769px) {
    .banner-retail {
        display: grid;
        gap: 25px;
        justify-items: center;
        align-items: center;
    }

    .banner-card {
        margin-bottom: 88%;
    }

    .banner-main-bg {
        bottom: 17px !important;
        right: 53px !important;
    }

    .banner-main img {
        height: 100% !important;
        width: 100% !important;
    }

    .r-width {
        width: 100% !important;
    }

    .mr-top {
        margin-top: 26px;
    }

    .m-top {
        margin-top: 0px;
    }
}

@media screen and (max-width:576px) {
    .banner-main {
        width: 100% !important;
    }

    .banner-main-bg {
        background-color: #fff;
        width: 70%;
        padding: 30px !important;
        border-radius: 20px;
        position: absolute;
        bottom: 17px !important;
        right: 46px !important;
    }

    .banner-main img {
        height: 100%;
        width: 100%;
    }

}

@media screen and (max-width:480px) {
    .banner-main-bg {
        right: 42px !important;
    }
}

@media screen and (max-width:415px) {
    .banner-main-bg {
        padding: 15px !important;
    }

    .tech img {
        width: 246px;
        height: 220px;
    }

    .banner-main-bg {
        right: 40px !important;
    }
}

.images-pos {
    display: flex;
    gap: 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

@media screen and (max-width:380px) {
    .banner-main-bg {
        right: 30px !important;
        bottom: 13px !important;
    }
}

@media screen and (max-width:1280px) {
    .mobile-pos {
        width: 100%;
    }

    .pc-pos {
        width: 100%;
    }
}

@media screen and (max-width:992px) {
    .mobile-pos {
        width: 50%;
    }

    .images-pos {
        gap: 20px;
    }


    .operations {
        height: 588px;

        padding: 60px 60px;
    }

    .res-view .operations {

        height: 635px;

    }

    .res-view .pc-pos {
        width: 105%;
    }
}

@media screen and (min-width:769px) and (max-width:992px) {
    .pc-pos {
        width: 116%;
    }
}

@media screen and (min-width:576px) and (max-width: 769px) {
    .pc-pos {
        width: 117%;
    }
}

@media screen and (max-width: 768px) {
    .operations {
        height: 534px;
        padding: 60px 46px;
    }

    .res-view .operations {
        height: 576px;
    }

}

@media screen and (max-width: 577px) {
    .operations {
        height: 596px;
        padding: 60px 46px;

    }

    .operations {
        padding: 40px;
    }

    .images-pos {
        width: 100%;
    }

    .pc-pos {
        width: 80%;
    }

    .res-view .pc-pos {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .operations {
        height: 555px;
        padding: 40px 46px;
    }

    .res-view .operations {
        height: 554px;
    }

    .res-view .pc-pos {
        width: 93%;
    }

    .retail-view .pc-pos {
        width: 93%;
    }
}

@media screen and (max-width:415px) {
    .operations {
        height: 450px;
        padding: 30px;
    }

    .res-view .operations {
        height: 451px;
    }
}

@media screen and (max-width: 414px) {

    .images-pos {
        gap: 20px;
    }

    .mobile-pos {
        width: 45%;
    }

    .operations p {
        font-size: 13px;
    }
}

@media screen and (min-width: 415px) and (max-width: 420px) {
    .operations h2 {
        font-size: 28px !important;
    }
}

@media screen and (min-width:481px) and (max-width:486px) {
    .res-view .operations {
        height: 530px !important;
    }

    .retail-view .operations {
        height: 564px !important;
    }
}

@media screen and (max-width: 380px) {
    .res-view .operations {
        height: 437px;
    }

    .operations h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 380px) {
    .res-view .operations {
        height: 423px;
    }
}

@media screen and (max-width: 350px) {
    .res-view .operations {
        height: 430px;
    }

    .operation-sec h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 340px) {
    .res-view .operations {
        height: 400px;
    }

}

@media screen and (min-width:415px) and (max-width:486px) {
    .operations h2 {
        font-size: 30px;
    }
}

.apps-img {
    background-color: rgba(251, 178, 100, 0.2);
    width: 618px;
    height: 500px;
    position: relative;
    border-radius: 10px;
}

.apps-img img {
    position: absolute;
    width: 95%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 0 !important;
}

.place-img-left {
    background-color: rgba(251, 178, 100, 0.2);
    width: 618px;
    height: 500px;
    position: relative;
    border-radius: 10px;
}

.place-img-left img {
    position: absolute;
    width: 95%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.apps-right-img img {
    position: absolute;
    width: 87%;
    right: 0;
    bottom: 0;
}

.apps-left-img img {
    position: absolute;
    width: 87%;
    right: 0;
    bottom: 0;
}

.apps-right-img {
    background-color: rgba(251, 178, 100, 0.2);
    width: 618px;
    height: 552px;
    position: relative;
    border-radius: 10px;
}

.apps-left-img {
    background-color: rgba(251, 178, 100, 0.2);
    width: 618px;
    height: 552px;
    position: relative;
    border-radius: 10px;
}

.demo-section {
    background-color: #F8F8F8;
}

.demo-section .card {
    border: 0px;
    padding: 24px;
    border-radius: 10px;
}

.demo-section .card img {
    width: 110px;
    height: 110px;
    background: #f8f8f8;
    border-radius: 6px;
    padding: 20px;
}

.demo-section .card .btn {
    padding: 6px 12px !important;
}

.demo-section .row {
    padding-top: 30px;
}

@media screen and (max-width: 1200px) {
    .place-img-left {
        width: 100%;
        height: 380px;
    }

    .apps-img {
        width: 100%;
        height: 380px;
    }
}

@media screen and (max-width:992px) {
    .apps-img img {
        width: 95%;
    }

    .apps-img {
        width: 80%;
        margin-top: 30px;
        height: 428px;
    }

    .place-img-left {
        width: 80%;
        margin-top: 30px;
        height: 428px;
    }

    .place-img-left img {
        width: 95%;
    }

}

@media screen and (max-width:768px) {
    .apps-img img {
        width: 95%;
    }

    .apps-img {
        width: 87%;
        margin-top: 30px;
    }

    .place-img-left {
        width: 87%;
        margin-top: 30px;
    }

    .place-img-left img {
        width: 95%;
    }
}

@media screen and (max-width:576px) {
    .apps-img {
        height: 400px;
        width: 100%
    }

    .place-img-left {
        height: 400px;
        width: 100%;
    }

}

@media screen and (max-width: 500px) {
    .apps-img {
        height: 357px;
        width: 100%;
    }

    .place-img-left {
        height: 357px;
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .apps-img {
        height: 340px;
        width: 100%;
    }

    .place-img-left {
        height: 340px;
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .apps-img {
        height: 305px;
        width: 100%;
    }

    .place-img-left {
        height: 305px;
        width: 100%;
    }
}

@media screen and (max-width:380px) {
    .apps-img {
        height: 266px;
        width: 100%;
    }

    .place-img-left {
        height: 266px;
        width: 100%;
    }
}

@media screen and (max-width:340px) {
    .apps-img {
        height: 280px;
        width: 100%;
    }

    .place-img-left {
        height: 280px;
        width: 100%;
    }
}

@media screen and (max-width:1200px) {
    .apps-right-img {
        background-color: #fff2e4;
        width: 100%;
        height: 420px;
    }

    .apps-left-img {
        background-color: #fff2e4;
        width: 100%;
        height: 420px;
    }

}

@media screen and (max-width:992px) {
    .apps-right-img {
        background-color: #fff2e4;
        width: 77%;
        height: 420px;
        margin-top: 30px;
    }

    .apps-right-img img {
        position: absolute;
        width: 88%;
        height: 88%;
    }

    .apps-left-img {
        background-color: #fff2e4;
        width: 77%;
        height: 420px;
        margin-top: 30px;

    }

    .apps-left-img img {
        position: absolute;
        width: 88%;
        height: 88%;
    }
}

@media screen and (max-width:768px) {
    .apps-right-img {
        background-color: #fff2e4;
        width: 87%;
        height: 420px;
    }

    .apps-left-img {
        background-color: #fff2e4;
        width: 87%;
        height: 420px;
    }

    .apps-left-img img {
        position: absolute;
        width: 90%;
        height: 90%;
    }

    .apps-right-img img {
        position: absolute;
        width: 90%;
        height: 90%;
    }
}

@media screen and (max-width:576px) {
    .apps-right-img {
        height: 477px;
        width: 100%
    }

    .apps-left-img {
        height: 477px;
        width: 100%;
    }

}

@media screen and (max-width: 500px) {
    .apps-right-img {
        height: 429px;
        width: 100%;
    }

    .apps-left-img {
        height: 429px;
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .apps-left-img {
        height: 400px;
        width: 100%;
    }

    .apps-right-img {
        height: 400px;
        width: 100%;
    }
}

@media screen and (max-width:430px) {
    .apps-left-img {
        height: 374px;
        width: 100%;
    }

    .apps-right-img {
        height: 374px;
        width: 100%;
    }
}

@media screen and (max-width:380px) {
    .apps-left-img {
        height: 315px;
        width: 100%;
    }

    .apps-right-img {
        height: 315px;
        width: 100%;
    }
}

@media screen and (max-width:340px) {
    .apps-left-img {
        height: 280px;
        width: 100%;
    }

    .apps-right-img {
        height: 280px;
        width: 100%;
    }
}

.sell {
    background-color: #F8F8F8;
}

.expandable-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px;
    position: relative;
    padding-top: 40px;
    justify-content: center;
    align-content: center;
    margin: auto;
    width: 80%;
}

.expandable-box {
    width: 100%;
    height: 180px;
    padding: 20px;
    margin: 0;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 1;
    background: #fff;
    transition:
        opacity 0.4s ease,
        padding 0.4s ease,
        transform 0.4s ease;
    position: relative;
    z-index: 0;
    transform: scale(0.95);
    cursor: pointer;
}

.expandable-box.out {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
    visibility: hidden;
}

.expandable-box.open .tab-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-preview {
    display: block;
}

.expandable-box.open .box-preview {
    display: none;
}

.box-detail {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.box-header {
    border-bottom: 1px solid #F8F8F8;
    padding: 20px 20px 20px 0px;
}

.box-body {
    padding: 30px;
}

.box-body .row {
    width: 100%;
}

.back-button {
    float: left;
    background: transparent;
    color: #2c2f36;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    bottom: 38px;
}

.back-button .arrow {
    font-size: 24px;
    transition: transform 0.2s ease;
}

.back-button:hover {
    color: #2c2f36;
}

.back-button:hover .arrow {
    transform: translateX(-3px);
}

.expandable-box.open .box-detail {
    display: block;
}

.expandable-boxes h6 {
    margin-bottom: 50px;
}

.box-detail h6 {
    margin-bottom: 0px !important;
}

.box-preview .txt-style {
    margin-bottom: 12px !important;
}

.expandable-box.open {
    border: none !important;
    width: 100%;
    padding: 0px !important;
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.05);
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.5s ease-out,
        box-shadow 0.5s ease-out;
    height: auto !important;
}

@media screen and (max-width:576px) {
    .expandable-box.open {
        border: none !important;
        width: 95%;
        max-height: 90vh !important;
        padding: 40px;
        box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.05);
        opacity: 1;
        z-index: 2;
        position: fixed;
        left: 50%;
        top: 56% !important;
        transform: translate(-50%, -50%);
        overflow-y: auto;
        transition: opacity 0.5s ease-out, box-shadow 0.5s ease-out;
        background: #fff;
        border-radius: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .center-icon-wrap {
        width: 100px !important;
        height: 100px !important;
    }


    .center-icon-wrap img {
        height: 70px !important;
    }
}

@media screen and (max-width:1200px) {
    .expandable-boxes {
        display: grid;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
        position: relative;
        padding-top: 40px;
        justify-content: center;
        align-content: center;
        margin: auto;
        width: 100%;
    }
}

@media screen and (max-width:992px) {
    .expandable-boxes {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        position: relative;
        padding-top: 40px;
        justify-content: center;
        align-content: center;
        margin: auto;
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .expandable-boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        position: relative;
        padding-top: 40px;
        justify-content: center;
        align-content: center;
        margin: auto;
        width: 100%;
    }

    .box-detail img {
        width: 100px;
        height: 100px;
        object-fit: contain;

    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    .box-detail img {
        width: 72px;
        height: 100px !important;
        object-fit: contain;
    }

    .back-button .arrow img {
        height: 30px !important;
    }

    .center-icon-wrap {
        width: 150px !important;
        height: 150px !important;
    }
}

@media screen and (max-width:577px) {
    .box-detail img {
        width: 60px;
        object-fit: contain;
    }

    .box-detail .arrow {
        width: 30px !important;
    }
}

@media screen and (max-width:415px) {
    .box-preview img {
        width: 65px !important;
        height: 65px !important;
        object-fit: contain;
    }

    .expandable-box {
        padding: 20px;
    }
}

.txt-left {
    text-align: left;
}

.business-part-bg {
    width: 65%;
    height: 66px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-main-bg {
    background-color: #fff;
    width: 70%;
    padding: 30px;
    border-radius: 20px;
    position: absolute;
    bottom: 27px;
    right: 43px;
}

.banner-main-bg h5 {
    margin-bottom: 0px;
}


@media screen and (max-width:480px) {
    .banner-main-bg {
        padding: 20px;
    }

    .banner-main-bg {
        bottom: 24px;
        right: 42px;
    }

}

@media screen and (max-width:415px) {
    .banner-main-bg {
        bottom: 13px;
        right: 30px;
    }
}

.variant {
    background-color: #FFE9E9;
}

.bar-code {
    background-color: #E3FDF2;
}

.stock {
    background-color: #E8F6FE;
}

.offer {
    background-color: #FCEEDE;
}

/* @media screen and (min-width:992px) and (max-width:1200px) {
    .feature-wrap div img {
        position: absolute;
        right: 38px;
        bottom: 38px;
        width: 100px;
        height: 100px;
    }
} */

@media screen and (min-width:1300px) {
    .operation-sec .container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    .pay-customer {
        padding: 25px 40px 25px 40px !important
    }

    .banner-main img {
        height: 90% !important;
    }

    .tech img {
        width: 278px;
        height: 250px !important;
    }

}


.box-header h6 {
    margin-left: 5%;
}



.center-icon-wrap {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    width: 180px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.box-body p {
    margin-bottom: 1.2rem !important;
}

.box-preview h6 {
    margin-bottom: 157px;
    font-weight: 600;
}

.box-preview img {
    height: 70px;
    width: 70px;
    position: absolute;
    bottom: 19px;
    object-fit: contain;
}

@media screen and (max-width:992px) {
    .center-icon-wrap {
        margin-bottom: 20px;
    }

    .center-icon {
        display: flex;
        justify-content: left;
    }

    .box-header h6 {
        margin-left: 5%;
    }

    .box-header {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    .box-header h6 {
        margin-left: 8%;
    }
}

@media screen and (max-width: 480px) {
    .box-header h6 {
        margin-left: 10%;
    }
}

@media screen and (max-width: 415px) {
    .box-header h6 {
        margin-left: 13%;
    }

    .box-preview h6 {
        margin-bottom: 160px !important;
    }

    .box-preview .txt-style {
        margin-bottom: 66px !important;
    }

    .box-body {
        padding: 20px;
    }
}

@media screen and (max-width: 380px) {
    .box-header h6 {
        margin-left: 14%;
    }
}

.card-effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.card-effect img {
    transition: transform 0.3s ease-in-out;
    width: auto !important;
    height: auto;
}

.card-effect:hover img {
    transform: scale(0.9);
}

.pay-left p {
    text-align: left;
}

.pay-customer p {
    text-align: left;
}

.card-effect {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease !important;
    border: solid 1px #fff;
}

.card-effect:hover {
    background-color: #fff;
    transition: all 0.4s ease;
    border: solid 1px #eee;
}



.card-effect:hover {
    box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.05);
}

.variant:hover::before,
.variant:hover::after,
.variant:hover .left-border,
.variant:hover .right-border {
    background-color: #2c2f36;
}

.bar-code:hover::before,
.bar-code:hover::after,
.bar-code:hover .left-border,
.bar-code:hover .right-border {
    background-color: #2c2f36;

}

.stock:hover::before,
.stock:hover::after,
.stock:hover .left-border,
.stock:hover .right-border {
    background-color: #2c2f36;
}

.offer:hover::before,
.offer:hover::after,
.offer:hover .left-border,
.offer:hover .right-border {
    background-color: #2c2f36;

}

@media screen and (max-width: 768px) {
    .expandable-box.open {
        border: none !important;
        width: 94%;
        max-height: 90vh;
        padding: 0;
        box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.05);
        opacity: 1;
        z-index: 2;
        position: fixed;
        left: 50%;
        top: 56%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
    }

    .box-header {
        padding: 20px;
        font-size: 1.2rem;
        font-weight: bold;
        background: #fff;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
        z-index: 3;
    }

    .box-header h3 {
        margin: 0;
        padding: 0;
        color: #333;
    }

    .box-content {
        padding: 20px;
        overflow-y: auto;
        max-height: calc(90vh - 80px);
        scrollbar-width: thin;
        -ms-overflow-style: none;
    }

    .box-content::-webkit-scrollbar {
        display: none;
    }
}

@media screen and (max-width:992px) {
    .box-body .row {
        width: 100%;
    }

    .back-button {
        padding: 8px 16px 8px 0px;
    }

    .r-width {
        width: 115%;
    }
}

@media screen and (min-width:769px) and (max-width:1025px) {
    .tab-show {
        display: block;
    }

    .tab-none {
        display: none;
    }

    .pay-left {
        height: 150px;
    }

    .banner-sec-2 .mr-top {
        margin-top: 0px;
    }

    .banner-sec-1 {
        margin-top: 0px;
    }

    .banner-retail {
        margin-top: 0px;
    }

    .r-left {
        margin-left: 6%;
    }
}

@media screen and (min-width:576px) and (max-width:768px) {
    .tab-show {
        display: none;
    }

    .banner-sec-2 {
        width: 100% !important;
    }

}

@media screen and (min-width:1025px) {
    .tab-show {
        display: none;
    }
}

@media screen and (max-width:820px) {
    .r-width {
        width: 111%;
    }
}

@media screen and (max-width:576px) {
    .tab-show {
        display: none;
    }

}

@media screen and (min-width:992px) and (max-width:1025px) {
    .r-left {
        margin-left: 5%;
        width: 90% !important;
    }

    .pay-left {
        height: 150px;
        width: 100%;
    }

    .customers {
        padding: 90px 20px 90px 20px;
    }
}

@media screen and (max-width: 1300px) {
    .banner-main-bg h5 {
        font-size: 16px;
    }
}

@media screen and (min-width:1020px) and (max-width:1200px) {

    .banner .container,
    .banner .container-lg,
    .banner .container-md,
    .banner .container-sm {
        max-width: 1060px !important;
    }

    .logo-slider .container,
    .logo-slider .container-lg,
    .logo-slider .container-md,
    .logo-slider .container-sm {

        max-width: 1060px !important;
    }

    .get-started .container,
    .get-started .container-lg,
    .get-started .container-md,
    .get-started .container-sm {

        max-width: 1060px !important;
    }

    .home-features .container,
    .home-features .container-lg,
    .home-features .container-md,
    .home-features .container-sm {

        max-width: 1060px !important;
    }

    .screenshot-container .container,
    .screenshot-container .container-lg,
    .screenshot-container .container-md,
    .screenshot-container .container-sm {

        max-width: 1060px !important;
    }

    .home-sec .container,
    .home-sec .container-lg,
    .home-sec .container-md,
    .home-sec .container-sm {

        max-width: 1060px !important;
    }
}

.scroll-content {
    margin-left: 14.8%;
}

@media screen and (min-width:1200px) and (max-width:1250px) {
    .scroll-content {
        margin-left: 15.2%;
    }
}

@media screen and (min-width:992px) and (max-width:1201px) {
    .scroll-content {
        margin-left: 20.8%;
    }
}

@media screen and (max-width:992px) {
    .scroll-content {
        margin-left: 17.8%;
    }
}

@media screen and (min-width:768px) and (max-width:769px) {
    .scroll-content {
        margin-left: 8.8%;
    }
}

@media screen and (max-width: 768px) {
    .scroll-content {
        margin-left: 11.8%;
    }
}

@media screen and (max-width: 490px) {
    .scroll-content {
        margin-left: 12.8%;
    }
}

@media screen and (max-width: 450px) {
    .scroll-content {
        margin-left: 14.8%;
    }
}

@media screen and (max-width: 415px) {
    .scroll-content {
        margin-left: 16.8%;
    }
}

@media screen and (max-width: 350px) {
    .scroll-content {
        margin-left: 18.8%;
    }
}

.scroll-symbol img {
    width: 40px;
    /* height: 40px; */
}

@media (min-width: 769px) and (max-width: 992px) {
    .category_container .content {
        width: 350px;
    }

}

@media screen and (min-width:768px) and (max-width:769px) {

    .profile_quote {
        padding: 30px 0px 30px 0px;
    }

    .profile_quote {
        width: 35rem;
    }
}

@media screen and (max-width:769px) {
    .category_container .content {
        width: calc((100%) / 1);
    }

}

@media (min-width: 600px) and (max-width: 768px) {

    .get-started .container,
    .get-started .container-sm {
        max-width: 638px;
    }

    .home-features .container,
    .home-features .container-sm {
        max-width: 638px;
    }

    .logo-slider .container,
    .logo-slider .container-sm {
        max-width: 638px;
    }

    .profile_quote {
        width: 35rem;
    }

    .profile_quote {
        padding: 30px 0px 30px 0px !important;
    }
}

.s-c-info {
    position: relative;
    padding-left: 50px;
    padding: 30px 30px 30px 0px;
    border-left: 1px solid #eee;
}


.suport-card img {
    padding: 0px 0px 0px 30px;
}

.cntct-main {
    display: flex;
}

.cntct-main .detail-part {
    padding-left: 30px;
}

@media screen and (max-width:480px) {
    .cntct-main {
        display: flex;
        flex-wrap: wrap;
    }

    .cntct-main .detail-part {
        padding-left: 5px;
        padding-top: 20px;
    }
}

@media screen and (max-width:415px) {
    .flex-container .card {
        padding: 20px;
    }

    .expandable-boxes {
        gap: 7px;
    }
}

.list-style {
    padding-left: 0px !important;
    list-style: none !important;
}

.list-style img {
    height: 14px !important;
    width: inherit !important;
    margin-right: 12px;
    margin-top: 6px;
}

.list-style li {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    margin-bottom: 4px;
}

.hoverable-svg {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.hoverable-svg:hover path {
    fill: #ffac00;
}

.img-contact {
    text-align: center;
}

.img-contact h5 {
    margin-top: 1rem !important;
}

.row-container {
    width: 65%;
    margin: auto;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
}

@media screen and (max-width:576px) {

    .row-container {
        width: 90%;
    }

    .sm-icon img {
        width: 50% !important;
    }
}

@media screen and (min-width:992px) {
    .banner-cap {
        width: 80%;
    }
}

.btn-user {
    display: flex;
    justify-content: center;
    margin: 20px 0 0 0;
}

.hover-zoom img {
    width: 100% !important;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.hover-zoom img:hover {
    transform: scale(1.02);
}

@media screen and (max-width:576px) {
    .btn-user {
        display: flex;
        gap: 10px !important;
    }
}

.square-wrap {
    border-radius: 40px;
    display: flex;
    gap: 50%;
    margin: auto;
    justify-content: space-between;
    position: relative;
    padding: 50px 50px;
    width: 90%;
    margin-top: 70px;
}

.square-wrap img {
    margin-bottom: 40px;
}


.main-div-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-div-img img {
    width: 400px;
}

.main-app img {
    width: 150px;
}

.mb-bottom {
    margin-bottom: 0px !important;
}

.app-hover-img {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-hover-img:hover {
    transform: scale(1.08);
}

@media screen and (max-width:1200px) {
    .square-wrap {
        width: 90%;
    }
}

@media screen and (max-width:992px) {
    .square-wrap {
        width: 100%;
    }

    .main-div-img img {
        width: 250px;
    }

    .main-app img {
        width: 120px;
    }
}

@media screen and (max-width:768px) {
    .square-wrap {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        justify-items: center;
        padding: 20px 0px;
    }

    .mb-bottom {
        margin-bottom: 40px !important;
    }

    .main-div-img {
        position: static;
    }

    .square-wrap {
        gap: 0px !important;
    }

    .main-div-img {
        transform: none;
    }

}

@media screen and (min-width:992px) and (max-width:1400px) {
    .sp-kiosk {
        position: relative;
    }

    .sp-kiosk .sp-mockup-col {
        position: absolute;
        bottom: 0;
    }

    .sp-selfcheckout {
        position: relative;
    }

    .sp-selfcheckout .sp-mockup-col {
        position: absolute;
        bottom: 0;
        height: 55%;
    }

    .sp-waiter-app {
        position: relative;
    }

    .sp-waiter-app .sp-mockup-col {
        position: absolute;
        bottom: 0;
        height: 55%;
    }

    .sp-kiosk img {
        height: 404px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    .sp-kiosk {
        position: relative;
    }

    .sp-kiosk .sp-mockup-col {
        position: absolute;
        bottom: 0;
    }

}

@media screen and (min-width:992px) and (max-width:1200px) {
    h4 {
        font-size: 26px;
    }

    .hover-zoom h4 {
        white-space: nowrap;
    }
}

.download-icon img {
    width: 100%;
}

.demo-flex {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.demo-flex img {
    margin: 0px !important;
}

@media screen and (max-width:1400px) {
    .tabs .content .gadet-col {
        height: 444px;
    }
}

@media screen and (max-width:1300px) {
    .demo-flex {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .tabs .content .gadet-col {
        height: 415px;
    }
}

@media screen and (max-width: 1250px) {
    .tabs .content .gadet-col {
        height: 404px;
    }
}

@media screen and (max-width: 1230px) {
    .tabs .content .gadet-col {
        height: 396px;
    }
}

@media screen and (max-width: 1200px) {
    .tabs .content .gadet-col {
        height: 350px;
    }
}

@media screen and (max-width: 1080px) {
    .tabs .content .gadet-col {
        height: 333px;
    }
}

@media screen and (max-width: 1030px) {
    .tabs .content .gadet-col {
        height: 318px;
    }
}

@media screen and (max-width: 769px) {
    .tabs .content .gadet-col {
        height: 286px;
        top: 42px;
    }
}

@media screen and (max-width: 680px) {
    .tabs .content .gadet-col {
        height: 279px;
        top: 42px;
    }
}

@media screen and (max-width: 650px) {
    .tabs .content .gadet-col {
        height: 255px;
        top: 42px;
    }
}

@media screen and (max-width: 620px) {
    .tabs .content .gadet-col {
        height: 245px;
        top: 42px;
    }
}

@media screen and (max-width: 600px) {
    .tabs .content .gadet-col {
        height: 234px;
        top: 42px;
    }
}

@media screen and (max-width:576px) {
    .tabs .content .gadet-col {
        top: 434px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -158px;
        left: -53px;
    }
}

@media screen and (max-width: 530px) {
    .tabs .content .gadet-col {
        top: 450px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -139px;
        left: -53px;
    }
}

@media screen and (max-width: 520px) {
    .tabs .content .gadet-col {
        top: 440px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -149px;
        left: -50px;
    }
}

@media screen and (max-width: 510px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -137px;
        left: -50px;
    }
}

@media screen and (max-width: 500px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -123px;
        left: -48px;
    }
}

@media screen and (max-width: 490px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -112px;
        left: -44px;
    }
}

@media screen and (max-width: 480px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -106px;
        left: -44px;
    }
}

@media screen and (max-width: 470px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -42%;
        left: -44px;
    }
}

@media screen and (max-width: 460px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -37%;
        left: -44px;
    }
}

@media screen and (max-width: 450px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -33%;
        left: -44px;
    }
}

@media screen and (max-width: 440px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -29%;
        left: -44px;
    }
}

@media screen and (max-width: 430px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -25%;
        left: -42px;
    }
}

@media screen and (max-width: 420px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -23%;
        left: -42px;
    }
}

@media screen and (max-width:415px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -28%;
        left: -42px;
    }

    .tabs .content .gadet-col {
        top: 419px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .gadet-col {
        top: 332px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -72%;
        left: -42px;
    }
}

@media screen and (max-width: 390px) {
    .tabs .content .gadet-col {
        top: 325px !important;
    }
}

@media screen and (max-width: 381px) {
    .tabs .content .gadet-col {
        top: 314px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -72%;
        left: -38px;
    }
}

@media screen and (max-width: 370px) {
    .tabs .content .gadet-col {
        top: 309px !important;
    }
}

@media screen and (max-width: 360px) {
    .tabs .content .gadet-col {
        top: 303px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .gadet-col {
        top: 282px !important;
    }
}

@media screen and (max-width: 330px) {
    .tabs .content .gadet-col {
        top: 279px !important;
    }
}

@media screen and (min-width:400px) and (max-width: 576px) {
    .tabs .content {
        padding: 20px 15px 15px 15px !important;
    }
}

.btm-pad-row .specials-col {
    padding-bottom: 0px !important;
}

@media screen and (max-width:1200px) {
    .sp-waiter-app .sp-mockup-col {
        height: auto !important;
    }
}

@media screen and (min-width:992px) and (max-width:1400px) {
    .sp-selfcheckout .sp-mockup-col {
        position: absolute;
        bottom: -30% !important;
        height: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
    }

    .sp-waiter-app .sp-mockup-col {
        position: absolute;
        bottom: -25% !important;
        height: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
    }

    .hover-zoom h4 {
        font-size: 22px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .sp-waiter-app .sp-mockup-col {
        width: 93%;
    }
}

@media screen and (max-width:992px) {
    .hover-zoom img {
        width: 90% !important;
    }

    .sp-selfcheckout .sp-mockup-col {
        bottom: -36px;
    }

    .sp-waiter-app .sp-mockup-col {
        bottom: -14px !important;
    }

    .sp-mockup-col {
        position: relative;
        bottom: -40px;
    }
}

@media screen and (max-width: 480px) {
    .sp-waiter-app .sp-mockup-col {
        bottom: 4px !important;
    }

    .sp-selfcheckout .sp-mockup-col {
        bottom: -16px;
    }

    .sp-mockup-col {
        position: relative;
        bottom: -18px;
    }
}

@media screen and (max-width:480px) {
    .head-icons img {
        height: 18px !important;
    }

    /* .head-icons {
        position: absolute;
        bottom: 0;
        left: 6%;

    } */

    .head-icons .icons {
        width: 40px;
        height: 40px;
    }

    .menu-link {
        padding-inline: 1.15rem;
    }
}

@media screen and (max-width:1200px) {
    .large-mockup {
        padding-bottom: 150px !important;

    }
}

@media screen and (max-width: 992px) {
    .large-mockup {
        padding-bottom: 118px !important;
    }
}

@media screen and (max-width: 768px) {
    .large-mockup {
        padding-bottom: 90px !important;
    }
}

@media screen and (max-width: 480px) {
    .large-mockup {
        padding-bottom: 80px !important;

    }
}

@media screen and (max-width: 415px) {
    .large-mockup {
        padding-bottom: 62px !important;

    }
}

@media screen and (min-width:480px) and (max-width:1024px) {
    .head-icons {
        left: 3%;
    }
}

.web-col .c-form-col {
    height: 95%;
}

@media screen and (max-width:1200px) {
    .screen-col img {
        margin-bottom: -19%;
        width: 90%;
    }
}

@media screen and (max-width:480px) {
    .screen-col img {
        width: 98%;
    }
}

.box-header img {
    width: 20px;
    height: 20px;
}

@media screen and (max-width:415px) {
    .box-header {
        padding-left: 11px !important;
    }
}

@media screen and (max-width: 350px) {
    .box-header h6 {
        margin-left: 14%;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .main-div-img img {
        width: 300px;
    }

    .guest-efficient img {
        object-fit: cover;
    }
}



@media screen and (max-width:993px) {
    .section-left {
        display: flex;
        justify-content: flex-start;
    }

    .icons-dwnld a {
        width: 120px;
    }

}

@media screen and (max-width:769px) {
    .icons-dwnld a {
        width: 108px;
    }
}


@media screen and (min-width:992px) {
    .top-pad {
        margin-top: 27px;
    }
}

@media screen and (max-width:1200px) {
    .top-pad-md {
        margin-top: 27px;
    }

    .delivery-system .card {
        height: auto;
    }
}

@media screen and (min-width:1200px) and (max-width:1201px) {
    .top-pad-md {
        margin-top: 0px !important;
    }
}

@media screen and (max-width:768px) {
    .top-pad-sm {
        margin-top: 27px;
    }
}

@media screen and (max-width:1024px) {
    .top-link {
        margin-top: 22px;
    }
}

@media screen and (min-width:480px) and (max-width:576px) {
    .wrap-tab ul li a {
        font-size: 12px;
    }
}

@media screen and (max-width:992px) {
    .choose-wrap img {
        margin-bottom: 10px;
    }
}

.content-left h6 {
    text-align: left;
}

.nav-pills-custom {
    padding-left: 0px;
}

@media screen and (max-width:768px) {
    .pos-features img {
        margin: auto;
    }

    .wrap-sec-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }
}

@media screen and (max-width:576px) {
    .cnt-wrapper .pos-features {
        margin-bottom: 15px;
    }

    .wrap-div h6 {
        margin: auto;
        margin-bottom: 6px;
    }
}

@media screen and (max-width:576px) {
    .int-top img {
        width: 70% !important;
    }

    .tabs .content .int-top {
        top: 469px !important;
        height: 284px;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 530px) {
    .int-top img {
        width: 60% !important;
    }

    .tabs .content .int-top {
        top: 489px !important;
        height: 278px;
    }
}

@media screen and (max-width: 520px) {
    .tabs .content .int-top {
        top: 476px !important;
        height: 278px;
    }
}

@media screen and (max-width: 500px) {
    .tabs .content .int-top {
        top: 458px !important;
        height: 278px;
    }
}

@media screen and (max-width:480px) {
    .tabs .content .int-top {
        top: 435px !important;
        height: 260px;
    }
}

@media screen and (max-width: 465px) {
    .tabs .content .int-top {
        top: 422px !important;
        height: 260px;
    }
}

@media screen and (max-width: 460px) {
    .tabs .content .int-top {
        top: 406px !important;
        height: 260px;
    }
}

@media screen and (max-width:576px) {
    .tabs .content .report-top img {
        width: 90%;
    }
}

@media screen and (max-width:490px) {
    .tabs .content .report-top {
        top: 406px !important;
    }

}

@media screen and (max-width: 450px) {
    .tabs .content .report-top {
        top: 334px !important;
        height: 200px;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .report-top {
        top: 329px !important;
        height: 200px !important;
    }
}

@media screen and (max-width: 370px) {
    .tabs .content .report-top {
        top: 304px !important;
        height: 200px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .report-top {
        top: 266px !important;
        height: 173px !important;
    }
}

@media screen and (max-width:576px) {
    .tabs .content .qk-top img {
        width: 75%;
    }

    .tabs .content .qk-top {
        height: 256px;
        top: 472px !important;
    }
}

@media screen and (max-width: 515px) {
    .tabs .content .qk-top {
        height: 256px;
        top: 449px !important;
    }
}

@media screen and (max-width: 490px) {
    .tabs .content .qk-top {
        height: 230px;
        top: 406px !important;
    }
}

@media screen and (max-width: 450px) {
    .tabs .content .qk-top {
        height: 207px;
        top: 375px !important;
    }
}

@media screen and (max-width: 430px) {
    .tabs .content .qk-top {
        height: 207px;
        top: 355px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .qk-top {
        height: 207px;
        top: 321px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .qk-top {
        height: 207px;
        top: 295px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .qk-top {
        height: 207px;
        top: 265px !important;
    }
}

@media screen and (max-width:576px) {
    .tabs .content .sap-top img {
        width: 64%;
    }
}

@media screen and (max-width: 490px) {
    .tabs .content .sap-top {
        top: 416px !important;
    }
}

@media screen and (max-width: 470px) {
    .tabs .content .sap-top {
        height: 211px;
        top: 358px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .sap-top {
        height: 211px;
        top: 324px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .sap-top {
        height: 211px;
        top: 304px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .sap-top {
        height: 211px;
        top: 264px !important;
    }
}

@media screen and (max-width: 576px) {
    .tabs .content .woo-top img {
        width: 70% !important;
    }

    .top-small {
        margin-top: 25px !important;
    }

    .content-left p {
        text-align: left;
    }

    .content-left h6 {
        text-align: center;
    }

}

@media screen and (max-width: 490px) {
    .tabs .content .woo-top {
        top: 398px !important;
        height: 225px !important;
    }
}

@media screen and (max-width: 450px) {
    .tabs .content .woo-top {
        top: 363px !important;
        height: 225px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .woo-top {
        top: 328px !important;
        height: 182px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .woo-top {
        top: 305px !important;
        height: 182px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .woo-top {
        top: 267px !important;
        height: 157px !important;
    }
}

.updates .card-col {
    height: 94%;
}

@media screen and (max-width:768px) {
    .meetings-iframe-container iframe {
        height: 642px !important;
    }
}

@media screen and (max-width:330px) {
    .meetings-iframe-container iframe {
        min-width: 245px !important;
    }
}

@media screen and (max-width:992px) {
    .free-txt p {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media screen and (min-width:414px) and (max-width:427px) {
    .style-btn {
        padding: 12px 15px;
    }
}

.apps ul {
    padding-left: 3%;
}

.place ul {
    padding-left: 3%;
}

@media screen and (max-width:500px) {
    .apps ul {
        padding-left: 4%;
    }

    .place ul {
        padding-left: 4%;
    }
}

@media screen and (max-width:420px) {
    .apps ul {
        padding-left: 5%;
    }

    .place ul {
        padding-left: 5%;
    }
}

@media screen and (max-width:992px) {
    .k-list li {
        display: flex;
        align-items: flex-start;
        gap: 1px;

    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .banner img {
        object-fit: cover;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .tech img {
        width: 278px;
        height: 271px;
    }

    .tech-res img {
        width: 278px !important;
        height: 210px !important;
    }
}

@media screen and (max-width:1025px) {
    .tech img {
        width: 278px;
        height: 213px;
    }

    .tech-res img {
        width: 80% !important;
        height: 213px !important;
    }
}

@media screen and (max-width:330px) {
    .banner-sec-1 {
        width: 98%;
    }

    .banner-sec-2 {
        width: 98%;
    }
}

.tech-res img {

    width: 278px;
    height: 225px;

}

@media screen and (min-width:1200px) and (max-width:1400px) {
    h6 {
        font-size: 14px;
    }
}

.icon-full {
    height: auto !important;
    display: flex;

    justify-content: center;

}

.icon-full img {
    background-color: #fff !important;
    width: 100px;
    height: 100px !important;
    object-fit: contain;
    border-radius: 10px;
}

tfoot button {
    background: #2c2f36;
    color: #fff !important;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 20px !important;
    margin-top: 10px;
    width: 80%;
}

tfoot button:hover {
    border: 1px solid #2c2f36 !important;
    color: #2c2f36 !important;
    background-color: transparent;
}

.accordion__titlebox {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

tfoot td {
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .accordion__title {
        font-weight: 600 !important;
        margin-left: 0px;
    }
}

@media screen and (max-width: 993px) {

    .price-wid .container,
    .price-wid .container-sm {
        max-width: 820px !important;
    }
}

@media screen and (max-width:992px) {
    tfoot button {
        font-size: 14px;
    }
}

@media screen and (max-width:802px) {
    tfoot button {
        padding: 8px 8px !important;
    }
}

@media screen and (max-width: 705px) {
    tfoot button {
        font-size: 12px;
    }
}

@media screen and (max-width: 660px) {
    tfoot td {
        padding: 20px 0px;
    }
}

@media screen and (max-width:550px) {
    tfoot button {
        font-size: 10px;
    }
}

@media screen and (max-width:1400px) {
    .package-col h5 {
        font-size: 15px;
    }
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .package-col img {
        height: 8px;
        margin-right: 5px;
        margin-top: 9px;
    }

    .package-col ul li {
        display: flex;
        gap: 1px;
    }
}

@media screen and (max-width: 768px) {
    .accordion__title {
        font-weight: 500 !important;
    }
}

.accordion {
    padding: 0px !important;
}


@media screen and (min-width:576px) and (max-width:992px) {
    .sticky-top-pricing th {
        padding: 0px 8px !important;
    }

}

.que-width {
    width: 60%;
    margin: auto;
}

@media screen and (max-width:1200px) {
    .que-width {
        width: 80%;
        margin: auto;
    }
}

@media screen and (max-width:500px) {
    .que-width {
        width: 90%;
        margin: auto;
    }
}

@media screen and (max-width:415px) {
    .que-width {
        width: 100%;
        margin: auto;
    }

    .accordion {
        font-size: 16px !important;
    }

    .logo-slider {
        padding-bottom: 0px !important;
    }

}

.cust-res {
    padding: 41px 40px 43px 40px;
    float: left;
    border: 1px solid transparent;
    font-size: 18px;
}

.cust-res:hover {
    background: #FBD7CD !important;
    border: 1px solid #FBD7CD !important;
}

.cust-res:focus {
    border: 1px solid #FBD7CD !important;
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    .cust-res {
        padding: 35px 40px 36px 40px;
    }

    .business-part-bg {
        width: 80%;
    }

    .res-main img {
        height: 89%;
        width: 100%;
    }

    .banner-main-bg {
        bottom: 76px;
        right: 39px;
    }

    .pay-left {
        background-color: #D8D9FF;
        border-radius: 20px;
        padding: 10px 40px 10px 30px;
        width: 100%;
    }
}

@media screen and (min-width:993px) and (max-width:1025px) {
    .cust-res {
        padding: 60px 40px 60px 40px;
    }
}

@media screen and (max-width:993px) {
    .pay-left {
        padding: 30px;
    }
}

@media screen and (min-width:992px) and (max-width:1025px) {
    .pay-left {
        padding: 25px 40px 25px 30px;
    }
}

@media screen and (max-width:576px) {

    .mobile-pos {
        display: none;
    }

    .banner-d-none {
        gap: 20px !important;
    }

    .banner-d-none .banner-main img {
        margin-top: 12px;

    }

    .pay-left p {
        margin-bottom: 0px;
    }

    .customers {
        padding: 20px !important;
    }

    .tech {
        padding: 20px !important;
    }

    .pay-left {
        padding: 20px !important;
    }

    .banner-retail {
        padding-top: 45px;
    }

    .cust-res {
        padding: 30px 40px 30px 40px;
    }

    .d-mob-none {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .banner-d-none {
        gap: 7px !important;
    }

    .mr-top {
        margin-top: 15px;
    }

    .banner-retail {
        gap: 15px;
    }

    .m-top {
        margin-top: 15px;
    }
}

@media screen and (max-width:1025px) {
    .tech {
        position: relative;
        height: 335px;
    }

    .tech img {
        position: absolute;
        left: 20px;
        bottom: 20px;
    }

    .tech {

        height: 360px;

        position: relative;
    }

    .tech img {

        width: 80%;
        height: 200px !important;

        position: absolute;
        left: 30px;
        bottom: 30px;
    }
}

@media screen and (max-width:415px) {

    .banner-sec-1 {
        width: 100% !important;
    }

    .banner-sec-2 {
        width: 100% !important;
    }

    /* .feature-wrap div img {
        width: 100px;
        height: 100px;
    } */

    .high-banner {
        padding: 60px 0 30px 0;
    }
}

@media screen and (max-width:350px) {
    .tech img {
        width: 85% !important;
    }
}

@media screen and (max-width: 360px) {
    .tech img {
        width: 80% !important;
    }
}

.btn-thin {
    border: 1px solid !important;
}

.btn-thin:hover {
    border: 1px solid !important;
}

.btn-cus:hover {
    color: #2c2f36;
}

.center-icon-wrap img {
    height: 100px;
    object-fit: contain;
}

@media screen and (min-width: 414px) and (max-width:415px) {
    .operations {
        height: 506px;
        padding: 30px;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {
    .images-pos {
        width: 60%;
        height: 540px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .images-pos {
        width: 60%;
        height: 443px;
    }

    .operations {
        height: 750px;
    }

    .category_container .content {
        padding-left: 35px !important;

    }
}

@media screen and (min-width:992px) {
    .payment-solution {
        height: 100%;
    }
}

@media screen and (min-width:993px) and (max-width:1040px) {
    .profile_quote {
        width: 16rem !important;
    }

    .profile_detail {
        bottom: 150px !important;
    }
}

@media screen and (min-width:993px) and (max-width:1200px) {
    .category_container {
        --gap: 8px;
    }

    .profile_quote {
        width: 17rem !important;
    }

    .profile_detail {
        bottom: 150px !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {
    .category_container {
        --gap: 9px;
    }
}

@media screen and (min-width:993px) and (max-width:1020px) {
    .profile_quote {
        padding-right: 16px;
    }
}

@media screen and (max-width:415px) {
    .web-col .c-form-col {
        padding: 32px 30px 32px 30px;
    }

    .head-trial-btn {
        padding: 7px 7px !important;
        font-size: 12px !important;
    }

    .img-circle {
        width: 70px;
        height: 70px;
    }

    .tech {
        height: 320px;
    }

    .tech img {
        height: 206px !important;
    }

    .work-ftr {
        padding-top: 40px !important;
    }
}

.business-part-bg {
    border-radius: 10px !important;
}


@media screen and (min-width:993px) and (max-width: 1025px) {
    .tech img {
        width: 80% !important;
    }
}

@media screen and (max-width:769px) {
    .pay-customer {
        display: none;
    }

    .mob-show {
        display: block;
    }

    .mob-flex {
        display: flex;
        gap: 12px;
    }

    .mob-none {
        display: none;
    }

    .banner-d-none {
        gap: 0px !important;
    }

    .banner-sec-2 {
        width: 100%;
    }

    .banner-sec-1 {
        width: 100%;
    }
}

@media screen and (min-width:769px) {
    .mob-show {
        display: none;
    }
}

@media screen and (min-width:577px) and (max-width:769px) {
    .business-part-bg {
        width: 50%;
    }

    .banner-sec-1 {
        width: 100%;
    }

    .item-1 {
        order: 2;
    }

    .item-2 {
        order: 1;
    }

    .item-3 {
        order: 3;
        display: flex;
        gap: 15px;
    }

    .business-part {
        display: none;
    }

    .cust-res {
        margin-top: 0px !important;
    }

    .item1 {
        order: 3;
        margin-top: 0px !important;
    }

    .item2 {
        order: 1;
    }

    .item3 {
        order: 2;
    }

    .tech-res img {
        width: 89% !important;
        height: 252px !important;
    }

    .tech-res {
        height: 390px;
    }

    .item3 .pay-left {
        width: 60%;
        height: 60%;
        margin-top: 0px !important;
    }

    .item1 {
        display: flex;
        gap: 14px;
    }

    .item1 .pay-left {
        height: 60%;
    }
}

@media screen and (max-width:577px) {
    .item1 {
        order: 3;
    }

    .item2 {
        order: 1;
    }

    .item3 {
        order: 2;
    }

    .banner-sec-1 {
        margin-top: 0px !important;
    }

    .cust-res {
        margin-top: 0px !important;
    }

    .banner-retail {
        gap: 15px;
    }

    .business-part {
        display: none;
    }

    .tech img {
        height: 270px !important;
        width: 88% !important;
    }

    .tech-res {
        height: 515px !important;
    }

    .tech-retail {
        height: 460px !important;
    }

    .item1 {
        display: flex;
        gap: 14px;
    }

    .pay-wrap {
        height: 60%;
        margin-top: 0px;
    }
}

@media screen and (min-width:769px) {
    .pay-wrap {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .tech-retail {
        height: 390px !important;
    }

    .tech-res {
        height: 390px !important;
    }

    .tech img {
        height: 240px !important;
        width: 85% !important;
    }
}

@media screen and (max-width:415px) {
    .tech-res {
        height: 300px !important;
    }

    .tech img {
        height: 169px !important;
        width: 82% !important;
    }

    .tech-retail {
        height: 300px !important;
    }

    .customers h5 {
        font-size: 16px;
        font-weight: 300;
        color: #666 !important;
        line-height: 1.5 !important;
    }

    .pay-left h5 {
        font-size: 16px;
        font-weight: 300;
        color: #666 !important;
        line-height: 1.5 !important;
    }
}

@media screen and (max-width: 350px) {
    .tech img {
        height: 177px !important;
        width: 83% !important;
    }

    .tech-retail {
        height: 310px !important;
    }

    .tech-res {
        height: 310px !important;
    }
}

@media screen and (min-width:577px) and (max-width:992px) {
    .tech img {
        height: 164px !important;
    }

    .tech {
        height: 330px !important;
    }

}

@media screen and (min-width:769px) and (max-width:993px) {
    .tech-res h4 {
        font-size: 21px;
    }
}

@media screen and (min-width:577px) and (max-width:769px) {
    .tech-res img {
        height: 249px !important;
    }

    .tech-res {
        height: 400px !important;
    }
}

@media screen and (max-width:769px) {
    .mob-sm {
        display: block;
        padding-bottom: 25px;
    }

    .mob-hide {
        display: none !important;
    }

    .mob-visible {
        text-align: left !important;
    }

    .foot-main {
        display: block !important;
    }
}

@media screen and (min-width:769px) {
    .mob-sm {
        display: none !important;
    }

}

@media screen and (max-width:480px) {
    footer h5 {
        font-size: 13px;
        white-space: nowrap;
    }

    footer ul li a {
        font-size: 14px;
    }

    footer ul li {
        white-space: nowrap;
    }

    .social .icons {
        width: 45px;
        height: 45px;
    }

    .foot-main {
        font-size: 14px;
    }

    .foot-link ul li a {
        font-size: 14px;
    }

    .social .icons {
        margin-left: 10px;
    }
}

@media screen and (max-width: 769px) {
    .price-filter-col .row .col-auto {
        margin-top: 20px;
    }
}

@media screen and (min-width:992px) {
    .price-filter-wrap {
        display: flex;
        gap: 20px;
    }
}

@media screen and (max-width:993px) {
    .price-filter-wrap {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        margin-top: 30px;
    }

    .pricing-filtercol select {
        width: 30%;
    }
}

@media screen and (max-width:993px) {
    .pricing-filtercol {
        padding: 70px 0;
    }

    .price-plan {
        padding-top: 30px;
    }

    .banner-inner-col h4 {
        color: #2c2f36;
        margin-bottom: 40px;
    }
}

.price-filter-wrap .d-flex {
    white-space: nowrap;
    align-items: center;
}

@media screen and (max-width:480px) {
    .pricing-filtercol h4 {
        font-size: 25px;
    }

    .nav-pills-custom .nav-link {
        font-size: 22px;
    }
}

@media screen and (max-width:415px) {
    pricing-filtercol select {
        padding: 0 5px !important;
    }

    .pricing-filtercol input {
        padding: 0 10px !important;
    }

    .banner-inner-col h4 {
        margin-bottom: 50px;
    }

    .price-plan {
        padding-top: 20px;
    }

    .pricing-filtercol {
        padding: 60px 0;
    }
}

@media screen and (max-width:500px) {
    .pricing-filtercol .container {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }
}

@media screen and (max-width:370px) {
    .pricing-filtercol h4 {
        font-size: 23px;
    }

    .nav-pills-custom .nav-link {
        font-size: 20px;
    }
}

.pduct-btn:hover {
    color: #fff !important;
}

@media screen and (max-width: 370px) {

    .copy-right {
        white-space: nowrap;
    }
}

@media screen and (max-width: 350px) {

    footer h5 {
        font-size: 15px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 769px) {

    footer .container,
    footer .container-sm {
        max-width: 638px !important;
    }
}

@media screen and (max-width: 340px) {
    footer ul li a {
        font-size: 13px;
    }

    footer h5 {
        font-size: 14px;
    }
}

@media screen and (max-width: 365px) {
    .primary-btn {
        font-size: 14px;
    }
}

@media screen and (max-width: 380px) {
    footer ul li a {
        font-size: 13px;
    }

    .foot-link ul li a {
        font-size: 13px !important;
    }

    .copy-right {
        font-size: 13px !important;
    }

}

@media screen and (max-width: 350px) {
    footer ul li a {
        font-size: 12px;
    }

    .foot-link ul li a {
        font-size: 12px !important;
    }

    .copy-right {
        font-size: 12px !important;
    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    footer {
        padding: 50px 0 30px 0;
    }
}

@media screen and (max-width:993px) {
    footer h5 {
        margin-top: 0;
        line-height: 2.5em;
        margin-bottom: 0px;
    }
}

@media screen and (min-width:992px) and (max-width:1450px) {
    .intercom-lightweight-app-launcher {
        bottom: 80px !important;
    }
}

@media screen and (min-width:769px) and (max-width:870px) {
    .intercom-lightweight-app-launcher {
        bottom: 80px !important;
    }
}

@media screen and (max-width:670px) {
    .wrap-tab ul li a {
        width: 230px !important;
    }
}

@media screen and (max-width: 550px) {
    .wrap-tab ul li a {
        width: 207px !important;
    }
}

@media screen and (max-width: 481px) {
    .wrap-tab ul li {
        margin-bottom: 4px;
    }

    .wrap-tab ul li a {
        width: 100% !important;
        background-color: #e9e9e9;
        font-size: 11px;
    }
}

@media screen and (max-width: 415px) {
    .wrap-tab ul li a {
        width: 100% !important;
    }
}

@media screen and (max-width:993px) {
    .tab-col-container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media screen and (min-width:414px) and (max-width:481px) {
    .dark-bg {
        padding-bottom: 60px !important;
    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    .tech-res img {
        padding: 0px 30px;
    }
}

@media screen and (max-width:769px) {
    .blog-img img {
        position: relative;
        bottom: 20px;
    }
}

@media screen and (max-width:992px) {

    .pricing-filtercol input {
        padding: 0 30px;
    }
}

@media screen and (min-width:992px) {
    .price-flex {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
}

@media screen and (max-width:992px) {
    .price-filter-col label {
        display: block !important;
        text-align: left !important;
    }

    .pricing-filtercol select {
        width: 100% !important;
        margin-top: 10px;
    }

    .pricing-filtercol select {
        display: block !important;
    }

    .price-filter-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        margin-top: 30px;
    }

    .pricing-filtercol input {
        width: 100%;
    }

}

@media screen and (max-width:530px) {
    .price-filter-col {
        max-width: 400px;
        width: 100%;
        margin: auto;
    }

    .price-flex {
        width: 100%;
    }

    .pricing-filtercol input {
        width: 100%;
    }
}

@media screen and (max-width: 415px) {
    .price-filter-col {

        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        margin: auto;
    }

    .pc-pos {
        width: 91.5%;
    }

    .operations {
        height: 460px;
    }
}

@media screen and (max-width: 380px) {
    .operations {
        height: 435px;
    }
}

@media screen and (max-width: 350px) {
    .operations {
        height: 466px;
    }
}

@media screen and (min-width:414px) and (max-width: 415px) {
    .operations {
        height: 538px !important;
    }
}

@media screen and (min-width:576px) and (max-width:993px) {


    .price-filter-wrap .price-flex {
        width: 100% !important;
    }

    .pricing-filtercol select {
        width: 99% !important;
    }
}

.btm-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btm-flex h4 {
    font-size: 22px !important;
    margin: 0;
}

.btm-flex img {
    margin: 0 !important;
}

@media screen and (max-width:480px) {
    .btm-flex {
        flex-wrap: wrap;
    }
}

@media screen and (max-width:415px) {
    .demo-section .card {
        padding: 30px;
    }
}

@media screen and (min-width:576px) and (max-width:1300px) {
    .partner-wrap {
        padding: 0px 10px !important;

    }
}

@media screen and (min-width:1020px) and (max-width:1200px) {
    .header .container {
        max-width: 1060px !important;
    }

    footer .container {
        max-width: 1060px !important;
    }

    .top-bar .container {
        max-width: 1060px !important;
    }
}

@media screen and (min-width:1020px) and (max-width:1200px) {
    .page-width .container {
        max-width: 1060px !important;
    }
}

.box-shadow-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(0);
    will-change: transform, box-shadow;
    transition: all 1s;
}

.box-shadow-col:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.location .box-shadow-col {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.svg-sm {
    height: 64px !important;
}

@media screen and (max-width:577px) {
    .width-sm img {
        height: 55px !important;
    }
}

.svg-wrap {
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid #e7ecec;
    border-radius: 10px;
    width: 64px !important;
    height: 64px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.svg-wrap svg {
    height: 42px !important;
}

.svg-highlight {
    border: solid 1px #ffe490;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fffce5;
    width: 64px !important;
    height: 64px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.svg-highlight img {
    width: 40px;
}

.svg-wrap {
    position: relative;
    background: #f7f7f7;
    transition: border 0.4s ease, transform 0.5s ease, background 0.4s ease;
    border-radius: 10px;
}

.svg-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FBD704 0%, #FBAC04 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    z-index: 0;
    border-radius: 10px;
}

.svg-wrap>* {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, fill 0.4s ease;
}

.box-shadow-col img {
    transition: all 0.4s ease-out;
    scale: 1 !important;
}

.box-shadow-col:hover img {
    transition: all 0.4s ease-out;
    filter: brightness(0) invert(0);
    scale: 1 !important;
}

.box-shadow-col:hover .svg-wrap {
    border: transparent;
    border-radius: 10px;
}

.box-shadow-col:hover .svg-wrap::before {
    opacity: 1;
}

.svg-highlight {
    position: relative;
    transition: border 0.4s ease, transform 0.4s ease, background 0.4s ease;
    border: solid 1px #ffe490;
    background: #fffce5;
    border-radius: 10px;
}

.svg-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FBD704 0%, #FBAC04 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    z-index: 0;
    border-radius: 10px;
}

.svg-highlight>* {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, fill 0.4s ease;
}

.highlight-section:hover .svg-highlight {
    border: transparent;
    border-radius: 10px;
}

.highlight-section:hover .svg-highlight::before {
    opacity: 1;
}

.m-none-top {
    margin-top: 0px !important;
}

@media screen and (min-width:992px) and (max-width:1300px) {
    .wrap-left {
        padding-left: 45px !important;
    }

    .wrap-right {
        padding-right: 45px !important;
    }
}

@media screen and (min-width:1300px) {
    .wrap-left {
        padding-left: 65px !important;
    }

    .wrap-right {
        padding-right: 65px !important;
    }
}

@media screen and (max-width:577px) {
    .svg-highlight {
        margin-right: auto;
    }
}

.align-left {
    float: left !important;
    margin-right: auto;
}

@media screen and (max-width:576px) {
    .align-left {
        margin: auto !important;
    }
}

.highlight-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;

}

.icon-full img {
    padding: 15px;
}

@media screen and (max-width:577px) {
    .icon-full img {
        width: 90px;
        height: 90px !important;
        object-fit: contain;
    }
}

@media screen and (min-width:200px) {
    .square-wrap {
        width: 490px;
        height: 460px !important;
        border: dshed;
        border-radius: 50%;
        border: 1px dashed #979797;
        position: relative;
        margin: 50px auto;
        height: 75%;
        margin-top: 120px;
        justify-content: space-between;
    }

    .main-app img {
        width: 100px;
    }

    .main-div-img img {
        width: 180px;
        height: 180px;
    }

    .kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -19%;
    }

    .queue-img {
        position: absolute;
        right: 4%;
        top: 75%;
    }

    .waiter-img {
        position: absolute;
        right: 3%;
        top: 2%;
    }

    .main-div-img img {
        margin-bottom: 0px;
    }

    .display-img {
        position: absolute;
        right: 75%;
        top: 76%;
    }

    .delivery-app {
        position: absolute;
        right: 77%;
        top: 2%;
    }

    .kiosk-img {
        position: absolute;
        top: -14%;
        right: 39%;
    }

    .demo-1 {
        position: absolute;
        top: 39%;
        left: -9%;
    }

    .demo-2 {
        position: absolute;
        top: 39%;
        right: -9%;
    }

    .square-wrap img {
        margin-bottom: 0px;
    }

    .kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -13%;
    }
}

@media screen and (max-width:769px) {
    .main-div-img {
        position: absolute;
        transform: translate(-50%, -50%);
    }
}

@media screen and (min-width:510px) and (max-width:601px) {
    .square-wrap {
        width: 430px;
        height: 430px !important;
    }

    .main-app img {
        width: 90px;
    }
}

@media screen and (max-width:510px) {
    .square-wrap {
        width: 256px;
        height: 256px !important;
        margin-top: 60px;
    }

    .main-app img {
        width: 55px;
    }

    .main-div-img img {
        width: 80px;
        height: 80px;
    }

    .main-div-img {
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -29%;
    }

    .main-div-img img {
        width: 100px;
        height: 100px;
    }

    .kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -12%;
    }

    .square-wrap img {
        margin-bottom: 0px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .feature-wrap div {
        padding: 30px 20px;
    }
}

@media screen and (max-width:415px) {
    .box-preview h6 {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 350px) {
    .box-preview h6 {
        font-size: 12px;
        white-space: nowrap;
    }
}

@media screen and (max-width:993px) {
    .card-order {
        margin-top: 25px;
    }
}

.image-left-align img {
    margin: 0 !important;
}

.image img {
    width: 100%;
}

@media screen and (max-width: 576px) {
    .card-order {
        margin-top: 25px;
    }
}

@media screen and (max-width:993px) {
    .m-topper {
        margin-top: 20px;
    }

    .center-icon-wrap {
        height: 180px;
    }
}



@media screen and (min-width:200px) {
    .square-wrap {
        width: 490px;
        height: 460px !important;
        border: dshed;
        border-radius: 50%;
        border: 1px dashed #ccc;
        position: relative;
        margin: 50px auto;
        height: 75%;
        margin-top: 120px;
        justify-content: space-between;
    }

    .main-app img {
        width: 100px;
    }

    .main-div-img img {
        width: 180px;
        height: 180px;
    }

    .r-kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -19%;
    }

    .r-queue-img {
        position: absolute;
        right: 40%;
        top: 90%;
    }

    .r-waiter-img {
        position: absolute;
        right: -11%;
        top: 30%;
    }

    .main-div-img img {
        margin-bottom: 0px;
    }

    .r-display-img {
        position: absolute;
        right: 80%;
        top: 72%;
    }

    .r-delivery-app {
        position: absolute;
        right: 66%;
        top: -7%;
    }

    .r-kiosk-img {
        position: absolute;
        top: -7%;
        right: 15%;
    }

    .r-demo-1 {
        position: absolute;
        top: 30%;
        left: -11%;
    }

    .r-demo-2 {
        position: absolute;
        top: 72%;
        right: 0%;
    }

    .square-wrap img {
        margin-bottom: 0px;
    }

    .r-kitchen-img {
        position: absolute;
        right: 39%;
        bottom: -13%;
    }
}


@media screen and (min-width:530px) and (max-width:620px) {
    .square-wrap {
        width: 420px;
        height: 420px !important;
    }

    .main-app img {
        width: 93px;
    }
}

@media screen and (min-width:415px) and (max-width:530px) {
    .square-wrap {
        width: 320px;
        height: 320px !important;
    }

    .main-div-img img {
        width: 150px;
        height: 150px;
    }

    .main-app img {
        width: 65px;
    }
}

@media screen and (max-width:415px) {
    .main-div-img img {
        width: 100px;
        height: 100px;
    }

    .main-app img {
        width: 54px;
    }

    .square-wrap {
        width: 250px;
        height: 250px !important;
    }
}

@media screen and (max-width:350px) {
    .square-wrap {
        width: 230px;
        height: 230px !important;
    }
}

@media screen and (max-width:480px) {
    .square-wrap {
        margin-top: 70px !important;
    }
}

@media screen and (max-width: 577px) {
    .m-list {
        margin-top: 10px;
    }
}


.main-app {
    border-radius: 50%;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, filter 0.4s ease-out;
    -webkit-transition: -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out, -webkit-filter 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out, -moz-box-shadow 0.4s ease-out, -moz-filter 0.4s ease-out;
}

.main-app:hover {
    filter: brightness(1.1);
    transform: scale(1.18);
    cursor: pointer;
}

.main-div-img img {
    border-radius: 50%;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, filter 0.4s ease-out;
    -webkit-transition: -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out, -webkit-filter 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out, -moz-box-shadow 0.4s ease-out, -moz-filter 0.4s ease-out;
}

.main-div-img img:hover {
    filter: brightness(1.1);
    transform: scale(1.1);
    box-shadow: 0 8px 20px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}


.expandable-box {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out, filter 0.4s ease-out;
    -webkit-transition: -webkit-transform 0.4s ease-out, -webkit-box-shadow 0.4s ease-out, -webkit-filter 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out, -moz-box-shadow 0.4s ease-out, -moz-filter 0.4s ease-out;
}

.expandable-box .box-preview img {
    transition: transform 0.4s ease;
}

.expandable-box .box-preview img {
    filter: brightness(1.0);
}

.expandable-box:hover .box-preview img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: zoomFadeIn 0.6s ease-out forwards;
}

.sequential-animate {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s linear 0.5s;
}

.animate-in {
    animation: zoomFadeIn 0.6s ease-out forwards;
    visibility: visible !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
}

@media screen and (max-width:576px) {
    .top-margin {
        margin-top: 24px;
    }
}

/* @media screen and (max-width:480px) {
    .features-android {
        height: 310px;
    }
} */

.icon-no {
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
    align-items: center;
}

.icon-no img {
   height: 16px !important;
   width:16px !important;
    box-shadow: none !important;
    border: none !important;
    background-color: transparent !important;
    margin: 0 !important;
    padding: 0px !important;
    border-radius: 0px !important;
}

.delivery-system .card .image-card-wrap {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

@media screen and (max-width:850px) {
    .row-container {
        margin: auto;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media screen and (max-width:415px) {
    .query-col {
        padding: 20px 10px;
    }

    .img-contact h5 {
        font-size: 13px;
    }

    .hoverable-svg {
        height: 30px;
    }

    .row-container {
        gap: 10px;
    }
}

@media screen and (max-width:769px) {
    .row-container {
        width: 95% !important;
    }
}

@media screen and (max-width:480px) {
    .row-container {
        width: 98% !important;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .row-container {
        width: 80%;
    }
}

@media screen and (max-width:480px) {
    .tabs .content .imagemock {
        top: -233px;
    }

    .pop-link-col-mobile {
        bottom: 46px;
    }

    .tabs .content .gadet-col {
        top: 405px !important;
    }

    .pop-link-col-mobile {
        bottom: 11px;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -60%;
        left: -44px;
    }

}

@media screen and (max-width: 460px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -57%;
        left: -44px;
    }
}

@media screen and (max-width: 450px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -51%;
        left: -44px;
    }
}

@media screen and (max-width: 440px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -49%;
        left: -44px;
    }
}

@media screen and (max-width: 430px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -44%;
        left: -44px;
    }
}

@media screen and (max-width: 420px) {
    .gadet-col .switch-col {
        position: absolute;
        bottom: -40%;
        left: -44px;
    }
}

@media screen and (max-width: 415px) {
    .tabs .content .gadet-col {
        top: 376px !important;
    }

    .pop-link-col-mobile {
        bottom: 11px;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -48%;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .gadet-col {
        top: 292px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -96%;
    }
}

@media screen and (max-width: 380px) {
    .pop-link-col-mobile {
        bottom: 12px;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -85%;
        left: -40px;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .gadet-col {
        top: 255px !important;
    }

    .gadet-col .switch-col {
        position: absolute;
        bottom: -94%;
        left: -35px;
    }
}

@media screen and (max-width: 430px) {
    .tabs .content .int-top {
        top: 352px !important;
        height: 219px !important;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .int-top {
        top: 338px !important;
        height: 215px !important;
    }
}

@media screen and (max-width: 370px) {
    .tabs .content .int-top {
        top: 327px !important;
        height: 215px !important;
    }
}

@media screen and (max-width: 360px) {
    .tabs .content .int-top {
        top: 319px !important;
        height: 201px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .int-top {
        top: 294px !important;
        height: 193px !important;
    }
}

@media screen and (max-width: 415px) {
    .tabs .content .int-img-width {
        top: -220px;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .int-img-width {
        top: -195px !important;
    }
}

@media screen and (max-width: 360px) {
    .tabs .content .int-img-width {
        top: -180px !important;
    }
}

@media screen and (max-width:450px) {
    .rept-img {
        top: -201px !important;
    }

    .tabs .content .report-top {
        top: 354px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .rept-img {
        top: -177px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .report-top {
        top: 325px !important;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .rept-img {
        top: -177px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .rept-img {
        top: -150px !important;
    }
}

@media screen and (max-width: 470px) {
    .tabs .content .acc-img {
        top: -207px;
    }
}

@media screen and (max-width: 480px) {
    .tabs .content .woo-top {
        top: 369px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .woo-top {
        top: 294px !important;
    }
}

@media screen and (max-width:577px) {
    .tabs .content .ip-img {

        top: -282px;
    }
}

@media screen and (max-width: 480px) {
    .tabs .content .ip-img {
        top: -256px;
    }
}

@media screen and (max-width: 430px) {
    .tabs .content .ip-img {
        top: -215px;
    }
}

@media screen and (max-width: 576px) {
    .tabs .content .invoice-img {
        top: -282px;
    }
}

@media screen and (max-width: 480px) {
    .tabs .content .invoice-img {
        top: -259px;
    }
}

@media screen and (max-width: 430px) {
    .tabs .content .invoice-img {
        top: -220px;
    }
}

@media screen and (max-width: 400px) {
    .tabs .content .invoice-img {
        top: -198px !important;
    }
}

@media screen and (max-width: 390px) {
    .tabs .content .invoice-img {
        top: -197px !important;
    }
}

@media screen and (max-width: 360px) {
    .tabs .content .invoice-img {
        top: -179px !important;
    }
}

@media screen and (max-width:576px) {
    .tabs .content .center-img {
        position: relative;
    }

    .tabs .content .center-img img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}

@media screen and (min-width:480px) and (max-width:577px) {
    .tabs .content .center-img img {
        width: 60% !important;
    }
}

@media screen and (max-width:350px) {
    .tabs .content .report-top {
        top: 278px !important;
    }
}

@media screen and (max-width: 450px) {
    .tabs .content .sap-top {
        top: 365px !important;
    }
}

@media screen and (max-width: 415px) {
    .tabs .content .sap-top {
        top: 329px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .sap-top {
        top: 301px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .sap-top {
        top: 269px !important;
    }
}

@media screen and (max-width: 415px) {
    .tabs .content .woo-top {
        top: 337px !important;
    }
}

@media screen and (max-width: 380px) {
    .tabs .content .woo-top {
        top: 322px !important;
    }
}

@media screen and (max-width: 350px) {
    .tabs .content .woo-top {
        top: 277px !important;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    h1 {
        font-size: 40px;
    }
}

.prvcy ul {
    list-style-type: decimal;
    font-weight: 300;
    padding-left: 1.5em;

}

.prvcy ul li::marker {
    font-weight: 500;
    color: #000;
}

.prvcy li {
    margin-bottom: 8px;
}

@media screen and (max-width: 415px) {
    .img-trak-wrap h5 {
        font-size: 22px;
    }

    .home-features h4 {
        font-size: 22px;
    }
}

@media screen and (min-width:415px) and (max-width:480px) {
    .foot-contact p {
        padding: 0 5%;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1201px) {
    .image-width {
        width: 162px !important;
        height: 107px !important;
    }
}

@media screen and (min-width:1201px) and (max-width:1215px) {
    .image-wrap-card-accnt2 {
        bottom: 3.5% !important;
    }

    .image-accnt1 {
        top: 9% !important;
    }
}

@media screen and (min-width:1020px) and (max-width:1025px) {
    .image-wrap-card-accnt2 {
        position: absolute;
        bottom: 8.5% !important;
    }

    .image-accnt1 {
        top: 13% !important;
    }

    .account-img .image-1 {
        position: absolute;
        right: -6%;
        top: 30.5% !important;
    }
}

@media screen and (max-width:350px) {
    .card-list-title h5 {
        font-size: 14px;
    }

    .card-list-title small {
        font-size: 10px !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .sp-kiosk img {
        height: 364px !important;
        width: 94% !important;
    }

    .app-sec-col .specials-col {
        height: 430px;
    }
}

@media screen and (max-width:767px) {
    .app-sec-col img {
        width: 100% !important;
    }
}

@media screen and (min-width:768px) and (max-width:769px) {
    .app-sec-col h4 {
        font-size: 28px;
    }
}

@media screen and (min-width:768px) and (max-width:992px) {
    .sp-kiosk ul {
        padding-bottom: 25px !important;
    }
}

@media screen and (max-width:415px) {
    .ph3 {
        font-size: 18px !important;
        padding: 0 3%;
    }
}

@media screen and (max-width:992px) {
    .banner-overlay {
        background: rgba(0, 0, 0, 0.7707457983193278);
    }

    .btn-user .btn-banner {
        padding: 12px 15px;
    }

    .btn-user .primary-btn {
        font-size: 16px;
    }

    .dark-gradient .btn {
        padding: 12px 15px;
    }
}

.card-body {
    color: #666 !important;
}

.mobile-pos {
    width: 40%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.pc-pos {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

@media screen and (max-width:992px) {
    .mobile-pos {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .pc-pos {
        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

@media screen and (max-width:577px) {
    .pc-pos {
        width: 85%;
    }
}

@media screen and (min-width:1300px) {
    .retail-view .images-pos {
        width: 730px;
    }

    .res-view .pc-pos {
        width: 110% !important;
    }
}

@media screen and (min-width:440px) and (max-width: 480px) {
    .operations {
        height: 545px;
    }
}

@media screen and (min-width:500px) and (max-width: 550px) {
    .operations {
        height: 575px;
    }

    .retail-view .operations {
        height: 598px !important;
    }
}

@media screen and (min-width:415px) and (max-width: 480px) {
    .retail-view .operations {
        height: 579px !important;
    }
}

@media screen and (max-width: 992px) {
    .retail-view .operations {
        height: 590px;
    }

    .mobile-pos {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .retail-view .operations {
        height: 550px;
    }
}

@media screen and (max-width: 577px) {
    .retail-view .operations {
        height: 616px;
    }
}

@media screen and (max-width: 415px) {
    .retail-view .operations {
        height: 479px;
    }
}

@media screen and (max-width:380px) {
    .retail-view .operations {
        height: 460px;
    }
}

@media screen and (max-width: 350px) {
    .retail-view .operations {
        height: 453px;
    }
}

@media screen and (min-width:350px) and (max-width: 355px) {
    .retail-view .operations {
        height: 480px;
    }
}

.svg-wrap img {
    width: 40px;
}

.location:hover img {
    transition: none !important;
    filter: none !important;
    transform: none !important;
}

.icon-full:hover img {
    transition: none !important;
    filter: none !important;
    transform: none !important;
}

.img-contact img {
    width: 50px;
}

@media screen and (max-width:415px) {
    .img-contact img {
        width: 40px;
    }
}

.img-contact:hover {
    background-color: #2c2f36;
    transition: all 0.4s ease-out;

}

.img-contact:hover img {
    transition: all 0.4s ease-out;
   filter: brightness(0) invert(1);

}

.img-contact:hover h5 {
    transition: all 0.4s ease-out;
   filter: brightness(0) invert(1);

}

.icon-full .text-light {
    border: 1px solid #e7ecec;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
}

@media screen and (min-width:768px) and (max-width:993px) {
    .pc-pos {
        width: 107% !important;
    }

    .mobile-pos {
        width: 40% !important;
    }

    .operations {
        height: 560px !important;
    }

    .operations h2 {
        font-size: 38px;
    }

    .retail-view .operations {
        height: 537px !important;
    }
}

@media screen and (min-width:577px) and (max-width:768px) {
    .operations {
        height: 536px !important;
    }

    .operations h2 {
        font-size: 36px;
    }

    .pc-pos {
        width: 111% !important;
    }

    .mobile-pos {
        width: 40% !important;
    }
}

@media screen and (max-width:480px) {
    .operations {
        border-radius: 12px;
    }
}

@media screen and (max-width:576px) {
    .shedule-img img {
        width: 100%;
        margin: 30px 0 40px 0;
    }
}

.media-icons {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 8px;
    justify-content: center;
}

@media screen and (max-width:577px) {
    .banner-img-wrap .tech-retail {
        height: 276px !important;
        width: 99% !important;
    }

    .banner-img-wrap .img-circle {
        width: 80px;
        height: 80px;
    }

    .banner-img-wrap .banner-sec-2 {
        display: flex;
        gap: 12px;
    }

    .banner-img-wrap .tech img {
        height: 134px !important;
        width: 76% !important;
        bottom: 26px !important;
    }

    .banner-img-wrap h4 {
        font-size: 26px;
    }

    .banner-img-wrap .banner-main {
        width: 100% !important;
    }

    .item-2 {
        order: 1;
    }

    .item-1 {
        order: 2;
        margin-top: 14px !important;

    }

    .item-3 {
        order: 3;
    }
}

@media screen and (max-width:480px) {
    .banner-img-wrap .tech img {
        height: 123px !important;
        width: 72% !important;
    }

    .banner-img-wrap .tech-retail {
        height: 250px !important;
        width: 99% !important;
    }

    .banner-img-wrap h4 {
        font-size: 20px;
    }

    .checkout p {
        font-size: 16px;
    }
}

@media screen and (max-width: 450px) {
    .banner-img-wrap .tech img {
        height: 107px !important;
        width: 72% !important;
    }
}

@media screen and (max-width:415px) {
    .banner-img-wrap .tech img {
        height: 96px !important;
        width: 72% !important;
    }

    .banner-img-wrap h4 {
        font-size: 18px;
    }

    .banner-img-wrap .tech-retail {
        height: 207px !important;
        width: 99% !important;
    }

    .banner-img-wrap .img-circle {
        width: 60px;
        height: 60px;
    }

    .banner-img-wrap .tech img {
        bottom: 22px;
        left: 25px;
    }

    .banner-img-wrap .img-circle {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 350px) {
    .banner-img-wrap .tech img {
        height: 86px !important;
        width: 71% !important;
    }

    .banner-img-wrap .tech img {
        bottom: 19px !important;
    }

}

@media screen and (min-width:480px) and (max-width:577px) {
    .res-img-wrap .tech-res {
        height: 422px !important;
    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    .banner-img-wrap .banner-sec-1 {
        margin-top: 2.4%;
    }

    .banner-img-wrap .mr-top {
        margin-top: 14px;
    }
}

.cntct-main img {
    box-shadow: none !important;
}

.cntct-main .img-part {
    width: auto;
}

.cntct-main .img-part img {
    width: 94px !important;
}

.cntct-main h6 {
    margin-top: 8px;
    padding: 5px 8px;
    background: #faf9fa;
    width: fit-content;
    border-radius: 5px;
    border: solid 1px #eee;
}

@media screen and (min-width:500px) and (max-width:769px) {
    .res-img-wrap .banner-sec-1 {
        width: 90% !important;
    }

    .res-img-wrap .banner-sec-2 {
        width: 90% !important;
    }
}

@media screen and (max-width:993px) {
    .top-margin {
        margin-top: 10px;
    }
}

@media screen and (min-width:1025px) and (max-width:1301px) {
    .res-img-wrap {
        gap: 18px !important;
    }
}

@media screen and (min-width:1200px) {}

.contact-banner img {
    filter: grayscale(100%) brightness(40%) contrast(160%) !important;
}

.partner-banner img {
    filter: grayscale(100%) brightness(40%) contrast(160%) !important;
}

.partner-banner .banner-cap img {
    filter: brightness(1000%) !important;
}

@media screen and (max-width:993px) {

    .contact-banner .banner-cap {
        position: absolute !important;
        top: 50% !important;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        text-align: center;
        z-index: 0;
        width: 90%;
    }

    .partner-banner .banner-cap {
        position: absolute !important;
        top: 50% !important;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        text-align: center;
        z-index: 0;
        width: 90%;
    }

    .img-reseller {
        width: 50% !important;
    }
}

.partner-banner h2 {
    margin-top: 20px;
}

@media screen and (max-width:480px) {
    .partner-banner h2 {
        font-size: 24px;
    }

    .img-reseller {
        width: 90% !important;
    }
}

@media screen and (max-width:415px) {
    .contact-banner h2 {
        font-size: 24px;
    }

    .contact-banner p {
        font-size: 14px;
    }

}

.partner-banner p {
    margin-bottom: 1.4rem;
}

@media screen and (max-width:350px) {
    .partner-banner p {
        font-size: 14px;
    }
}

@media screen and (max-width:993px) {
    .contact-banner {
        height: 300px !important;
    }
}

@media screen and (max-width:1200px) {
    .partner-banner {
        height: 500px !important;
    }
}

@media screen and (min-width:993px) {
    .img-reseller {
        width: 40% !important;
    }

    .partner-banner .banner-cap {
        width: 60%;
    }
}

@media screen and (max-width:415px) {
    .partner-banner {
        height: 520px !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {
    .partner-banner {
        height: 60vh;
    }

    .partner-banner .banner-cap {
        width: 80%;
    }
}

@media screen and (max-width: 500px) {
    .partner-banner {
        height: 570px !important;
    }
}

@media screen and (max-width: 415px) {
    .partner-banner {
        height: 600px !important;
    }
}

@media screen and (max-width:993px) {
    .dashboard-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .backoffice-col img {
        margin-top: 15px;
    }

    .backoffice-features-col {
        position: relative;
        width: 100%;
        margin-top: 0;
    }

    .bfc-2 {
        margin-top: 0;
    }

    .bfc-3 {
        right: 0;
    }

    .bfc-4 {
        margin-top: 0;
        right: 0;
    }

    .backoffice-col img {
        height: auto !important;
        width: 100%;
    }

    .backoffice-col {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .dashboard-wrap {
        grid-row: 2;
        margin-top: 5px;
    }

    .backoffice-col img {
        grid-row: 1;
    }

    .retial-pg-banner_img_02 {
        margin-top: -23px;
    }

    .retial-pg-banner_img_01 {
        margin-top: -23px;
    }

    .banner-retail {
        padding-top: 55px;
    }
}

@media screen and (max-width:576px) {
    .dashboard-wrap {
        gap: 13px;
    }

    .retial-pg-banner_img_01 {
        margin-top: 0px;
    }

    .banner-retail {
        padding-top: 60px;
    }
}

@media screen and (max-width:480px) {
    .dashboard-wrap {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media screen and (min-width:992px) and (max-width:1350px) {
    .bfc-3 {
        right: 11px;
    }

    .bfc-4 {
        right: 11px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .banner-retail .center-image {
        margin-top: -30px;
    }

    .pay-wrapper {
        width: 90% !important;
    }
}

@media screen and (min-width:992px) {
    .bg-wrap-round p {
        width: 60%;
        margin: auto;
    }
}

@media screen and (max-width:993px) {
    .pay-wrapper {
        width: 90% !important;
        margin-top: 40px !important;
    }
}

@media screen and (max-width:769px) {
    .pay-wrapper {
        width: 90% !important;
    }

    .pay-wrapper .product-box-col {
        height: 150px !important;
    }

    .pay-wrapper img {
        height: 60px;
    }

    .pay-wrapper h3 {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 415px) {
    .pay-wrapper .product-box-col {
        height: 135px !important;
    }
}

@media screen and (max-width: 350px) {
    .pay-wrapper {
        width: 95% !important;
    }

    .pay-wrapper img {
        height: 50px;
    }
}

@media screen and (min-width:769px) and (max-width:1025px) {
    .res-img-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .res-img-wrap .m-top {
        margin-top: 19px;
    }
}

@media screen and (min-width:992px) and (max-width:1025px) {
    .res-img-wrap .customers {
        padding: 80px 40px 80px 40px;
    }
}

@media screen and (max-width:576px) {
    .btm-pad-bone {
        padding-bottom: 20px;
    }
}

@media screen and (max-width:415px) {
    .btm-pad-bone {
        padding-bottom: 0px;
    }
}

@media screen and (min-width:576px) and (max-width:1300px) {
    .qk-step-col {
        margin: 0px;
    }
}

@media screen and (max-width:993px) {
    .center-img {
        display: flex;
        justify-content: center;
    }

    .business-list ul {
        float: none !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1300px) {
    .business-list .tabs .content .gadet-col {
        left: 40px;
        width: 46%;

    }
}

.transform-sec h3 {
    text-align: left !important;
}

.transform-sec p {
    text-align: left !important;
}

@media screen and (max-width:993px) {
    .transform-sec .mn-b-60 {
        margin-bottom: 40px !important;
    }

    .upi-center h4 {
        text-align: center;
    }

    .upi-center p {
        text-align: center;
    }
}

@media screen and (max-width:480px) {
    .btn-align span:after {
        top: 5px;
    }
}

@media screen and (max-width:993px) {
    .medium-top {
        margin-top: 10px;
    }

}

.c-form-col .btn {
    background: #2c2f36;
    color: #fff;
    height: 50px;
    width: 100%;
    border-radius: 10px;
}

#contactFormSucsses {
    display: none;
}


.pop-link-col-mobile .btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.r-pad-top {
    padding-top: 0px;
}


@media screen and (min-width: 320px) {
    #button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 67px;
        right: -6px;
        z-index: 1000;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        border: 2px solid #2c2f36;
        background-color: transparent;
        padding: 0;
        margin: 30px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    #button.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media screen and (min-width:992px) and (max-width:1450px) {
    #button {
        bottom: 113px;
        right: -5px;
    }
}

@media screen and (max-width:993px) {
    #button {
        bottom: 70px;
        right: -5px;
    }
}

@media screen and (max-width:870px) {
    #button {
        bottom: 112px;
        right: -5px;
    }
}

@media screen and (max-width: 768px) {
    #button {
        bottom: 64px;
        right: -5px;
    }
}

@media screen and (max-width: 415px) {
    #button {
        bottom: 64px;
        right: -25px;
    }

    .intercom-lightweight-app-launcher {
        right: 3px !important;
    }
}

.home-wrap-card {
    background: #fff;
    border: 1px solid #DFDFDF;
    border-radius: 8px;
    padding: 10px;
    width: 50px;
    height: 50px;
}


.home-wrap {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.home-wrap h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0px !important;
    padding-right: 30px;
}

.line-btm {
    border: 1px solid #ECECEC;
}

.transform-sec .card {
    border: none !important;
    padding: 30px;
}

@media screen and (max-width:993px) {
    .transform-sec .card {
        border: none !important;
        padding: 30px;
        padding-bottom: 30px;

    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .home-wrap h3 {
        font-size: 20px;
    }
}

.rect {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #f3f3f3;
    border-radius: 6px;
    text-align: center;
    line-height: 42px;
    box-sizing: border-box;
}

.dot {
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #000;
    border-radius: 50%;
    margin: 0;
    position: relative;
}

.logo-flex {
    display: flex;
    gap: 10px;
}


.rect_arrow {
    width: 40px;
    height: 40px;
    background: #0000;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.rect_arrow img {
    height: 10px;
}

.rect_arrow::after {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.logo-flex-wrap {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px 0px 0px;
    background-color: #fff;
}

.logo-flex img {
    height: 40px;
}

@media screen and (max-width:415px) {
    .transform-sec .card {
        padding: 15px;
    }

    .logo-flex {
        display: flex;
        gap: 5px;
    }

    .home-wrap h3 {
        font-size: 20px;
        font-weight: 500;
    }

    .logo-flex-wrap {
        padding: 10px 0px;
    }
}

@media screen and (max-width:769px) {
    .home-wrap-card {
        margin-bottom: 10px;

    }

    .home-wrap {
        display: flex;
        gap: 14px;
        width: 80%;
        align-items: center;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .logo-flex {
        display: flex;
        gap: 4px;
    }

}

.page-wrap-card img {
    width: 53px;
    height: 53px;
}

.page-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.page-wrap-card {
    border: 1px solid #EEEEEE;
    padding: 10px;
    border-radius: 10px;
}

.page-wrap h4 {
    font-weight: 400;
    font-size: 26px;

}

.integration .card {
    border-radius: 14px;
    padding: 30px;
}


.centr-txt {
    margin: auto;
}

.invoices .svg-wrap {
    background-color: #fff;
}

@media screen and (max-width:769px) {
    .top-pad-none {
        padding-top: 0px !important;
    }

}

@media screen and (max-width:577px) {
    .transform-sec .mn-b-60 {
        margin-bottom: 0px !important;
    }
}

.page-wrapper {
    height: 100% !important;
}

.page-wrapper img {
    transition: none !important;
}

.page-wrapper:hover img {
    transition: none !important;
    filter: none !important;
    scale: unset !important;
}

.page-wrap h4 {
    margin-bottom: 0px;
}

.read-more {
    float: right;
    margin-left: auto;
}

.read-more a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2c2f36;
    font-weight: 500;
}

.read-more a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 12px;
    background: url("https://cdn.lithospos.com/web/assets/images/theme/right-arrow-integ.webp") no-repeat center;
    border: 1px solid #ECECEC;
    border-radius: 6px;
    padding: 9px;

}

.payment-capability h3 {
    font-size: 30px;
}

.pay-list {
    display: flex;
    gap: 10px;
}

.pay-list svg {
    width: 18px;
    height: 18px;
}

.pay-list svg.starter {
    fill: #00BA00 !important;
    margin-top: 2.5px;

}

.payment-capability ul {
    padding-left: 0px !important;
}




.feature-integ {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 65%;
    justify-items: center;
    align-items: center;
    margin: auto;
}


.e-commerce {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 33%;
    justify-items: center;
    align-items: center;
    margin: auto;
}




@media screen and (max-width:1200px) {
    .feature-integ {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 80%;
        justify-items: center;
        align-items: center;
        margin: auto;
    }

}

@media screen and (max-width: 993px) {
    .feature-integ {
        width: 100%;

    }

    .e-commerce {

        width: 70%;
    }

}

@media screen and (max-width:577px) {
    .feature-integ {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
        justify-items: center;
        align-items: center;
        margin: auto;
    }

    .feature-integ {
        width: 100%;
    }

    .e-commerce {

        width: 100%;
    }

}




.country-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    justify-items: center;
    align-items: center;
    margin: auto;

}

@media screen and (max-width:993px) {
    .country-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
        justify-items: center;
        align-items: center;
        margin: auto;

    }
}

@media screen and (max-width:630px) {
    .country-items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
        justify-items: center;
        align-items: center;
        margin: auto;

    }
}

.top-pad-card {
    margin-top: 30px;
}

@media screen and (min-width:992px) {
    .gap-itm {
        column-gap: 40px !important;
        row-gap: 50px !important;
    }
}

@media screen and (max-width:993px) {

    .top-margn-content {
        margin-top: 30px;
    }
}

@media screen and (max-width:993px) {
    .top-pad {
        padding-top: 40px !important;
    }
}

.pricing-filtercol h4 {
    font-weight: 400;
    margin-bottom: 0px;
}






.mob-price-show .nav-pills-custom .nav-link {
    padding: 0 !important;
    position: relative;
}

.mob-price-show .nav-pills-custom .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFAF00;
    border-radius: 2px;

}


.mob-price-show .nav-pills-custom .nav-link.active {
    padding: 0 !important;
    background-color: #fff !important;
    color: #000 !important;
}

.mob-price-show .nav-pills-custom .nav-link {
    padding: 0 !important;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0px;
    padding: 10px 0;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider .card {
    flex: 0 0 100%;
    max-width: 80%;
    scroll-snap-align: center;
    border: 1px solid #ddd;
    border-radius: 0px;
    margin: auto;
    margin-top: 0px;
}

@media screen and (max-width:769px) {
    .mob-price-show {
        display: block !important;
    }

    .mob-hide {
        display: none !important;
    }
}

@media screen and (min-width:769px) {
    .mob-price-show {
        display: none !important;
    }

}

.price-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.number-input {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    width: 160px;
    max-width: 100%;
    height: 50px;
    background: #fff;
    padding: 8px;
}

.number-input input[type="number"] {
    flex: 1;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px;
    background: transparent;
    -moz-appearance: textfield;
}

.number-input input::-webkit-inner-spin-button,
.number-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.arrow-buttons {
    display: flex;
    gap: 6px;
}

.arrow-buttons button {
    background: #F5F5F5;
    border: 0px !important;
    color: #2c2f36;
    cursor: pointer;
    font-size: 18px;
    padding: 0 6px;
    border-radius: 5px;
    transition: background 0.2s, transform 0.1s;
}

.arrow-buttons .btn-increase,
.arrow-buttons .btn-decrease {
    width: 30px;
    height: 30px;
}

.number-input input {
    height: 40px;
}


@media (max-width: 480px) {
    .price-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .number-input {
        width: 100%;
    }

    .number-input input[type="number"] {
        font-size: 15px;
        padding: 10px;
    }

    .arrow-buttons button {
        font-size: 16px;

    }
}

.pricing-filtercol .nav-pills-custom {
    margin-top: 30px;
}

.price-info {
    text-align: left !important;
}


.RoiCal-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    margin-top: 30px;
    width: 300px;
}

.RoiCal-toggle {
    position: relative;
    width: 100%;
    height: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.RoiCal-toggle input {
    display: none;
}

.RoiCal-toggle label {
    display: flex;
    width: 213px;
    height: 50px;
    background: #959aa3;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    border: solid 1px #eee;
    color: #555;
    transition: background 0.3s ease;
}

.RoiCal-toggle label .toggle-text {
    flex: 1;
    text-align: center;
    line-height: 49px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.RoiCal-toggle label::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 8px);
    height: calc(100% - 8px);
    background: #FFFFFF;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: 1;
}

.RoiCal-toggle input:checked+label::before {
    left: calc(50% + 4px);
}

.RoiCal-toggle input:checked+label .monthly {
    color: #666666;
}

.RoiCal-toggle input:checked+label .yearly {
    color: #333;
}

.RoiCal-toggle input:checked+label .monthly {
    color: #fff;
}

.RoiCal-toggle .yearly {
    color: #fff;
}

.RoiCal-toggle input:checked+label .yearly {
    color: #333;
}



.pro {
    width: 100%;
    padding: 30px;
}

.pro-value {
    display: flex;
    gap: 10px;
}

.pro-value h6 {
    background-color: #ffac00;
    color: #000;
    margin-bottom: 0px;
    border-radius: 4px;
    height: 25px;
    font-size: 12px;
    padding: 6px 8px;
    font-weight: 700;
    position: relative;
    bottom: 0px;

}

.package-col .h5-sub {
    margin-top: 0px;

}

.lite {
    padding: 30px;
    height: 269px;
    background-size: 100% 100%;
}

.lite-list {
    padding: 30px;
    padding-top: 5px;
}

.lite-list h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

@media screen and (max-width:540px) {
    .nav-pills-custom {
        display: flex;
        width: 92% !important;
    }

    .nav-pills-custom .nav-link.active {
        padding: 17px 70px;
    }
}

@media screen and (max-width:500px) {
    .nav-pills-custom {
        display: flex;
        width: 94%;
        max-width: 445px;
    }

    .nav-pills-custom .nav-link.active {
        padding: 17px 62px;
    }

    .nav-pills-custom li {
        flex: 1;
        text-align: center;
        list-style: none;
        width: 233px;
    }
}

@media screen and (max-width: 460px) {
    .nav-pills-custom .nav-link {
        padding: 17px 59px !important;
    }
}

@media screen and (max-width: 450px) {
    .nav-pills-custom .nav-link {
        padding: 17px 50px !important;
    }
}

@media screen and (max-width: 415px) {
    .nav-pills-custom .nav-link {
        padding: 17px 47px !important;
    }
}

@media screen and (max-width: 400px) {
    .nav-pills-custom .nav-link {
        padding: 17px 44px !important;
    }
}

@media screen and (max-width: 380px) {
    .nav-pills-custom .nav-link {
        padding: 17px 41px !important;
    }
}

@media screen and (max-width: 360px) {
    .nav-pills-custom .nav-link {
        padding: 17px 38px !important;
    }
}

@media screen and (max-width: 350px) {
    .nav-pills-custom .nav-link {
        padding: 17px 34px !important;
    }
}

@media screen and (max-width: 340px) {
    .nav-pills-custom .nav-link {
        padding: 11px 29px !important;
    }
}

@media screen and (max-width: 330px) {
    .nav-pills-custom .nav-link {
        padding: 17px 33px !important;
    }
}







.btm-line {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}


.pro {
    height: 269px;
}

@media screen and (max-width:1200px) {
    .lite-list {
        font-size: 13px;
    }
}

@media screen and (max-width:993px) {
    .number-input {
        width: 100%;
    }

    .pricing-filtercol select {

        margin-top: 0px;
    }
}

@media screen and (max-width:769px) {
    .price-filter-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;


    }

    .price-flex {
        width: 100%;
    }
}




@media screen and (max-width:415px) {
    .lite-list {
        padding: 20px;
    }

    .pro {
        padding: 20px;
    }

    .lite {
        padding: 20px;
    }
}

@media screen and (min-width:1300px) {
    .e-para {
        margin-top: 43px;
    }
}

.mob-price-show .border-none {
    border-left: 0px solid;
    border-right: 0px solid;
}

.price-wrap-flex {
    display: flex;
    gap: 20px;
    width: 100%;
}

@media screen and (max-width:993px) {
    .plan-chart .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .price-info {
        margin-top: 0px;
    }
}

.transform-sec .card {
    height: 100%;
}

@media screen and (max-width: 415px) {
    .nav-pills-custom {
        width: 81% !important;
        box-shadow: none;
    }

    .nav-pills-custom .nav-link {
        padding: 11px 45px !important;
    }

    .nav-pills-custom {
        padding: 15px 10px;
    }

    .nav-pills-custom .nav-link {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    .nav-pills-custom .nav-link {
        padding: 11px 39px !important;
    }
}

@media screen and (max-width: 380px) {
    .nav-pills-custom .nav-link {
        padding: 11px 36px !important;
    }
}

@media screen and (max-width: 360px) {
    .nav-pills-custom .nav-link {
        padding: 11px 34px !important;
    }
}

@media screen and (max-width: 350px) {
    .nav-pills-custom .nav-link {
        padding: 11px 32px !important;
    }
}

@media screen and (max-width: 330px) {
    .nav-pills-custom .nav-link {
        padding: 11px 29px !important;
    }
}

@media screen and (min-width:700px) and (max-width:993px) {
    .price-filter-col {
        width: 100% !important;
        max-width: 550px;
    }
}

@media screen and (min-width:500px) and (max-width:700px) {
    .price-filter-col {
        width: 100% !important;
        max-width: 430px;
    }
}

@media screen and (max-width:500px) {
    .price-info {
        max-width: 320px;
    }

    .price-wrap-flex {
        gap: 15px;
    }
}


@media (max-width: 992px) {
    .tab-content {
        display: none;
    }
}

.accordion-description {
    font-size: 15px;
}


.accordion-button::after {
    display: inline-block !important;
    content: "+" !important;
    font-size: 20px;
    margin-left: auto;
    transition: transform 0.2s ease;
}


.accordion-button.collapsed::after {
    content: "+" !important;
}


.accordian-sec .accordion-button:not(.collapsed)::after {
    content: "−" !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
}


.accordian-sec .accordion-button::after {
    background-image: none;
    content: "+";
    height: none !important;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
}

.accordian-sec button {
    font-weight: 600;
}

.accordian-sec .accordion-button:not(.collapsed) {

    color: #2c2f36;
}

.overlay-img-main-top img {
    object-fit: contain !important;
}

.image-container {
    background: #F7F8F8;
    border-radius: 16px;
}

.image-container-reverse {
    position: relative;

    height: 100%;
    display: grid;
    grid-template-rows: 60% 40% !important;
}

.image-container img {
    width: 100%;
    object-fit: cover;
    display: block;

}

.overlay-img-main img {
    object-fit: contain;
    margin: auto;
}

.image-container-reverse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.background-img {
    display: block;
    height: 400px;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    position: relative;
    bottom: 0px;

}

@media (max-width: 768px) {
    .overlay-img {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .overlay-img {
        width: 50%;
    }
}

.accordian-sec {
    background: #F7F8F8;
    background-size: 100% 100%;
}

.accordian-sec .accordian-sec-1 {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    height: 100%;

}

.accordian-sec .accordian-sec-2 {
    background-color: #fff;
    padding: 30px;
    height: 100%;
    border-radius: 16px;
}

.accordian-sec .accordion-collapse {
    transition: height 0.2s ease-in-out, opacity 0.15s ease-in-out;
    overflow: hidden;
}


.accordian-sec .accordion-collapse.collapsing {
    height: auto !important;
    opacity: 0.8;
    transition: height 0.2s ease-in-out, opacity 0.15s ease-in-out;
}

.accordian-sec .accordion-collapse.show {
    opacity: 1;
}

/* .accordian-sec .accordion-body {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
} */

/* .accordian-sec .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 0px;
} */

/* @media screen and (min-width:992px){
    .accordian-sec .accordion-body {
    height: 90px;
}
} */

@media screen and (max-width:993px) {
    .accordian-sec .accordion-body {
        opacity: 0;
        transform: translateY(-5px);
        transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    }

    .accordian-sec .accordion-collapse.show .accordion-body {
        opacity: 1;
        transform: translateY(0);
        padding-bottom: 0px;
    }

    .accordian-sec .accordion-collapse.show .accordion-body {
        padding-top: 0px !important;
    }

}

.accordian-sec .accordion-item {
    will-change: height, opacity;
}

.accordian-sec .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
    border: none !important;
}

.accordian-sec .accordion-button {
    background-color: transparent !important;
    border: none !important;
}

.accordian-sec .accordion-button::after {
    display: none;
}

.accordian-sec .accordion-button .icon {
    display: inline-block;
    font-size: 20px;
    margin-left: auto;
    transition: transform 0.3s ease, content 0.3s ease;
}

.accordian-sec .accordion-button:not(.collapsed) .icon {
    transform: rotate(180deg);
}


.accordian-sec .accordion-button .icon::after {
    content: "+";
}

.accordian-sec .accordion-button:not(.collapsed) .icon::after {
    content: "−";
    transition: content 0.3s ease;
}

.accordian-sec .accordion-button:not(.collapsed)::after {
    transform: none !important;
}


.overlay-img-main-top {
    background: #F7F8F8;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 100% 100%;
}


.background-img-btm {
    display: block;
    height: auto;
    width: 100%;
    border-radius: 16px;
    position: relative;
    bottom: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;

}

.overlay-img-main-top img {
    width: 100%;
}


.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
    color: #2c2f36;
    font-weight: 600;
    font-size: 14px;
}


.learn-more-btn .arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    font-weight: 600;
}

.learn-more-btn:hover .arrow {
    transform: translateX(5px);
}

.accordion-title,
.accordion-paragraph {
    display: none;
}

.pill-retail {
    background: #F7F8F8;
}

.pill-retail .nav-pills .nav-link {
    background-color: #fff;
    padding: 15px;
    color: #333;
    text-align: left;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 0;

}

@media screen and (max-width:480px) {
    .accordion-content {
        padding: 15px;
    }
}

.pill-retail ul {
    list-style: none;
}

.pill-retail #tabContent {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
}

.retail-sec-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    /* width: 90%; */
}

.retail-sec-img {
    background: #F7F8F8;
    border: 1px solid #EEEEEE;
    padding: 12px;
    border-radius: 6px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retail-sec-img img {
    width: 30px;

}


.retail-sec-para h5 {
    margin-bottom: 5px;
}

.retail-img-wrapper {
    background: #F7F8F8;
    border-radius: 8px;
}

.retail-img-wrapper img {
    width: 100%;
    border-radius: 8px;
}

.pill-retail .nav-pills {

    margin: auto;
    padding-left: 0px;
}

.pill-retail .list-tab {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100% !important;
}

.pill-retail .tab-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.pill-retail .nav-item:not(:last-child) {
    /* border-bottom: 1px solid #EEEEEE;
    padding-bottom: 10px; */
    margin-bottom: 10px;
}

.pill-retail .accordion-content {
    display: none;
}

.pill-retail .accordion-content.open {
    display: block;
}

.retail-sec-para p {
    color: #666;
    font-weight: 300;
}


.pill-retail h4 {
    font-size: 24px !important;
    margin-bottom: 30px;
}

.retail-sec-para p {
    margin-bottom: 0 !important;
}

@media screen and (max-width:577px) {
    .pill-retail .list-tab {
        padding: 15px;
    }

    .pill-retail h4 {
        font-size: 15px !important;
        margin-top: 20px;
    }
}

@media screen and (max-width:415px) {
    .pill-retail .list-tab {
        padding: 10px;
    }

    .retail-sec-img img {
        width: 35px;
    }

    .retail-sec-img {
        background: #F7F8F8;
        border: 1px solid #EEEEEE;
        padding: 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width:350px) {
    .retail-sec-para p {
        font-size: 14px;
    }
}

.learn-more-btn {
    margin-bottom: 20px;
}

.accordian-sec .tab-content {
    background: #F7F8F8;
    border-radius: 16px;
}

.accordian-sec .image-container img {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.nav-style .image-container img {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

@media screen and (max-width:577px) {
    .image-container .background-img {
        display: none;
    }

    .image-container .background-img-btm {
        display: none;
    }

    .image-container-reverse .background-img {
        display: none;
    }

    .image-container-reverse .background-img-btm {
        display: none;
    }

    .accordian-sec .accordian-sec-1 {
        padding: 20px;
    }
}

.accordian-sec .accordion-button {
    padding-left: 0px;
    padding-right: 0px;
    padding: 0px;
}

.accordian-sec .accordion-body {
    padding-left: 0px;
    padding-right: 0px;
}

@media screen and (max-width:415px) {
    .accordian-sec button {
        font-size: 16px;
    }
}



.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.accordion-content.open {
    opacity: 1;
}

.accordian-sec .accordion-button::after {
    width: auto;
}

@media screen and (max-width:415px) {
    .retail-sec-para p {
        display: none;
    }
}

@media screen and (max-width:480px) {
    .retail-sec-para h5 {

        font-size: 16px;


    }

    .retail-sec-img img {
        width: auto;
        height: 38px;
    }
}

.page-wrapper img {
    border-radius: 6px;
}


@media screen and (max-width:993px) {
    .home-wrap h3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 992px) and (max-width:1200px) {
    .gap-itm {
        column-gap: 20px !important;
        row-gap: 30px !important;
    }
}

@media screen and (max-width:769px) {
    .transform-sec .card {
        padding: 20px;

    }

    .home-wrap {
        width: 100%;
    }

    .gap-itm {
        gap: 30px;
    }

    .logo-flex {
        gap: 5px;
    }

}

@media screen and (max-width:993px) {
    .price-table-wrapper .tab-content {
        display: block !important;
    }

    .logo-flex {
        display: flex;
        gap: 6px;
    }
}

@media screen and (max-width:415px) {
    .page-wrap {
        gap: 10px;
    }

    .page-wrap h4 {
        font-weight: 400;
        font-size: 20px;
    }

    .integration .card {
        border-radius: 14px;
        padding: 20px;
    }

    .box-shadow-col {
        padding: 20px;
    }

    .payment-capability h3 {
        font-size: 25px;
    }
}

@media screen and (max-width:768px) {
    .top-pad {
        padding-top: 0px !important;
    }
}

@media screen and (max-width:850px) {
    .logo-flex img {
        height: 30px;
        width: 30px;
    }

    .rect {
        width: 30px;
        height: 30px;
    }

    .rect_arrow {
        width: 30px;
        height: 30px;
    }
}


@media screen and (max-width: 993px) {
    .accordian-sec .accordion-body {
        height: 926px;
        max-height: 100%;

    }

    .p-btm {
        padding-bottom: 10px !important;
    }
}

@media screen and (max-width: 768px) {
    .accordian-sec .accordion-body {
        height: 885px;
        max-height: 100%;
    }
}

@media screen and (max-width:630px) {
    .accordian-sec .accordion-body {
        height: 850px;
        max-height: 100%;
    }
}

@media screen and (max-width: 577px) {
    .accordian-sec .accordion-body {
        height: 588px;
        max-height: 100%;
    }

    .overlay-img-main {

        padding: 30px;
    }

    .overlay-img-main img {

        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .accordian-sec .accordion-body {
        height: 512px;
        max-height: 100%;
    }
}

@media screen and (max-width: 415px) {
    .accordian-sec .accordion-body {
        height: 446px;
        max-height: 100%;
    }
}

@media screen and (max-width: 390px) {
    .accordian-sec .accordion-body {
        height: 420px;
        max-height: 100%;
    }
}

@media screen and (max-width: 350px) {
    .accordian-sec .accordion-body {
        height: 400px;
        max-height: 100%;
    }
}

@media screen and (min-width:1200px) {
    .high-banner p {
        font-size: 24px;
    }
}

.RoiCal-toggle label {
    z-index: 0;
}

@media screen and (min-width:768px) and (max-width:993px) {
    .package-container .col-md-4 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .lite {
        padding: 20px;
    }

    .lite-list {
        padding: 20px;
    }

    .pro {

        padding: 20px;
    }

}

.abt-para p {
    margin-bottom: 0px !important;
}

.overlay-img-main img {
    object-fit: contain;
    width: 65%;
}


@media screen and (min-width:576px) {
    .overlay-img-main {
        padding: 30px !important;
    }
}

@media screen and (max-width:577px) {
    .image-container {
        grid-template-rows: auto !important;
    }

    .image-container-reverse {
        grid-template-rows: auto !important;
    }
}


.wrapper-featur {
    position: relative;
}

.left-border {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(60%) scaleX(0);
    width: 6px;
    height: 45px;
    background-color: #21D45A;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    transform-origin: left;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1;
}

.hover-card .box-shadow-col:hover .left-border {
    transform: translateY(60%) scaleX(1);
    opacity: 1;
}

.hover-card .box-shadow-col:hover img {
    transition: none;
    filter: none;
    scale: none;
}

.tick-wrap {
    border: 2px solid #21D45A;
    border-radius: 6px;
    padding: 15px;
    height: 45px;
    display: flex;
    width: 45px;
    align-items: center;
    justify-content: center;
}

.tick-wrap img {
    height: 15px;
}

.wrapper-featur {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.wrapper-featur h5 {
    margin-bottom: 5px !important;
}

@media screen and (max-width:1200px) {
    .tick-wrap {
        border: 2px solid #21D45A;
        padding: 15px;
        height: 45px;
        display: flex;
        align-items: center;
    }

}



@media screen and (max-width:769px) {
    .box-shadow-col {
        padding: 20px;
    }

    .integration .card {
        padding: 20px;
    }

    .hover-card .tick-wrap::before {
        content: "";
        position: absolute;

        left: -65%;
        top: 37%;
        transform: translateY(-37%);
        height: 45px;
        width: 7px;
        background-color: #21D45A;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .left-border {
        position: absolute;
        left: 0;
        top: 37%;
        transform: translateY(37%) scaleX(0);
        width: 6px;
        height: 45px;
        background-color: #21D45A;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        transform-origin: left;
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 1;
    }

    .hover-card .box-shadow-col:hover .left-border {
        transform: translateY(40%) scaleX(1);
        opacity: 1;
    }

}

.wrap-overlay {
    width: 100%;
    height: 40%;
}

.overlay-img-main {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-img-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (max-width:993px) {
    .accordian-sec-2 {
        display: none;
    }
}


@media screen and (min-width:992px) and (max-width:1200px) {
    .overlay-img-main img {

        width: 100%;
    }
}


.accordian-icon {
    height: 70px;
    margin-bottom: 10px;
}

.bg-white {
    background-color: #ffff;

}

.prdct-part .accordian-sec-2 .tab-content {
    background-color: #fff !important;
    height: 100%;
}

.prdct-part .accordian-sec-2 {
    height: 100%;
    background: #f7f8f8;
    padding: 30px;

}

.prdct-part .accordian-sec-1 {
    padding-top: 0px;
}

.prdct-part .retail-img-wrapper {
    background-color: transparent;
    padding: 0px;
}

.prdct-part .lite-bg {
    background: #f7f8f8;
    padding: 25px;
    border-radius: 16px;
}

.img-home img {
    width: 100%;


}

.card {
    color: #2c2f36 !important;
}

.prdct-part .tab-content {
    background-color: transparent;
}

.prdct-part .tab-content {
    padding: 0px;
}

@media screen and (max-width:993px) {
    .pill-retail h4 {
        display: none !important;
    }

    .prdct-part .tab-pane h5 {
        display: none !important;
    }
}

@media screen and (max-width:993px) {
    .accordian-sec .row>* {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

}

@media screen and (max-width:993px) {
    .prdct-part .nav-pills .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media screen and (max-width:350px) {
    .bg-wrap-round .btn {
        padding: 10px;
    }
}

.bg-dark {
    background-color: #2c2f36 !important;
}


.prdct-part h5 {
    font-size: 1rem !important;
}






.signup-colm {
    padding: 60px 0 !important;
}



.signup-form-col-container {
    width: 100%;
    position: relative;
}

.signup-form-col {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 50px 60px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 0;
    -webkit-box-shadow: 0px 0px 101px -36px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 101px -36px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 101px -36px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.signup-form-col h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.signup-form-col p {
    padding: 0 15px;
    text-align: center;
    margin: 0 0 15px 0;
    line-height: 1.3em;
}

.signup-form-col .seperater-bdr {
    width: 50%;
    height: 3px;
    background: #ff9200;
    margin: auto;
}

.signup-form-col .form-control {
    height: calc(2.5em + 0.75rem + 2px) !important;
    border-color: #e1e4e7;
}

.signup-form-col .btn {
    height: calc(2.5em + 0.75rem + 2px) !important;
    border: none;
    color: #fff;
}

.signup-head h1 {
    font-size: 24px;
    text-align: center;
    padding: 0 12%;
}

.signup-form-col h5 {
    font-size: 20px;
    color: #ff9200;
    margin-bottom: 9px;
}


.verify-email-graphics img {
    margin-left: 59px;
    margin-bottom: 30px;
    width: 50%;
}

.sign-right-col ul li {
    list-style: none !important;
    padding: 3px 0;
}

.sign-right-col ul {
    padding-left: 0px !important;
}



.signup-fr {
    display: flex;
    align-items: center;
}

.sign-right-col {
    padding: 20px 0px 20px 60px;
}

@media screen and (max-width:993px) {
    .sign-right-col {
        padding-left: 0px !important;
    }
}

@media screen and (max-width:577px) {
    .signup-form-col {

        padding: 20px 20px;
    }
}

.verify-email a {
    color: #2c2f36 !important;
}

.verify-email b {
    color: #FFA300;
}

.accordion__titlebox_active {
    background-color: #fff !important;
}




@media screen and (max-width:993px) {
    .pill-retail .accordion-content.open {
        max-height: 100% !important;
        height: 670px !important;

    }

    .prdct-part .accordion-content.open {
        max-height: 100% !important;
        height: 715px !important;
    }

    .prdct-part .lite-bg {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    .pill-retail .accordion-content.open {
        max-height: 100% !important;
        height: 636px !important;
    }

    .prdct-part .accordion-content.open {
        max-height: 100% !important;
        height: 663px !important;
    }
}

@media screen and (max-width: 577px) {
    .pill-retail .accordion-content.open {
        max-height: 100% !important;
        height: 612px !important;
    }

    .prdct-part .accordion-content.open {
        max-height: 100% !important;
        height: 641px !important;
    }
}

@media screen and (max-width: 480px) {
    .pill-retail .accordion-content.open {
        padding-left: 0px;
        padding-right: 0px;
    }
}


@media screen and (max-width: 415px) {
    .prdct-part .accordion-content.open {
        max-height: 100% !important;
        height: 597px !important;
    }
}

@media screen and (max-width:577px) {
    .mob-hidden {
        overflow-x: hidden;
    }

    .sticky-top-pricing {
        top: 0px !important;
    }

    .table-container {
        overflow-x: scroll;

    }

}

.img-logo {
    height: 65%;
}

@media screen and (min-width:661px) and (max-width:993px) {
    .price-table-wrapper table th .heading {
        font-size: 18px;
    }
}


.page-content {
    overflow-x: hidden !important;
}

.controls select {
    height: 50px;
    font-weight: normal;
    padding: 0px 18px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(https://cdn.lithospos.com/web/assets/images/theme/dropdown-icon.svg) no-repeat right 1rem center;
    opacity: 0.9 !important;
}


.RoiCal-toggle .best-value {
    position: absolute;
    top: -5px;
    right: 44px;
    background-color: #ffac00;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px 1px 6px;
    border-radius: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #2c2f36;
}

.delivery-section .read-more {
    float: left !important;
}

@media screen and (max-width:661px) {
    tfoot button {
        width: 100%;
        display: block;
    }

    tfoot button {
        padding: 8px 3px !important;
    }

    tfoot button {
        font-size: 10px;
    }
}

@media screen and (min-width:661px) {
    tfoot button {
        width: 100%;
        display: none;
    }
}

@media screen and (max-width:1024px) {
    .menu-mob {
        display: block;
    }
}

@media screen and (min-width:1024px) {
    .menu-mob {
        display: none;
    }
}

.select-flex {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-flex select {
    height: 50px;
    font-weight: normal;
    color: #2c2f36;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    padding: 4px 8px;
    width: 100%;
    cursor: pointer;
    margin-top: 11px;

}


.select-flex::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 55%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #2c2f36;
   background: url(https://cdn.lithospos.com/web/assets/images/theme/arrow-down-sign-to-navigate.webp) no-repeat center / contain;

    pointer-events: none;
}


.web-col .select-flex::after {
    display: none;
}


@media screen and (min-width:1200px) {
    header .menu-inner {
        padding-left: 0 !important;
    }
}

@media screen and (min-width:1025px) and (max-width:1200px) {
    header .menu ul {
        padding-left: 40px;
    }

    header .menu-item {
        padding-right: 7px;
    }
}

.section-dwnld .box-shadow-col {
    height: 100%;
}

.app-lithos .box-shadow-col:hover img {
    transition: none !important;
    filter: none !important;
    transform: none !important;
}

.section-dwnld .box-shadow-col:hover img {
    transition: none !important;
    filter: none !important;
    transform: none !important;
}

@media screen and (max-width:993px) {
    .dwnld-icon {
        width: 88px;
        height: 88px;
    }
}

.app-lithos .box-shadow-col img {
    width: 80px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.dwnld-icon {
    border-radius: 10px;
}

.list-count {
    background: #f7f8f8;
    border-radius: 6px;
    padding: 4px 8px;
    width: fit-content;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #2c2f36;
    border: solid 1px #eee;
}

.lite-list {
    margin-top: 30px;
}

@media screen and (max-width:993px) {
    .lite-list {
        margin-top: 0px;
    }
}

@media screen and (max-width:769px) {
    .lite-list {
        margin-top: 18px;
    }
}

.top-none {
    margin-top: 0px;
}

.section-dwnld h5 {
    margin-bottom: 5px;
}

.app-lithos p {
    color: #2c2f36;
}

.app-lithos h5 {
    margin-bottom: 5px;
}

.opacity-count {
    visibility: hidden;
}

.lite-list h5 {
    margin-top: 25px;
}

@media screen and (max-width:769px) {
    .mob-btn {
        margin-top: 12% !important;
    }
}

@media screen and (max-width: 430px) {
    .mob-btn {
        margin-top: 5% !important;
    }
}

.resend-error {
    background: #fbeded;
    border: dotted 1px #dfb1b1;
    padding: 10px 20px !important;
    border-radius: 5px;
    width: fit-content;
    margin: auto !important;
}

.resend-done {
    background: #edfbf0;
    border: dotted 1px #B1DFBB;
    padding: 10px 20px !important;
    border-radius: 5px;
    width: fit-content;
    margin: auto !important;
}

@media screen and (max-width:415px) {
    .feature-wrap div h5 {
        font-size: 20px;
    }
}

@media screen and (max-width:373px) {
    .operations h2 {
        font-size: 23px;
    }

    .high-banner h1 {
        font-size: 26px;
    }

}

@media screen and (max-width:357px) {
    .btn-dark-retail .btn {
        padding: 12px 12px;
        font-size: 14px;
    }

    .btn-retail .btn {
        padding: 12px 12px;
        font-size: 14px;
    }

    .btn-retail .arr-button span:after {
        top: 6px;
    }

    .btn-dark-retail .arr-button span:after {
        top: 6px;
    }
}

@media screen and (max-width: 345px) {
    .operations h2 {
        font-size: 20px;
    }

}



@media screen and (max-width:380px) {
    .web-col .c-form-col {
        padding: 15px;
    }

    .apps-img {
        height: 266px !important;
        width: 100%;
    }

    .place-img-left {
        height: 266px !important;
    }
}

@media screen and (max-width:350px) {

    .apps-img {
        height: 242px !important;
        width: 100%;
    }

    .place-img-left {
        height: 242px !important;
    }
}

@media screen and (max-width: 480px) {
    .top-margn-content {
        margin-top: 0;
    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    .high-banner .txt-wrap {
        padding-left: 0px !important;
    }
}

@media screen and (max-width:415px) {
    .apps-img img {
        width: 92%;
    }

    .apps-img {
        height: 280px;
        width: 100%;
    }

    .place-img-left {

        height: 280px;
    }

    .place-img-left img {
        width: 92%;
    }
}

@media screen and (min-width:992px) and (max-width:1020px) {
    .transform-sec .card {
        padding: 20px;
    }
}

@media screen and (min-width:1025px) {
    header .menu-link {
        padding: 20px 0;
    }
}

.accordian-sec .accordion-item .accordion-button:not(.collapsed) {
    color: #000 !important;
    padding-bottom: 0px !important;
}

.accordian-sec .accordion-item {
    border-bottom: 1px solid #eeeeee !important;
}

.accordian-sec .accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.accordian-sec .accordion-item:last-child {
    border-bottom: none !important;
}

.pill-retail .plus-icon {
    display: none;
}

.accordion-flush>.accordion-item>.accordion-header .accordion-button,
.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
    margin: 16px 0px 8px 0px;
}

.pill-retail .nav-pills .nav-link.active {
    background: #F7F8F8;
    border-radius: 6px;
    margin-bottom: 10px;
}

.pill-retail .nav-pills .nav-link.active .retail-sec-img {
    background-color: #fff;
}

.home-features .margn-none-btm {
    margin-bottom: 0px !important;
}

@media screen and (min-width:1300px) {
    .features1 h5 {
        white-space: nowrap;
    }
}

.logo-height {
    height: 20px !important;
}

.app-logo-wrap {
    display: grid;
    justify-content: center;
    width: 200px;
    margin: auto;
}



.harware-pg .sticky-top {
    margin-top: 12px;
}

.harware-pg .sticky-top ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

.harware-pg .sticky-top .stic {
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    margin: 0;
}

.harware-pg.sticky-top a {
    color: #666 !important;
}

.harware-pg .hardwar {
    border: solid 1px #eee;
    margin: 15px 0;
    background: #fff;
    padding: 0px 0 20px 0;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.0);
    transition: 0.8s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
}

.harware-pg .product-slick .hardwar {
    padding: 0px 0 0px 0;
}

.hardwar-content-col {
    padding: 20px 30px !important;
    background: #fff;
}

.hardware-col h2 {
    font-size: 20px !important;
    font-weight: bold;
}

.harware-pg .arrow {
    font-size: 13px;
    font-weight: bold;
}

.hardwar-content-col a {
    padding: 15px;
    border: solid 1px #ccc;
    border-radius: 4px;
    margin-top: 15px;
    line-height: 4em;
    color: #666;
    background: #fff;
    transition: 0.8s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
}

.clr-hardware p {
    color: #fff;
}

.hardware-details-brdcrbs {
    background: #eef1f6;
    border-radius: 4px;
    margin: 45px 0 0 0;
    padding: 20px 25px;
}

.hardware-details-brdcrbs a {
    color: #2c2f36;
}

.hardware-details-brdcrbs img {
    width: 16px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 15px;
    opacity: 0.5;
    transition: 0.8s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
}

.hardware-details-brdcrbs span {
    color: #000;
    font-size: 18px;
}

.gallery {
    background-color: #ccc;
    position: relative;
    text-align: center;
    width: 100%;
}

.hardware-details {
    padding-left: 50px !important;
}

.hardware-details ul {
    padding: 0;
    margin: 0 0 30px 0;
}

.hardware-details ul li {
    list-style: none;
}

.hardware-details ul li::before {
    content: "\2022";
    color: #2c2f36;
    display: inline-block;
    width: 1.5em;
    margin-left: 0em;
    line-height: 1.9em;
}

.harware-pg .product-slick .hardwar {
    padding: 0px 0 0px 0;
}

.harware-pg .product-slick img {
    width: 100% !important;
}

.hardwar-content-col {
    padding: 20px 30px !important;
    background: #fff;
}

.harware-pg .product-slick h2 {
    font-size: 20px;
}

.harware-pg .slick-initialized .slick-slide {
    display: block;
}

.harware-pg .product-slick {
    padding: 15px;
}

.hardwar:hover {
    -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
}

.harware-pg .sticky-top .active {
    background-color: #2c2f36 !important;
    color: #fff !important;
}

.harware-pg .sticky-top .stic {
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    margin: 0;
    list-style: none;
    color: #2c2f36;
    font-weight: 600;
}

.harware-pg .sticky-top {
    position: relative !important;
}

.harware-pg .sticky-top ul li {
    padding: 15px;
    margin: 0;
    border-bottom: solid 1px #eef1f6;
    text-align: left;
    cursor: pointer;
}

.harware-pg .collapse:not(.show) {
    display: block !important;
}

.harware-pg .navbar {
    height: auto !important;
}

@media screen and (max-width:993px) {
    .harware-pg .sticky-top .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}








.showtab {
    display: flex;

}

.showtab img {
    width: 100%;
}

.hardwrae-tab .tabs {
    display: flex;
}

.hardwrae-tab .tabs li {
    display: flex;
    cursor: pointer;
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.hardwrae-tab.tabs li img {
    width: 100%;
}

.hardwrae-tab .active {
    opacity: 1 !important;
}

.hardwrae-tab .inActive {
    opacity: .3;
}

.hardwrae-tab .tabs {
    padding: 1rem 0 1rem 0;
}

.hardware-details span {
    background: #666;
    padding: 5px 10px;
    color: #fff;
    line-height: 5em;
}

.bg-sunmi {
    background: #666;
    padding: 5px 10px;
    color: #fff;
    line-height: 5em;
}

.hardwrae-tab h3 {
    margin-bottom: 0px;
}

.hardware-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 20px;
}

.hardware-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media screen and (max-width:993px) {
    .hardware-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width:577px) {
    .hardware-flex {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none !important;
    }

    .hardware-flex .box-shadow-col {
        width: 350px;
    }
}

@media screen and (max-width:415px) {
    .hardware-flex .box-shadow-col {
        width: 300px;
    }
}

@media screen and (max-width:350px) {
    .hardware-flex .box-shadow-col {
        width: 250px;
    }
}

.hardware-flex-img img {
    width: 100%;
}

.hardware-flex .box-shadow-col:hover img {
    filter: none !important;
    transition: none !important;
    scale: none !important;
}

.hardware-wrapper .box-shadow-col {
    padding: 0px;
}

.hardware-wrapper .box-shadow-col:hover img {
    filter: none !important;
    transition: none !important;
    scale: none !important;
}

.hardware-flex .box-shadow-col {
    padding: 0px;
}

.hardware-sec-content {
    padding: 30px;
}

.hardware-wrapper p {
    margin-bottom: 16px;
}

.hardwrae-tab ul {
    padding-left: 9px;
}

.hardware-flex .box-shadow-col img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hardware-wrapper .box-shadow-col img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hardwrae-tab {
    padding-bottom: 50px;

}

@media screen and (min-width:992px) {
    .h-content {
        padding-left: 40px;
    }

}

@media screen and (max-width:768px) {
    .hardware-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .hardware-sec-content {
        padding: 20px;
    }
}

.harware-pg .select-flex {
    float: right;
    margin-left: auto;
    width: 280px !important;
    margin-bottom: 20px !important;


}

.harware-pg .select-flex select {
    border: 1px solid #dadada !important;
    width: 100% !important;
    background-color: #fff !important;
}

/* .harware-pg .select-flex::after {
    content: "";
    position: absolute;
    right: 1.9rem;
    top: 59%;
} */

.hardware-flex p {
    color: #2c2f36;
}

.hardware-sec-content .btn {
    font-size: 14px;
    border: 1px solid #dddd !important;
    padding: 8px 18px;
}

.hardware-sec-content .arr-button span:after {

    top: 5.6px;

}

select {
    padding: 4px 14.5px !important;
}

.showtabimg {
    border-radius: 10px;
}

.hardwrae-tab .tabs li img {
    border-radius: 10px;
}

.c-form-col .select-flex select {
    margin-top: 0px;
}

.c-form-col .select-flex::after {
    top: 52% !important;
}

@media screen and (max-width:577px) {
    .hardware-col {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}


.pos-banner {
    height: 965px;
    border-radius: 0px;
}

@media screen and (max-width:1500px) {
    .pos-banner {
        height: 929px;
        border-radius: 0px;
    }
}

@media screen and (max-width: 1300px) {
    .pos-banner {
        height: 875px;
        border-radius: 0px;
    }
}

@media screen and (max-width: 1200px) {
    .pos-banner {
        height: 763px;
        border-radius: 0px;
    }
}

@media screen and (max-width: 993px) {
    .pos-banner {
        height: 672px !important;
    }

}

@media screen and (max-width: 900px) {
    .pos-banner {
        height: 627px !important;
    }
}

@media screen and (max-width: 800px) {
    .pos-banner {
        height: 580px !important;
    }
}

@media screen and (max-width: 715px) {
    .pos-banner {
        height: 561px !important;
    }
}

@media screen and (max-width: 670px) {
    .pos-banner {
        height: 532px !important;
    }
}

@media screen and (max-width: 577px) {
    .pos-banner {
        height: 577px !important;
    }
}

@media screen and (max-width: 500px) {
    .pos-banner {
        height: 543px !important;
    }
}

@media screen and (max-width: 480px) {
    .pos-banner {
        height: 564px !important;
    }
}

@media screen and (max-width: 415px) {
    .pos-banner {
        height: 470px !important;
    }
}

@media screen and (max-width: 380px) {
    .pos-banner {
        height: 447px !important;
    }
}

@media screen and (max-width: 350px) {
    .pos-banner {
        height: 433px !important;
    }
}

@media screen and (min-width:1500px) {
    .pos-banner .images-pos {
        height: 629px !important;
    }
}

.pos-pg {
    margin-bottom: 0px;
}

.pos-ftr h4 {
    font-size: 24px;
}

@media screen and (max-width:577px) {
    .pos-ftr h4 {
        font-size: 20px !important;
    }
}

@media screen and (max-width:993px) {
    .home-features-grid {
        margin-bottom: 10px;
    }

}

.country-select-wrapper {
    position: relative;
}

#countryFlag {
    height: 15px;
    position: absolute;
    left: 14px;
    top: 17px;
    width: 24px;
    margin-left: 1px;
}

select {
    padding: 4px 0 4px 44px !important;
    font-size: 13px;
}


@media screen and (min-width:576px) and (max-width:993px) {
    .pos-ftr .mn-b-60 {
        margin-bottom: 10px !important;
    }
}


.pos-app-main .pos-bg-img {
    height: 100% !important;
    padding-bottom: 0px !important;
}

.pos-app-main .pos-image {
    width: 60%;
    margin: auto;
    overflow: hidden;
}

.pos-app-main .pos-bg-img .pos-image img {
    width: 100%;
    margin-top: 40px !important;
}

@media screen and (max-width:577px) {
    .pos-app-main .pos-image {
        width: 100%;
    }
}

@media screen and (max-width:993px) {
    .hardwrae-tab ul {
        padding-left: 9px !important;
    }


}

@media screen and (max-width:577px) {
    .hardware-details-brdcrbs span {
        color: #000;
        font-size: 18px;
        position: relative;
        bottom: 24px;
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .hardwrae-tab .tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }
}

@media screen and (max-width: 350px) {
    .hardware-details-brdcrbs span {
        font-size: 13px;
    }

    .hardware-details-brdcrbs {
        padding: 20px 10px;
    }
}


@media screen and (min-width:992px) {
    .accordian-sec .accordion-body {
        padding: 0 !important;
    }
}

.c-form-col .form-item hr {
    margin-bottom: 10px;
    display: none !important;
}

.web-col .c-form-col .btn {
    margin-top: 14px;
}

/* .price-selecter .select-flex::after {
        top: 56% !important; 
} */
#carFlag {
    height: 19px;
    margin-left: 15px !important;
    position: relative;
    bottom: 38px;

}

.price-selecter select {
    padding: 4px 0 4px 48px !important;
}

.country-select-wrap img {
    position: absolute;
    left: 17px;
    /* bottom: 17px; */
}

.flag-style {
    width: 20px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}




/* signupppp new */

.pos-body .sign-btn {
    text-transform: none !important;
}

.pos-head .flex-center {
    display: flex;
    align-items: center;
}

.pos-head p {
    margin-bottom: 0px;
    margin-right: 15px;
}

.pos-head .sign-btn {
    margin-top: 0px;
    width: 92px;
    /* right: 2px; */
    background: #fff;
    border: solid 1px #FFAF00 !important;
    padding: 6px 15px;
    color: #FFAF00;
    border-radius: 50px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width:993px){
    .pos-head .sign-btn{
        position: absolute;
    }
}
.pos-head .sign-btn:hover,
.pos-head .sign-btn:focus {
    background-color: #FFAF00 !important;
    color: #fff !important;
    border: none;
}


.pos-center {
    justify-content: flex-end;
}

.pos-logo {
    padding: 25px 0;
    display: block !important;
}

.pos-logo img {

    width: 200px;

}

@media screen and (max-width: 1024px) {
    .pos-logo img {

        width: 180px !important;
    }
}

@media screen and (max-width:768px) {
    .pos-body .sign-btn {
        margin-top: 2px !important;
    }

    .pos-head p {
        margin-bottom: 0px;
        margin-right: 115px;
    }

}

@media screen and (max-width:650px) {
    .pos-head p {
        display: none !important;
    }
}

@media screen and (max-width:576px) {
    .pos-head .sign-btn {
        width: 93px !important;

    }

    .pos-head p {
        position: relative;
        bottom: 22px;
        margin-right: 108px !important;
    }

    .pos-logo img {

        width: 160px !important;
    }

    .pos-head {
        padding: 10px 0 !important;
    }

    .pos-banner {
        padding-top: 65px !important;
    }

    .head-main {
        font-size: 25px !important;
    }
}

.main-wrap {
    position: relative;
}

.main-wrap .bg-left {

    background-size: 100% 100%;
    background-position: center center;
    height: 100vh;
    z-index: 2;
}

.pos-logo {
    z-index: 3;
}

.main-wrap .pos-head {
    position: absolute;
    top: 0px;
    background: transparent;
    width: 100%;
    height: 80px;
}

.main-wrap .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.pos-head .container-fluid {

    padding-left: 20px !important;
    padding-right: 60px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

.pos-body .bg-txt {
    margin-top: 135px;

}


.pos-body .bg-list .list-txt {
    margin-left: 4px;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.pos-body .bg-txt p {
    margin-top: 20px;
    color: #666;
    font-weight: 400;
}

@media screen and (min-width:992px) {
    .pos-body .bg-list {
        padding-left: 50px;
    }
}

@media screen and (max-width:992px) {
    .pos-body .bg-list {
        padding-left: 50px;
    }
}

.pos-head .container-fluid {
    padding-left: 14px !important;
    padding-right: 52px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}


.pos-body .form-btn {
    float: right;

    border-radius: 8px;

    position: absolute;
    right: 24.8%;

    bottom: 13px;
    margin-left: auto;
    border: none !important;
}

.pos-body .form-btn .btn {
    color: #fff !important;
    padding: 13px 30px;
    font-weight: 500 !important;
}

.pos-body .sec-2 {

    padding-right: 0px;
    padding-left: 0px;
}


@media screen and (max-width:576px) {
    .pos-head .container-fluid {
        padding-left: 10px !important;
        padding-right: 47px !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .pos-body .bg-txt {
        margin-top: 135px;

        margin-right: 0px;
    }

    .main-wrap .bg-left {

        z-index: 2;
    }
}

@media screen and (max-width:485px) {
    .pos-body .bg-txt h1 {
        font-size: 26px;
    }

    .pos-body .bg-txt p {
        font-size: 16px;
    }

    .pos-body .bg-list .list-itm {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 360px) {
    .pos-body .bg-txt p {
        font-size: 16px;
    }
}


@media screen and (max-width: 576px) {

    .pos-body .form-btn {
        margin-right: 35px;
    }

}

@media screen and (max-width: 415px) {
    .main-wrap .pos-head {
        padding-right: 11px !important;
    }

    .pos-head .container-fluid {
        padding-left: 9px !important;
        padding-right: 28px !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

}

@media screen and (max-width: 484px) {
    .pos-body .br-wrap {
        margin-left: 11%;
    }
}

@media screen and (max-width: 480px) {
    .pos-body .br1-wrap {
        margin-left: 11%;
    }

    .main-wrap .bg-left {
        height: auto !important;
        padding-bottom: 45px !important;
    }

    .pos-body .bg-txt {
        margin-top: 12% !important;
    }

    .pos-body .form-section {
        margin-top: 54px;
    }
}

@media screen and (max-width: 390px) {
    .pos-body .br2-wrap {
        margin-left: 11%;
    }
}

@media screen and (max-width: 400px) {
    .pos-body .bg-list .list-style {
        padding: 5px 10px;
    }

    .pos-body .bg-list .list-txt {
        font-size: 14px;
    }

    .pos-body .bg-list .list-txt {
        margin-left: 4px;
        font-weight: 500;
        font-size: 13px !important;
        color: #000;
    }


}

@media screen and (max-width: 992px) {
    .main-wrap .bg-left {
        height: auto !important;
        padding-bottom: 60px;
    }

    .pos-body .sign-btn {
        background: transparent !important;
    }
}

@media screen and (max-width: 1200px) {

    .pos-body .bg-list .list-txt {
        margin-left: 4px;
        font-weight: 500;
        font-size: 15px;
        color: #000;
    }
}

.pos-body .bg-list {
    counter-reset: list-counter;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.pos-body .top-txt {
    margin-top: 30px;
    color: #666;
}

.pos-body .top1-txt {
    margin-top: 20px;
}

.pos-body .bg-list .list-itm {
    list-style: none;
    position: relative;
    margin-bottom: 17px;
    padding-left: 48px;
    color: #666;
    font-size: 16px;
}

.pos-body .bg-list .list-itm::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #EEEEEE;
    color: #2c2f36;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.detail-wrap .container-fluid {
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}

@media screen and (max-width:768px) {
    .str-dwn {
        margin-top: 10px;
    }
}

@media screen and (max-width:415px) {
    .pos-body .bg-list .list-itm {
        font-size: 15px;
    }
}

@media screen and (min-width:1200px) and (max-width:1280px) {
    .pos-body .form-btn {
        right: 7% !important;
    }
}

.detail-wrap input:focus {
    outline: none !important;
    border: 1px solid #2c2f36 !important;
}

.detail-wrap select:focus {
    outline: none !important;
    border: 1px solid #2c2f36 !important;
}

.field-top input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #FFAF00 !important;
}

.pos-body .form-btn .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

@media screen and (min-width:992px) and (max-width:992px) {
    .main-wrap .bg-left {
        height: 100vh !important;
    }

    .pos-body .form-btn {
        float: right;
        background-color: #FFAF00;
        border-radius: 8px;
        position: fixed;
        right: 10px;
        bottom: 0px !important;
    }
}

@media screen and (min-width:1300px) {
    .pos-body .bg-txt {
        margin-top: 0px;

    }

    .pos-body .bg-left {
        display: flex;
        align-items: center;
    }

    .pos-body .sec-2 {
        display: flex;
        align-items: center;
        margin-top: 60px;
    }

    .pos-body .form-section {
        margin-top: 0px;
    }

    .pos-body .wrap-txt h1 {
        margin-top: 24px;
    }
}

@media screen and (min-width:992px) and (max-width:1400px) {
    .pos-head .container-fluid {
        padding-left: 0px !important;
        padding-right: 32px !important;
    }

}

.pos-body .bg-txt h1 {
    font-weight: 600;
    color: #2c2f36;
    font-size: 2.2rem;
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .pos-body .form-btn {
        right: 14.8%;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .pos-body .form-section label {
        font-size: 11px;
    }
}

@media screen and (max-width:993px) {
    .pos-body .bg-list .list-itm::before {
        line-height: 32.6px;
    }

    .pos-body .form-btn {
        margin-right: -16.3%;
    }

}

@media screen and (max-width: 576px) {
    .pos-body .form-btn {
        margin-right: -17.6%;
    }
}

@media screen and (max-width: 768px) {
    .promo-head .free-trial-btn {
        font-size: 10px !important;
    }
}

.wrap-txt1 h5 {
    font-size: 18px !important;
    font-weight: 500;
    margin-bottom: 20px;
}

.wrap-txt1 h4 {
    font-size: 22px !important;
    margin-bottom: 0px;
}

.basic-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.retailer-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9 !important;
    border: 1px solid #FFA500;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.retailer-check-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.retailer-check-icon {
    border: 1px solid #FFA500;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 16px;
    background-color: #fff;
}

.retailer-check.unchecked .retailer-check-icon {
    border: 1px solid #eee;
}

.retailer-check-icon img {
    height: 45px;
}

.option-title {
    font-weight: 600;
}

.detail-wrap input {
    border: 1px solid #e5e5e5;
    width: 100%;
    border-radius: 8px;
    height: 50px !important;
    font-weight: normal !important;
}

.detail-wrap select {
    border-radius: 10px;
}

.detail-wrap {
    margin-top: 20px;
}

@media screen and (min-width:992px) {
    .pad-none-right {
        padding-right: 4px;
    }
}

@media screen and (min-width:768px) {
    .pad-right-none {
        padding-right: 0.8px !important;
    }
}

.content-title p {
    margin-bottom: 0px;
}

@media screen and (min-width:992px) and (max-width:1300px) {
    .wrap-txt1 {
        margin-top: 135px !important;
        height: 100vh;
    }
}

@media screen and (max-width:993px) {
    .grey-bg {
        padding: 50px 0px 20px 0px;
    }
    .pos-body-wrap p {
        line-height: 1.2em;
        font-size: 14px;
    }
    .grey-bg {
        border-bottom: 1px solid #EEEEEE;
        border-left: 0px;
        border-right: 0px;
        border-top: 1px solid #EEEEEE;
    }
}

@media screen and (max-width:767px) {
    .m-top {
        margin-top: 20px;
    }
}

@media screen and (max-width:577px) {
    .retailer-check {
        gap: 20px !important;
    }
}

@media screen and (max-width:480px) {
    .retailer-check input[type="radio"]:checked::before {
        width: 14px;
        height: 14px;
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -36%);
    }
}

@media screen and (max-width:415px) {
    .retailer-check {
        padding: 10px;
    }

    .retailer-check-icon img {
        height: 30px;
    }

    .retailer-check-icon {
        height: 50px;
        width: 50px;
    }

    .wrap-txt1 h4 {
        font-size: 18px !important;
    }

    .retailer-check input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 30px;
        height: 24px;
    }

    .retailer-check input[type="radio"]:checked::before {
        font-size: 12px;
    }

    .pos-body .bg-left {
        padding-left: 0px;
        padding-right: 0px;
    }

    .pos-head .sign-btn {
        right: 8px;
    }

    .pos-head .container-fluid {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 350px) {
    .retailer-check input[type="radio"]:checked::before {
        width: 12px;
        height: 12px;
    }
}

@media screen and (min-width:415px) and (max-width:993px) {
    .grey-bg {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

.retailer-check {
    background-color: #FFF4DC;
    border: 1px solid #FFAF00;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.retailer-check.unchecked {
    background-color: #f9f9f9;
    border: 1px solid #eeee;
}

.retailer-check.unchecked .retailer-check-icon {
    border: 1px solid #eee;
}

.retailer-check input[type="radio"] {
    display: none;
}

.retailer-check:not(.unchecked) input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid #FFA500;
    border-radius: 50%;
    background: #FFA500;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.retailer-check input[type="radio"]:checked {
    opacity: 1;
    transform: scale(1.03);
}

.retailer-check input[type="radio"]:checked~.retailer-check-flex,
.retailer-check input[type="radio"]:checked+.retailer-check-flex {
    transform: scale(1.03);
}

.retailer-check:not(.unchecked) input[type="radio"]:checked::before {
    content: "";
    background-image: url('https://cdn.lithospos.com/web/assets/images/theme/tick-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -36%);
}

.retailer-check.unchecked {
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

@media screen and (max-width:480px) {
    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 14px;
        height: 14px;
    }

    .retailer-check:not(.unchecked) input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 28px;
        height: 24px;
    }
}

@media screen and (min-width:480px) and (max-width:550px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 28px;
        height: 27px;
    }
}

@media screen and (max-width:415px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 17px;
    }

    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 9px;
        height: 9px;
    }

    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        top: 47%;
    }
}

.content-title p {
    color: #666;
}

@media screen and (max-width:380px) {
    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 11px;
        height: 11px;
    }

    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 26px;
        height: 20px;
    }
}

@media screen and (max-width:350px) {
    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 11px;
        height: 11px;
    }

    .retailer-check:not(.unchecked) input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 28px;
        height: 20px;
    }
}

.main-wrap .pos-head {
    display: flex;
    justify-content: center;
}

.pos-head .container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.pos-head .container-fluid {
    width: 75%;
}

.wrap-txt {
    width: 80%;
    padding-left: 15%;
}

.wrap-txt1 {
    width: 80%;
    padding-right: 15%;
}

.bg-left {
    padding-right: 0px;
    display: flex;
    justify-content: center;
}

.pos-body .grey-bg {
    justify-content: center;
    display: flex;
    justify-content: center;
}

@media screen and (min-width:576px) and (max-width:993px) {
    .wrap-txt {
        width: 85%;
        padding-left: 0px;
    }

    .wrap-txt1 {
        width: 85%;
        padding-right: 0px;
    }

    .signup-form {
        width: 98% !important;

    }

    .pos-head .container-fluid {
        width: 85%;
    }
}

@media screen and (max-width:576px) {
    .wrap-txt1 {
        width: 90%;
        padding-right: 0px !important;

    }

    .wrap-txt {
        width: 90%;
        padding-left: 0px !important;

    }

    .pos-head .container-fluid {
        width: 90%;

    }
}

@media screen and (max-width:480px) {
    .wrap-txt1 {
        width: 90%;
    }

    .wrap-txt {
        width: 90%;
    }

    .pos-head .container-fluid {
        width: 90%;
    }

   

    .pos-head .sign-btn {
        right: -32px;
    }
}

@media screen and (max-width:415px) {
    .wrap-txt1 {
        width: 83%;
    }

    .wrap-txt {
        width: 83%;
    }

    .pos-head .container-fluid {
        width: 90%;
    }

    .pos-head .sign-btn {
        right: -28px;
    }
}

@media screen and (min-width:1020px) and (max-width:1100px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 21px !important;
        height: 19px !important;
    }

    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 11px;
        height: 11px;
    }
}

@media screen and (min-width:1100px) and (max-width:1200px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 21px !important;
        height: 21px !important;
    }

    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 12px;
        height: 13px;
    }
}

@media screen and (min-width:992px) and (max-width:1020px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 25px;
        height: 22px;
    }

    .retailer-check:not(.unchecked) input[type="radio"]:checked::before {
        width: 13px;
        height: 13px;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .wrap-txt {
        width: 80%;
        padding-left: 5%;
    }

    .wrap-txt1 {
        width: 80%;
        padding-right: 5%;
    }

    .signup-form {
        width: 91% !important;
        padding-right: 5%;
    }

    .pos-head .container-fluid {
        width: 85%;
    }

    .pos-head .sign-btn {
        right: -2px;
    }
}

@media screen and (min-width:1700px) {
    .wrap-txt {
        width: 80%;
        padding-left: 20%;
    }

    .wrap-txt1 {
        width: 80%;
        padding-right: 20%;
    }

    .pos-head .container-fluid {
        width: 70%;
    }

    .pos-head .sign-btn {
        right: -40px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .wrap-txt1 {
        width: 80% !important;
        padding-right: 6% !important;
    }

    .signup-form {
        width: 92% !important;
        padding-right: 5%;
        padding-left: 8%;
    }

    .wrap-txt {
        width: 80% !important;
        padding-left: 6% !important;
    }

    .pos-head .container-fluid {
        width: 85%;
    }
}

@media screen and (min-width:1280px) and (max-width:1400px) {
    .pos-body .form-btn {
        right: 16%;
    }
}

@media screen and (min-width:1200px) and (max-width:1280px) {
    .pos-body .form-btn {
        right: 15.5% !important;
    }
}

@media screen and (min-width:992px) and (max-width:1300px) {
    .wrap-txt h1 {
        font-size: 1.8rem !important;
    }
}

@media screen and (max-width: 330px) {
    .retailer-check:not(.unchecked) input[type="radio"] {
        width: 28px;
        height: 19px;
    }
}

@media screen and (max-width:576px) {
    .pos-body .bg-list .list-itm::before {
        font-size: 14px;
    }
}

.business-change {
    float: right;
    background-color: #FFAF00;
    border-radius: 8px;
}

.sub-check {
    display: flex;
    gap: 12px;
    align-items: center;

}

.business-change .btn {
    color: #fff;
    height: 38px;
    font-weight: 500 !important;
    font-size: 14px;
    line-height: 0.9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.business-change .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.sub-check-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.sub-check-icon img {
    height: 30px;
}

.sub-check-icon {
    border: 1px solid #EEEEEE;
    height: 53px;
    width: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 16px;
    background: #fff;
}

.sub-check h4 {
    font-size: 20px !important;
    font-weight: 500;
}

.sub-check p {
    font-size: 13px !important;
}

@media screen and (min-width:1200px) {
    .sub-check p {
        white-space: nowrap;
    }
}

.sub-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #f9f9f9 !important;
    border: 1px solid #eeee;
}

.top-form {
    margin-top: 14px;
}

.pad-none-right {
    padding-right: 0.5px;
}

.detail-wrap .form-item {
    position: relative;
    margin-bottom: 20px;
}

.detail-wrap select {
    height: 50px;
    font-weight: normal;
    padding: 5px 18px 5px 43px;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all .2s ease;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: url('https://cdn.lithospos.com/web/assets/images/theme/dropdown-icon.svg') no-repeat right 1rem center;
    background-color: #fff;
}

.detail-wrap .formLabel {
    margin-top: 5px;
    font-size: 14px;

}

.detail-wrap .cformLabel {
    width: auto;
    background: #fff !important;
    font-size: 14px;
    color: #666;
    position: absolute;
    top: -8px !important;
    margin-left: 13px;
    padding: 0 5px;
}

.success-msg {
    margin-bottom: 0px !important;
}

.success-msg p {
    color: #EE0004;
    font-size: 14px;
}

.failed-input {
    border-color: #EE0004 !important;
}

@media screen and (max-width:380px) {
    .business-change .btn {
        color: #fff;
        height: 38px;
        font-weight: 500 !important;
        font-size: 12px;
        line-height: 1.2;
        padding: 10px;
    }

    .sub-check h4 {
        font-size: 16px !important;
    }
}

.sub-check h4 {
    margin-bottom: 0px;
}

.detail-wrap .form-item p {
    margin-bottom: 0px !important;
}

.detail-wrap .formTop {
    background-color: #fff !important;
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .business-change .btn {
        color: #fff;
        height: 38px;
        font-weight: 500 !important;
        font-size: 14px;
        line-height: 0.7;
        padding: 13px;
    }

    .sub-check-flex {
        gap: 5px;
    }
}

.confirm-txt p {
    font-size: 15px;
    margin-bottom: 6px;

}


.detail-wrap .formTop {
    position: relative;
    font-size: 11px;
    top: -10px !important;
    left: 13px !important;
}

.detail-wrap .formTop::after {
    content: " *";
}

.detail-wrap .formTop.phn-style::after {
    content: none !important;
}

.detail-wrap select {
    background-color: #fff !important;
}

.detail-wrap .form-style:focus {
    background-color: transparent !important;
    font-size: 14px !important;
    padding: 5px 18px !important;
}
.web-col div.form-item p{
    margin-bottom: 0px;
}
@media screen and (max-width:993px) {
    .d-show-md {
        display: block;
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .d-none-md {
        display: none;
    }

    .wrap-txt1 {
        margin-top: 12%;
    }

    .pos-body .bg-txt {
        margin-top: 8%;
    }

    .pos-body .form-btn {
        position: absolute;
        margin-top: 12px;
        margin-bottom: 10px;
    }

    .confirm-txt p {
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

}

@media screen and (max-width:1200px) {
    .retailer-check-icon {
        height: 70px;
        width: 70px;
    }

    .retailer-check-icon img {
        height: 38px;
    }
}

@media screen and (max-width: 768px) {
    .confirm-txt p {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .d-show-md {
        font-size: 25px;
    }
}

@media screen and (min-width:993px) {
    .d-none-md {
        display: block;
    }

    .d-show-md {
        display: none;
    }
}

.logo-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.partner-header-logo {
    padding: 25px 0px;
}

.partner-header-logo img {
    height: 40px;
}

@media screen and (min-width:992px) {
    .partner-header-logo {
        display: block;
        z-index: 3;
    }
}

@media screen and (max-width:993px) {

    .partner-header-logo img {
        height: 30px !important;
    }

    .pos-head p {
        margin-bottom: 0px;
        margin-right: 100px;
    }
}

@media screen and (max-width:769px) {
    .partner-header-logo {
        padding: 4px 0px;
    }

    .pos-logo img {
        width: 155px !important;
    }
}

@media screen and (max-width:630px) {
    .logo-header {
        display: flex;
        justify-content: space-between;
        gap: 24%;
    }
}

@media screen and (max-width:577px) {
    .pos-head .sign-btn {
        width: 93px !important;

    }

    .logo-header {
        display: flex;
        gap: 0px;
        justify-content: space-between;
        width: 63%;
    }
}

@media screen and (max-width:480px) {
    .pos-logo img {
        width: 147px !important;
    }

    .logo-header {
        display: flex;
        gap: 0px;
        justify-content: space-between;
        width: 72%;
    }
}

@media screen and (max-width:415px) {
    .logo-header {
        display: flex;
        justify-content: space-between;
        width: 71%;
    }

    .pos-logo img {
        width: 130px !important;
    }

    .partner-header-logo img {
        height: 24px !important;
    }

    .partner-header-logo {
        padding: 0;
    }

    .pos-head .sign-btn {
        width: 93px !important;
        bottom: -9px !important;
    }
}

@media screen and (max-width: 380px) {
    .pos-head .sign-btn {
        width: 74px !important;

    }

    .logo-header {
        display: flex;
        justify-content: space-between;
        width: 77%;
    }

    .pos-logo img {
        width: 125px !important;
    }
}

@media screen and (min-width:481px) and (max-width:993px) {
    .pos-head .sign-btn {
        right: 12px;
    }
}

@media screen and (min-width:992px) and (max-width:1300px) {
    .partner-header-logo img {
        height: 34px;
    }
}

.old-ribbon {
    position: relative;
    display: inline-block;
    background-color: #FF9500;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 0.35em 1.2em;
    margin: 5px 0 0 10px;
    white-space: nowrap;
    text-align: center;
    width: fit-content;
    line-height: 1.3;
    color: #2c2f36;
    margin-left: auto !important;
}


.old-ribbon::before {
    content: "";
    position: absolute;
    left: -0.99em;
    top: 0;
    height: 0;
    border-top: 1em solid #FF9500;
    border-bottom: 1em solid #FF9500;
    border-left: 1em solid transparent;
}

@media screen and (max-width:1300px) {
    .old-ribbon::before {
        content: "";
        position: absolute;
        left: -0.99em;
        top: 0;
        height: 0;
        border-top: 1em solid #FF9500;
        border-bottom: 1em solid #FF9500;
        border-left: 1em solid transparent;
        margin-left: auto !important;
    }

    .old-ribbon {
        font-size: 10px;
        font-weight: 400;
        padding: 0.32em 2em;

    }
}

@media screen and (max-width: 993px) {
    .old-ribbon {
        font-size: 9px;
        font-weight: 400;
        padding: 0.34em 1em;

    }
}

@media screen and (max-width: 769px) {
    .old-ribbon {
        font-size: 8px;
        font-weight: 400;
        padding: 0.36em 1em;

    }
}

@media screen and (max-width:415px) {
    .old-ribbon {
        padding: 0.36em 1.4em !important;
    }
}

@media screen and (max-width:350px) {
    .pos-head .sign-btn {
        bottom: -10px !important;
    }
}

@media screen and (max-width:1300px) {
    .old-ribbon {
        margin: 5px 0 0 8px;
    }
}

@media screen and (max-width:577px) {
    .partner-header-logo {
            position: relative;
    bottom: 88%;
    }

    .pos-head .sign-btn {
        bottom: 0px;
    }

    .main-wrap .pos-head {
        background: #ffff;
    }

    .pos-head {
        border-bottom: 1px solid #EEEEEE;
    }

    .wrap-txt1 {
        margin-top: 10%;
    }

    .d-show-md {
        margin-top: 10px;
    }
}

@media screen and (max-width:577px) {
    .mobile-show-only {
        display: block !important;
        width: 35%;


    }

    /* .old-ribbon {
        margin-right: auto !important;
        padding: 0.36em 1.5em;
        position: relative;
        display: inline-block;
        color: #2c2f36;
        z-index: 1;
        font-size: 9px;
    }

    .old-ribbon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: -0.99em;
        height: 0;
        border-top: 1em solid #FF9500;
        border-bottom: 1em solid #FF9500;
        border-right: 1em solid transparent;
        z-index: -1;
    } */


}

@media screen and (min-width:577px) {
    .mobile-show-only {
        display: none !important;
    }
}

@media screen and (max-width:415px) {
    .logo-header .pos-logo {
        padding: 7px 0;
    }

    .pos-head .sign-btn {
        width: 93px !important;
        bottom: 4px !important;
    }

    .sub-wrap {
        padding: 8px;
    }
}

@media screen and (max-width:576px) {
    .pos-body #button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: -8px;
        right: -6px;
        z-index: 1000;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        border: 2px solid #2c2f36;
        background-color: transparent;
        padding: 0;
        margin: 30px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .pos-body #button::after {
        content: "↑";
        font-size: 20px;
        color: #2c2f36;
        font-weight: 500;
    }

    .pos-body #button.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media screen and (max-width:415px) {
    .business-change .btn {
        padding: 10px 10px !important;
    }
}

.pos-body .form-btn {
    display: none;
}




.pos-body .form-btn .btn {
    background: #FFA500 !important;
    padding: 13px 30px 13px 30px;
    border-radius: 8px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none !important;
}

.pos-body .form-btn .btn:hover {
    background-color: #FFA500 !important;
    border-radius: 8px !important;
}

.retailer-check:hover {
    border: 1px solid #e5e5e5ee !important;
    background-color: #fff !important;
}

.signup-form {
    width: 80%;
    padding-right: 5%;
    padding-left: 8%;
}

@media screen and (max-width:577px) {
    .signup-form {
        width: 95%;
    }
}

@media screen and (max-width: 415px) {
    .signup-form {
        width: 91%;
    }
}

@media screen and (max-width:993px) {
    .signup-form {
        height: 100%;
    }

    .pos-body .form-btn hr {
        display: none;
    }

    .pos-body .form-btn .btn {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .signup-form {
        height: 100% !important;
    }
}

@media screen and (max-width: 577px) {
    .signup-form {
        height: 100% !important;
    }

}

.pos-body .form-btn .btn {
    width: 56%;
    float: right;
}


.confirm-txt hr {
    display: none;
}

.confirm-txt .btn {
    margin-top: 12px;
    background: #FFA500 !important;
    padding: 13px 30px 13px 30px;
    border-radius: 8px !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none !important;
    font-weight: 600 !important;
    color: #fff;
    width: 100%;
}

.grey-clr-bg {
    background-color: #f9f9f9;
}

.confirm-txt .btn:focus,
.confirm-txt .btn:active {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:576px) and (max-width: 730px) {
    .signup-form {
        height: 100% !important;
    }
}



.detail-wrap input:-webkit-autofill,
.detail-wrap input:-webkit-autofill:hover,
.detail-wrap input:-webkit-autofill:focus,
.detail-wrap input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out;
}

.platinum {
    background-color: #D9D9D9;
}

.platinum::before {
    border-top: 1em solid #D9D9D9;
    border-bottom: 1em solid #D9D9D9;
}

.gold {
    background-color: #EFBF04;
}

.gold::before {
    border-top: 1em solid #EFBF04;
    border-bottom: 1em solid #EFBF04;
}

.silver {
    background-color: #C4C4C4;
}

.silver::before {
    border-top: 1em solid #C4C4C4;
    border-bottom: 1em solid #C4C4C4;
}

.partner-header-logo .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media screen and (max-width:577px) {
    .mobile-show-only {
        width: 24%;
    }

    .old-ribbon {
        margin-left: 0px !important;
    }
}

@media screen and (max-width: 490px) {
    .mobile-show-only {
        width: 28%;
    }
}

@media screen and (max-width: 450px) {
    .mobile-show-only {
        width: 32%;
    }
}

@media screen and (max-width: 415px) {
    .mobile-show-only {
        width: 26%;
    }
}

@media screen and (max-width: 380px) {
    .mobile-show-only {
        width: 28%;
    }
}

@media screen and (max-width: 360px) {
    .mobile-show-only {
        width: 29%;
    }
}

@media screen and (max-width: 330px) {
    .mobile-show-only {
        width: 32%;
    }
}

.pos-body .country-select-wrap img {
    position: absolute;
    left: 17px;
    /* bottom: 17px; */
}

.pos-body .flag-style {
    width: 20px;
}

.pos-body div.form-item p.formLabel {
    position: absolute;
    left: 18px;
    top: 10px;
    transition: all .2s ease;
    color: #666;
}

.pos-body .detail-wrap input {
    border: 1px solid #eee !important;
    width: 100%;
    border-radius: 8px;
    height: 50px !important;
    font-weight: normal !important;
}

.pos-body input.form-style {
    color: #666;
    display: block;
    width: 100%;
    height: 48px;
    padding: 5px 18px;
    font-weight: 600;
    border: 1px solid #eee;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    font-size: 14px !important;

}

.pos-body .detail-wrap .formTop::after {
    content: " *";
}

.pos-body .detail-wrap .formTop.phn-style::after {
    content: none !important;
}

.pos-body .detail-wrap select {
    background-color: #fff !important;
}

.pos-body .detail-wrap .form-style:focus {
    background-color: transparent !important;
    /* font-size: 14px !important; */
     font-size: 14px !important;
    padding: 5px 18px !important;
}

.pos-body .formTop {
    top: -15px !important;
    left: 20px;
    background-color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eef1f6', endColorstr='#ffffff', GradientType=0);

    padding: 0 5px;
    border-radius: 4px;
    font-size: 13px;
    color: #666 !important;
    font-weight: 300 !important;
}

.pos-body .dm-btn {
    color: #666;
    font-weight: 800;
}

.pos-body .dm-btn:hover {
    color: #2c2f36;
}

.pos-body-wrap p {
    font-weight: 400;
}

.pos-body-wrap li {
    font-weight: 400;
}

@media screen and (min-width:1301px) {
    .pos-body {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
    }
}

@media screen and (max-width:1301px) {
    .pos-body {
        overflow-x: hidden !important;

    }
}

@media screen and (min-width:576px) and (max-width:993px) {
    .pos-body #button {
        display: none !important;
    }
}

@media screen and (min-width:576px) and (max-width:769px) {
    .main-wrap .pos-head {
        position: absolute;
        top: 12px;

    }
}

@media screen and (min-width:992px) {
    .pos-body #button {
        display: none !important;
    }
}

.pos-body .detail-wrap input:focus {
    border: 1px solid #2c2f36 !important;
}


/* signup css styles */
@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.wrap-txt1.hide {
    display: none;
}


.wrap-txt1.slide-out {
    animation: slideOutUp 0.4s ease-out forwards !important;
}

.wrap-txt1.slide-in {
    animation: slideInUp 0.5s ease-out forwards;
}


.sub-wrap {
    margin-bottom: 0px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-out;
}

.sub-check-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-check {
    display: flex;
    align-items: center;
    gap: 15px;
}

.business-change .btn {
    padding: 11px 20px;
    background: #FFA500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.business-change .btn:hover {
    background: #FFA500;
}


.retailer-check {
    transition: all 0.3s ease;
    cursor: pointer;
}

.retailer-check:hover {
    border-color: #FFA500;
    background: #f9f9f9;
}

.retailer-check.checked {
    border-color: #FFA500;
    background: #FFF8E7;
}


@media screen and (max-width:577px) {
    .mobile-show-only {
        display: block !important;
    }
}

@media screen and (min-width:577px) {
    .mobile-show-only {
        display: none !important;
    }
}

.form-error-message {
    color: #EE0004;
    font-size: 14px;
}

@media screen and (min-width:415px) and (max-width:577px) {
    .pos-head .sign-btn {
        bottom: 8px;
    }

    .pos-logo {
        padding: 13px 0;
    }
}

@media screen and (min-width:992px) and (max-width:1301px) {
    .main-wrap .bg-left {
        max-height: 100% !important;
        height: auto !important;
    }
}

@media screen and (max-width:480px) {
    .pro-col .specials-col {
        height: auto !important;
    }

    .sp-dashboard .specials-col {
        height: 460px !important;
    }
}



.select2-container {
    width: 100% !important;
}

.select2-selection__rendered {
    padding-left: 41px !important;
    padding-top: 10px !important;
}

.select2-container .select2-selection--single {
    height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px !important;
    right: 4px !important;
}

.country-select-wrap img {
    position: absolute;
    left: 7px !important;
    /* bottom: 17px; */
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none !important;
    color: #000;
}

.signup-form .cformLabel {
    z-index: 1;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #666 !important;
    font-weight: 300 !important;
}

select2-container {
    font-size: 13px;
    color: #000 !important;
    z-index: 0;
}

.country-select-wrap img {
    position: absolute;
    left: 11px !important;
    /* bottom: 17px; */
}

.select2-container--default .select2-selection--single {
    border: 1px solid #eee !important;
}

.select2-results__option {
    padding-left: 10px !important;
}

.select2-dropdown {
    border: 1px solid #e5e5e5 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -5px;

}

.select2-container {
    width: 220px !important;
}

.form-item .select2-container {
    width: 100% !important;
}

.select-size .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 9px !important;
}

.img-flag {
    width: 20px;
    margin-right: 4px;
    margin-bottom:3px;
    vertical-align: middle;
}

.price-flex .select2-selection__rendered {
    padding-left: 11px !important;
    padding-top: 10px !important;
}

.select2-selection__rendered img {
    display: inline-block !important;
}

.c-form-col select {
    padding: 4px 0 4px 48px !important;
    font-size: 13px;
}

.c-form-col .country-select-wrap img {
    position: absolute;
    left: 16px !important;
}

.web-col .select2-container--default .select2-selection--single {
    border-radius: 6px !important;
    border: 1px solid #eee !important;
}
.web-col .select2-container--default .select2-selection--single:focus {
    border: 1px solid #ddd !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 7px !important;
}

@media screen and (max-width:1025px) {
    .menu-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow-y: auto;

    }

    .social.head-icons {
        margin-top: auto !important;
        display: flex;
    }

}

@media screen and (max-width:1025px) {
    .menu-list {
        border-top: 2px solid #eee;
        margin-left: 17px;
        padding-top: 10px;
        margin-top: 18px;
        margin-right: 20px;
        list-style: none;
        padding-left: 0px;
    }

    .menu-list .menu-mob {
        padding-left: 0px;
    }

    .menu-inner {
        margin-bottom: 0 !important;
        background: #fff;
    }
}

@media screen and (min-width:1025px) {
    .menu-inner {
        margin-top: 27px;
    }
}

.book-demo .c-form-col{
    margin: auto;
    margin-top: 30px;
    width: 50%;
    max-width: 100%;
    background: transparent;
    border:none;
    box-shadow:none;
    padding-bottom:0px !important;
    padding-top: 0px;
}
@media screen and (max-width:993px){
    .book-demo .c-form-col{
    width: 100%;
}
}

.partner-form .form-item{
    margin:0px !important;
}

.partner-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:25px;
    margin-top: 30px;
}
@media screen and (max-width:577px){
    .partner-form{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:20px;
}
}
.form-msg{
    margin:20px 0px 0px 0px !important;
}
.book-demo .btn{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.book-demo .formTop{
    background: linear-gradient(to bottom, #f8f9fc 0%, #ffffff 100%) !important;
    position: relative;
}

.book-demo .cformLabel{
    background: linear-gradient(to bottom, #f8f9fc 0%, #ffffff 100%) !important;
}

.detail-wrap .select2-selection__rendered{
padding-left:37px !important;
}

@media screen and (min-width:992px){
    .sign-data{
        padding-right: 0px;
    }
}


.business-type-options{
    display: flex;
    gap:25px;
    margin-top: 8px;
}

#partnershipType{
    padding-left: 24px !important;
}
.business-type .select2-selection__rendered{
        padding-left: 14px !important;
}

.dropdown-partner .select2-selection__rendered {
    padding-left: 14px !important;
}
.book-demo .cformLabel{
    margin-left:10px !important;
}


.book-demo .formTop {
    position: relative;
    padding:0 8px !important;

}

 .book-demo .formTop.required::before {
    content: " *";
    position: absolute;
    right:-2px !important;
}
 .book-demo .cformLabel.top-set::after {
    content: " *";

}
.dropdown-partner .cformLabel::after {
    content: "" !important;

}

.book-demo .select2-container--default .select2-selection--multiple{
    height:48px !important;
}

.book-demo .select2-container .select2-selection--multiple .select2-selection__rendered {
  
    padding-left: 14px !important;
    margin-bottom:0px !important;
}
.book-demo .select2-container--default .select2-results__option--selected{
    background-color: #fff !important;
}



.select2-results__option .chk {
    width: 18px;
    height: 18px;
    appearance: none;        
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #2c2f36;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0; 
}


.select2-results__option .chk:checked::after {
    content: "✔";
    font-size: 12px;
    color: #2c2f36;
    position: absolute;
    left: 3px;
}


.select2-results__option span {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

#industrySelect2 .select2-selection--multiple{
overflow-x: auto;
scrollbar-width: none;
}

.select2-results__option--highlighted {
    background-color: #f0f0f0 !important;
    color: #000 !important;
    display: flex;
    align-items: center;
}

.book-demo .select2-container--default .select2-selection--multiple .select2-search__field {
    display: none !important;  
}


.book-demo .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 48px;
    cursor: pointer;           
}

.iti{
    width:100% !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
}

.iti__flag-container,
.iti__selected-flag {
    display: none !important;
}

#phone{
    padding-left: 14px !important;
}


.book-demo .select2-container--default .select2-selection--multiple{
    border: 1px solid #eee !important;
    overflow-x:scroll;
    scrollbar-width:none;
}
.book-demo .select2-container--default .select2-selection--multiple:focus{
    border: 1px solid #ddd !important;
}

.partner-banner .btn{
    font-weight: 700 !important;
    border:none;
}
.partner-banner .btn:hover{
    border:none !important;
}
.book-demo textarea.form-style{
 border: 1px solid #eee !important;
}

.book-demo input:hover{
     border: 1px solid #ddd !important;
}
.book-demo input:focus{
     border: 1px solid #ddd !important;
}

.book-demo textarea.form-style:focus {
    border: 1px solid #ddd !important;
}

.select2-selection__arrow b {
    display: none !important;
}

.select2-selection__arrow:after {
    content: "";
    background-image: url('https://cdn.lithospos.com/web/assets/images/theme/arrow-down-sign-to-navigate.webp');
    background-size: 9px;
    background-repeat: no-repeat;
    width: 9px !important;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.select2-selection__rendered{
    font-size: 14px;
}

.form-msg textarea::placeholder {
    color:#999 !important;   
    font-weight: 300 !important;   
}
/* 
.form-msg textarea {
    color:#999 !important;    
       
} */

.phn-color{
    color:#666 !important;
}

.select2-container--default .select2-results>.select2-results__options {
    color: #666;
    font-size: 14px;;
}

.form-item input.form-style:focus {
    color: #666 !important;     
    border:1px solid #ddd !important; 
          
}
.form-item textarea.form-style{
      color: #666 !important;    
      font-weight: 300;
}
.form-item textarea.form-style:focus {
    color: #666 !important;      
          
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eee !important;
    font-size: 14px;
    color: #666;
    font-weight: 300;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 1px solid #ddd !important;
    outline: none !important;
    box-shadow: none !important;
}

@media screen and (max-width:415px){
    .main-wrap .pos-head {
    width: 100%;
    height: 70px;
}
}


@media screen and (max-width:1025px){
    .show-pc{
        display: none !important;
    }
}

@media screen and (min-width:993px){
    .img-height{
        height:70px !important;
    }
}


.iso-banner{
    background: #F5F5F5;
    border-radius: 19px;
    background-size: cover;
    width:100%;
    height:309px;
    color:#2c2f36;
    position: relative;

}

.iso-banner h3{
            color: #2c2f36;
          
}
.iso-txt{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.iso_sec1 img{
    width:100%;
}


.imin-txt-wrap{
 background-color: #2c2f36;
}

.imin-txt{
    text-align: center;
    padding: 80px 0px !important;
    width:85%;
    margin: auto;
   
}

@media screen and (max-width:480px){
    .imin-txt{ 
    width:100%;
 
}
}

.video-wrapper {
   position: relative;
  width: 68%;
  padding-bottom: 38.25%;
    overflow: hidden;
    margin-top: 45px !important;
    margin: auto;
     border-radius: 10px;
 
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   border-radius: 10px;
}

.btn-tick-wrap {
    display: flex;
    gap: 20px;
  
}

.btn-tick-wrap div{
       display: flex;
    border: 1px solid #EAEAEA;
    border-radius: 50px;
    padding: 10px 15px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    /* height: 83px; */
    gap: 10px;
}
.btn-tick-wrap p{
margin-bottom: 0;
}

.btn-tick-wrap img{
    height:22px;
}

.top-mgn{
    margin-top: 19px;
}

.card-wrapper-4{
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.card-wrapper-4 .card{
border: 1px solid #EEEEEE;
border-radius: 20px;
padding: 50px 35px;

}
.card-wrapper-4 img{
height:41px;
width:41px;
margin: auto;
}

.no-mark{
    background: linear-gradient(90deg, #0CAA0C 0%, #4BD14B 60%, #60E260 100%);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size: 26px;
    font-weight: 700;

}

.step-process .card{
    border: 1px solid #EEEEEE;
    border-radius: 20px;
    padding: 30px 30px;
}

.contact-demo{
    background: #2C2F36;
    color:#fff;
    border-radius: 19px;
    position: relative;
    


}
.contact-demo h3{
      color:#fff;
      font-size: 34px;
}

.cnt-centr{
    display: flex;
    align-items: center;
}
.cnt-pad{
      padding:80px 0px 80px 80px;
}
.contact-demo img{
    background-size: cover;
    position: absolute;
    bottom:0;
    right:0;
}

.fr-part .p-width{
        width: 60%;
    margin: auto;
}

@media screen and (min-width:992px) and (max-width:1200px){
    .btn-tick-wrap div {
 
    padding: 13px 5px;
    font-size: 14px;

}
.card-wrapper-4 .card {

    padding: 50px 15px;
}
.contact-demo h3 {
    color: #fff;
    font-size: 30px;
}
}

@media screen and (max-width:993px){
    .card-wrapper-4{
     display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.img-mgn{
    margin-top: 30px;
}
.iso-txt {
    width: 70%;
}
.fr-part .p-width {
    width: 80%;
    margin: auto;
}
.mt-top-992{
    margin-top: 1.5rem;
}
.contact-demo img {
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 61%;

}
.cnt-pad {
        padding: 50px 30px 50px 30px;
}
.contact-demo h3 {
    color: #fff;
    font-size: 30px;
}
.top-wrap-sec1{
    margin-top:25px;
}
}

@media screen and (max-width:769px){
    .step-process .card {
    padding: 20px;
}
.card-wrapper-4 .card {
    padding: 50px 10px;
}

}

@media screen and (max-width:577px){
     .demo-book{
        position: relative;
        z-index: 1;
     }
        .contact-demo h3 {
        color: #fff;
        font-size: 25px;
    }
    .contact-demo img{
        z-index:0;
    }
        .iso-txt {
        width: 88% !important;
    }
    .top-mgn-576{
    margin-top: 1.5rem;
}
.btn-tick-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
}
@media screen and (max-width:480px){
    .iso-cntiner h4{
        font-size: 24px;
    }
        .card-wrapper-4 {
        gap: 10px !important;
    }
        .card-wrapper-4 .card {
        padding: 20px 10px;
    }
    .fr-part .p-width{
        width:100%;
    }
    .contact-demo img {
    background-size: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    height:auto;
    width:100%;
}
}
@media screen and (max-width:415px){
        .btn-tick-wrap {
        font-size: 14px;
    }
    .btn-tick-wrap div{
        padding: 10px 18px;
    }
}
@media screen and (max-width:360px){
        .btn-tick-wrap {
        font-size: 14px;
    }
}

@media screen and (max-width: 350px) {
        .btn-tick-wrap {
        font-size: 12px !important;
    }
    .iso-txt {
        width: 88%;
    }
}

@media screen and (min-width:1024px){
    .iso-para{
       padding-right: 14%;
    }
}

.gallery-2 img { max-width: 100%; } .gallery-2 .no-select { user-select: none; } .gallery-2 { height: 401px; display: flex; } .gallery-main img { float: left; border-radius: 8px !important; } .gallery-2, .gallery-2 .slide, .gallery-image, .gallery-image .content, .gallery-image:before { transform: translate3d(0, 0, 0); backface-visibility: hidden; transition: all 0.3s ease-in-out; } .gallery-cards .slide { transition: transform 0.6s ease-in-out, opacity 0.6s ease-out; } .gallery-cards .panel { position: relative; display: flex; flex: 0 0 50%; } .gallery-cards .slide { position: absolute; top: 200px; left: 50%; padding: 0; transform: translate(-50%, -50%); width: 100%; } .gallery-cards .content .slide { opacity: 0; transition: opacity 0.6s ease-in-out; } .gallery-cards .content .slide[data-order="1"] { opacity: 1; } .gallery-cards .content h2 { font-size: 3em; } .gallery-cards .images { margin-right: 30px; perspective: 1000px; } .gallery-cards .images .slide { opacity: 0; transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out; } .gallery-cards .images .slide[data-order="1"] { opacity: 1; transform: translate(-50%, -50%) scale(1); z-index: 3; } .gallery-cards .images .slide[data-order="2"] { opacity: 0.8; transform: translate(-40%, -50%) scale(0.9); z-index: 2; } .gallery-cards .images .slide[data-order="3"] { opacity: 0.5; transform: translate(-60%, -50%) scale(0.8); z-index: 1; } .gallery-cards .images .slide[data-order="4"] { opacity: 0; } .gallery-cards .images .slide.leave { transform: translateY(0) translateX(-50%) translateZ(0); z-index: 1005; } .gallery-cards .images .slide:before { content: none; }


.wrapper-textt {
  font-size: 52px !important;
  font-weight: 600;
  line-height: 1.1em;
  min-height: 3.5em;
  color: #2c2f36;
  transition: all 0.3s ease-in-out; 
}

@media screen and (max-width:993px){
    .gallery-2 {
    height: 886px !important;
    }

.wrapper-textt {
    min-height: 2.5em;
}
}

.price-filter-col .select-flex{
        height: 85px;
}

.price-filter-col .select-flex select{
    height: 49px;
}
.price-filter-col .select-flex::after
 {
    top: 71%;
 }

 .submenu .card-left a{
    display: flex;
 }

 
 .faq-banner{
    padding:140px 0px;
    position: relative;
 }

 .faq-content{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width:80%;
 }

 @media screen and (max-width:1200px){
    .faq-banner {
    padding:120px 0px;
    position: relative;
}
 }

@media screen and (max-width:415px){
     .accordion__titlebox{
    padding-left: 0px !important;
    padding-right: 0px !important;
 }

 .accordion__content{
     padding-left: 0px !important;
    padding-right: 24px !important;
 }
}


 .faq-accordion .accordion__icon .minus {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}


 .faq-accordion .accordion__section.open .accordion__icon .minus {
    opacity: 1;
    visibility: visible;
}

 .faq-accordion .accordion__section.open .accordion__icon .plus {
    opacity: 0;
    visibility: hidden;
}


 .faq-accordion .accordion__icon span {
    transition: opacity 0.3s, visibility 0.3s;
}
.faq-accordion .accordion__titlebox{
align-items: center;
    padding: 25px 15px;
}
.faq-accordion .accordion__content{
    padding: 0px 15px !important;
}

.faq-accordion  .accordion__section.open .accordion__title {
    color: #2c2f36;
}

.faq-accordion  .accordion__section{
    margin-bottom: 0px !important;
}

@media screen and (max-width:415px){
    .faq-accordion .accordion__content {
    padding: 0px 0px !important;
}
.main-btm-btn{
    margin-top: 15px !important;
}
.sp-kiosk li{
    display: flex;
    line-height: 1.8em !important;
}
.sp-kiosk li img{
    margin-top: 7px !important;
}
.hero-kiosk .btn{
       padding: 12px 8px;
       font-size: 13px;
}
}

@media screen and (min-width:992px){
    .faq-accordion{
        width: 80%;
        margin: auto;
    }
   
}

@media screen and (max-width:993px){
     .pro-value h6 {
    height: 21px;
    font-size: 8px;
    }
}

@media screen and (max-width:650px){
    .hero-kiosk{
        width:100%;
    }
}


@media screen and (max-width:415px){
    .btn-mob{
            flex-wrap: wrap;
            gap:15px !important;
}
.banner-cap-col .btn{
        padding: 12px 12px !important;
    font-size: 12px !important;
}
.banner-cap-col .arr-button span:after {
    top: 5px;
}
    }

@media only screen and (max-width:360px) {
    .menu-link {
        font-size: 19px !important;
    }
}
@media screen and (max-width: 577px) {
    .res-view .operations {
        height: 611px;
    }
}
@media screen and (max-width: 415px) {
    .res-view .operations {
        height: 507px;
    }

    .pill-retail .accordion-content.open {
        max-height: 100% !important;
        height: 650px !important;
    }
}
@media screen and (max-width: 360px) {
    .res-view .operations {
        height: 467px;
    }
}

@media screen and (max-width:480px){
    .br-word{
        display: block;
    }
}
@media screen and (min-width:480px){
    .br-word{
        display: inline;
    }
}





/* .language .form-control{
    border: none;
    padding: 0 !important;
    margin: 0 0 0 30px !important;
    background: transparent !important;
    border: none !important;
    font-size: inherit;
}
.language .form-control option{
    padding:10px;
}
.language .form-control:focus{
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 600px) {  
    .language-col{
        position: absolute;
        right: 80px;
    }
} */
.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 83px;
   padding: 4px 8px 4px 8px !important;
    font-size: 14px;
    border: 0;
    background-color: #fff;
    cursor: pointer;

    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 18px;
}

/* Arrow */
.custom-select::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);

    width: 9px;
    height: 10px;

    background-image: url("https://cdn.lithospos.com/web/assets/images/theme/arrow-down-sign-to-navigate.webp");
    background-size: contain;
    background-repeat: no-repeat;

    pointer-events: none;
}

.header-right{
    display: flex;
    justify-content: flex-end;
    gap:20px;
    align-items: center;
}

.custom-select select::focus{
    border:none;
    box-shadow: none;
}

@media screen and (max-width:576px){
    .header-right{
           white-space: nowrap;
    }
    .header-right{
        gap:10px;
    }
}
.custom-select select:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.language-wrapper img {
  height: 13px !important;
   border-radius: 1px;
}


    .language-wrapper {
    position: relative;
    width: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-language {
    cursor: pointer;
       font-weight: 400;
    padding: 0px 30px 0px 10px;

    position: relative;
    border-radius: 4px;
}



/* Dropdown Arrow */
.custom-language::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 45%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.2s ease;
    pointer-events: none;
}

/* Rotate arrow when open */
.custom-language.open::after {
    transform: translateY(-50%) rotate(-135deg);
}

/* Dropdown container */
.language-options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #f7f8f8;
    top: 100%;
    left: 0;
    z-index: 999;
    border-radius: 4px;
    color: #000 !important;
    font-weight: 400;

    /* Animation state */
    opacity: 0;
    transform: translateY(-5px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;

    /* Transition for smooth slide-down */
    transition: 
        opacity 0.3s ease-out, 
        transform 0.3s ease-out, 
        max-height 0.3s ease-out;
}

/* Open state */
.language-options.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px; 
    pointer-events: auto;
}

.language-options.show {
    display: block;
}
.language-item {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.language-item:hover {
    background: #f2f2f2;
}

.language-item img {
    width: 18px;
}
.selected-language{
    color:#000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
    


.custom-language.open::after {
    top: 61%;
}

.dir-flex{
    display: flex;
    align-items: center;
}

@media screen and (max-width:360px){
    .talk-col{
        font-size: 12px;
    }
    .header-right {
      gap:0;
      font-size: 12px;
    }
   
}


@media screen and (min-width:992px){
    .d-flex-logo{
    display: flex;
    margin-top: 83%;
    gap:20px;
   
}
.d-flex-logo img{
height:35px;
}
  .d-mob-logo{
    display: none;
  }
}
@media screen and (max-width:992px){
   .d-mob-logo{
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
       gap:20px;
   }
   .d-mob-logo img{
height:35px;
}
  .d-flex-logo{
    display: none;
  }
}