@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Hairline.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-Hairline.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-ExtraLight.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Light.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Regular.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Medium.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-DemiBold.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-DemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Bold.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-ExtraBold.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Trial-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT-hoves';
    src: url('../fonts/TT-Hoves-Trial-Black.woff2') format('woff2'),
        url('../fonts/TT-Hoves-Pro-Trial-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "TT-hoves";
    color: #000;
}
.wrapper{
    overflow-x: hidden;
}

.custom-box {
    max-width: 1674px;
}

.btn-red {
    background-color: #E0312F;
    color: #fff;
    border-radius: 30px;
    height: 54px;
    border: 1px solid #E0312F;
    padding: 5px 35px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-red:hover {
    color: #E0312F;
    background-color: #fff;
}

.btn-white {
    background: #fff;
    color: #E0312F;
    border-radius: 30px;
    font-weight: 600;
    padding: 5px 35px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#main {
    background-color: #fff;
    padding-top: 90px;
}

/* header */

#header {
    z-index: 99;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: #fff;
    height: 90px;
    padding: 10px 0;
    box-shadow: 0px 3px 14px #0000000F;
    display: flex;
    align-items: center;
}

#header .navbar {
    padding: 0;
}

.header-btn .btn-outline-success {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.header-btn {
    margin-left: 50px;
}

#spinner {
    top: 0;
    right: -40px;
    font-size: 22px;
}

.passwordIcon {
    top: 27px !important;
}

#showHide,
#showHide2,
#showHideConfirm {
    position: absolute;
    z-index: 999999;
    right: 12px;
    font-size: 22px;
    top: 50px;
    cursor: pointer;
    color: #000;
}

#showHide2 .fa-check {
    color: green
}

#showHideConfirm {
    top: 50px !important;
    right: 25px !important;
}

#showHide #email_spinner,
#showHide2 #email_spinner {
    position: absolute;
    z-index: 999999;
    right: 12px;
    font-size: 22px;
    top: 0;
    cursor: pointer;
    color: #000;
}

.navbar .navbar-collapse {
    justify-content: flex-end;
}

.navbar .nav-item {
    padding-right: 60px;
}

.navbar .nav-item:last-child {
    padding-right: 0;
}

.navbar .nav-item .nav-link {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    transition: ease all .5s;
    position: relative;
}

.navbar .nav-item .nav-link::before {
    content: '';
    position: absolute;
    width: 0%;
    bottom: -5px;
    height: 2px;
    background: #E0312F;
    transition: ease all .5s;
}

.navbar .nav-item .nav-link:hover {
    color: #E0312F;
}

.navbar .nav-item .nav-link:hover:before {
    width: 80%;
}

.header-btn .btn-outline-success:hover {
    background-color: #e0312fd6;
    color: #FDCB44;
    border-color: #FDCB44;
}

.header-dropdown .dropdown-toggle::after {
    display: none;
}

.header-dropdown:hover .dropdown-menu {
    display: block;
}

.header-dropdown:hover .dropdown-menu {
    display: block;
    padding: 20px;
    width: 250px;
    border-top: 2px solid #e0312f;
}

.header-dropdown .dropdown-menu .dropdown-item {
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
}

.header-dropdown .dropdown-menu .dropdown-item:hover {
    background: none;
    color: #e0312f;
}

.header-dropdown .dropdown-menu .dropdown-item:last-child {
    padding: 0;
    margin: 0;
    border: none;
}

/* .header-dropdown .dropdown-menu::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
    top: -9px;
    left: 20px;
} */
.header-dropdown .btn.focus,
.btn:focus {
    box-shadow: unset !important;
}

.header-dropdown .nav-link:hover {
    color: #E0312F !important;
}

.header-btn .btn {
    font-weight: 500;
    padding: 5px 25px;
    display: flex;
    transition: ease all .5s;
    align-items: center;
}

.header-btn .btn:hover {
    flex-direction: row-reverse;
}

.header-btn .btn .icon {
    margin-right: 15px;
    color: #fff;
    border-radius: 50%;
    padding: 0px;
    font-size: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.header-btn .btn:hover .icon {
    margin-right: 0;
    margin-left: 15px;
    color: #E0312F;
}

/* banner */
.main-top-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    height: calc(100vh - 90px);
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FCFCFC 100%);
    box-shadow: 0px 3px 44px #0000001A;
}

.banner-home-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
}
.main-top-banner .main-banner {
    margin-bottom: 200px;
}
.main-banner h1 {
    font-weight: 700;
    color: #E0312F;
    /* font-size: 60px; */
    text-align: left;
    margin-bottom: 15px;
}
.main-banner h1 {
    font-size: 25px;
}
.main-banner h1 .text-large {
    font-size: 50px;
}
.main-banner h1 .text-small {
    font-size: 40px;
}
.banner-slider .slick-dots li{
    margin: 0;
}
.banner-slider .slick-dots li button{
    width: 20px;
    height: 20px;
}
.banner-slider .slick-dots li button:before{
    font-size: 12px;
}
.banner-slider .slick-dots li.slick-active button:before {
    color: #e0312f;
}
.main-banner p {
    font-size: 26px;
    line-height: 38px;
    color: #000;
    font-weight: 300;
    margin-bottom: 40px;
}
.icons-slider {
    width: 320px;
    height: 80px;
    overflow: hidden;
    margin-bottom: 70px;
}

.icons-slider .icon-holder {
    filter: hue-rotate(259deg);
    width: 100%;
    height: 100%;
}

.icons-slider .icon-holder lottie-player {
    transform: scale(4);
}
.main-top-banner .container.custom-box {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.main-top-banner .logo-part {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.about-banner {
    text-align: center;
    font-family: "sofia-pro";
    font-weight: 400;
    color: #C9D7ED;
    font-size: 28px;
    margin-bottom: 78px;
}

.banner-exp {
    position: absolute;
    bottom: -220px;
}

.banner-btn {
    text-align: left;
}

.banner-btn .btn-primary {
    border-color: #fff;
    padding: 15px;

    background-color: transparent;
    font-size: 24px;
    border-radius: 11px;
}

.banner-btn .btn-primary:hover {
    background-color: #fff;
    color: #e0312fd6;
}

.banner-exp img {
    width: 100%;
}

.about-bg-color {
    background-color: #fff !important;
}

/* business section */
.business {
    padding-top: 300px;
    margin-bottom: 86px;
}

.our-business h2 {

    font-size: 60px;
    color: #e0312fd6;
    text-align: left;
    font-weight: 600;
    margin-bottom: 60px;
}

.our-business h2 span {

    font-size: 60px;
    color: #E0312F;
    font-weight: 600;
}

.our-business p {
    font-family: "sofia-pro";
    font-weight: 400;
    font-size: 28px;
    color: #949EB2;
    margin-bottom: 80px;
}

.business-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.business-btn .btn-primary:hover {
    color: #FDCB44;
    background-color: #e0312fd6;
}

.business-results img {
    width: 564px;
}

.business-results {
    text-align: right;
}

.business-results-img {
    width: 568px;
    margin: 0 auto;
}

/* features section */
.our-features h4 {
    text-align: center;
    font-family: "sofia-pro";
    font-weight: 400;
    color: #E0312F;
    font-size: 28px;
    margin-bottom: 15px;
}

.main-features h2 {

    font-size: 60px;
    color: #e0312fd6;
    text-align: center;
    font-weight: 600;
}

.statistics img {
    width: 546px;
}

.getting-start h3, .getting-started h3 {
    font-size: 2rem;
    color: #000;
    font-weight: 500;
    font-family: "niveau-grotesk";
    margin-bottom: 28px;
}

.getting-start p, .getting-started p {
    font-family: "sofia-pro";
    font-weight: 400;
    font-size: 22px;
    color: black;
    margin-bottom: 25px;
    position: relative;
}

.getting-start {
    margin-bottom: 30px;
    padding-top: 57px;
}

.getting-started {
    margin-bottom: 30px;
}

.selling {
    list-style: none;
    padding: 0;
    padding-top: 40px;
}

.selling li {
    margin-bottom: 10px;
}

.selling li img {
    float: left;
    padding-top: 5px;
}

.selling li p {
    padding-left: 50px;
    font-size: 26px;
    color: #06285A;
    font-family: "sofia-pro";
    font-weight: 600;
}

.about-features {
    background-image: url(../images/Yellow\ BG.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 100px;
    margin-top: 100px
}

.own-features {
    background-image: url(../images/Pink\ BG.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 37px;
}

.my-features {
    background-image: url(../images/Gray\ BG.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 120px;
    margin-top: 100px;
}

.statistic img {
    width: 588px;
}

.statics img {
    width: 572px;
}

.getting-starts {
    margin-bottom: 30px;
}

.getting-starts h3 {
    font-size: 42px;
    color: #e0312fd6;
    font-weight: 700;

    margin-bottom: 30px;
    padding-top: 47px;
}

.getting-starts p {
    font-family: "sofia-pro";
    font-weight: 400;
    font-size: 28px;
    color: #949EB2;
    margin-bottom: 40px;
}

/* .getting-start P::after {

    content: "";
    height: 2px;
    width: 2px solid border;
    height: 2px;
    position: absolute;
    border: 2px solid;
    width: 231px;
    bottom: -40px;
    left: 0px;
    color: #e0312fd6;
} */

/* .getting-started P::after {

    content: "";
    height: 2px;
    width: 2px solid border;
    height: 2px;
    position: absolute;
    border: 2px solid;
    width: 231px;
    bottom: -42px;
    left: 0px;
    color: #e0312fd6;
} */

/* working section */

.our-working h2 {
    text-align: center;
    font-size: 49px;
    color: #e0312fd6;
    margin-bottom: 20px;
}

.our-working p {
    text-align: center;
    color: black;
    font-size: 28px;
    font-family: "sofia-pro";
    margin-bottom: 50px;
}

.about-upload h3 {
    font-size: 34px;
    color: black;
    text-align: center;

    padding-right: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-upload p {
    font-size: 28px;
    text-align: center;
    color: black;
    font-family: "sofia-pro";
    padding-right: 60px;
}

.working {
    margin-bottom: 130px;
}

/* software section */

.perfect-software img {
    width: 728px;
}

.pos-software {
    padding-top: 115px;
}

.pos-software h2 {
    font-size: 60px;

    color: #e0312fd6;
    font-weight: 600;
    margin-bottom: 22px;
    text-align: left;
}

.pos-software p {
    color: #949EB2;
    font-size: 28px;
    font-family: "sofia-pro";
    text-align: left;
    margin-bottom: 37px;
}

.about-stores {
    font-size: 20px;
    color: #06285A;
    font-family: "sofia-pro";
    font-weight: 600;
    padding: 0;
    margin-bottom: 45px;
}

.about-stores span {
    padding-left: 150px;
}

.software-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.software-btn .btn-primary:hover {
    color: #FDCB44;
    background-color: #e0312fd6;
}

.software {
    margin-bottom: 123px;
}

.d-flex p {
    flex: 1;
}

.drafts img {
    width: 100%;
    height: 100%;
}

/* power section */

.pos-power img {
    width: 667px;
}

.extend-power h2 {
    font-size: 60px;

    color: #e0312fd6;
    font-weight: 600;
    margin-bottom: 28px;
    text-align: left;
    padding-top: 50px;
}

.extend-power p {
    color: #949EB2;
    font-size: 28px;
    font-family: "sofia-pro";
    text-align: left;
    margin-bottom: 24px;
    position: relative;
}

.extend-power p::after {
    content: "";
    height: 2px;
    width: 2px solid border;
    height: 2px;
    position: absolute;
    border: 2px solid;
    width: 231px;
    bottom: -33px;
    left: 0px;
    color: #e0312fd6;
}

.extend-power {
    padding-top: 20px;
}

.power-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.power-btn .btn-primary:hover {
    color: #FDCB44;
    background-color: #e0312fd6;
}

.power-btn {
    padding-top: 40px;
}

.power {
    margin-bottom: 120px;
}

.sellings {
    list-style: none;
    padding: 0;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.sellings li {
    margin-bottom: 10px;
    width: 50%;
}

.sellings li img {
    float: left;
    padding-top: 9px;
}

.sellings li p {
    padding-left: 50px;
    font-size: 26px;
    color: #06285A;
    font-family: "sofia-pro";
    font-weight: 600;
}

.my-form {
    border: none !important;
    border-bottom: 1px solid black !important;
    border-radius: 0 !important;
    font-size: 21px !important;
    color: #e0312fd6 !important;
    font-family: "sofia-pro";
}

/* testimonials */

.testi1 {
    background-image: url(../images/Testimonial\ BG-1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 1px;
}

.testi2 {
    background-image: url(../images/Testimonial\ BG-2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 1px;
}

.main-testimonials h2 {
    font-size: 60px;

    color: #e0312fd6;
    font-weight: 600;
    margin-bottom: 70px;
    text-align: center;
}

.testi1 p {
    color: #949EB2;
    font-size: 28px;
    font-family: "sofia-pro";
    text-align: left;
    margin-bottom: 75px;
    justify-content: center;
    align-items: center;
}

.testi2 p {
    color: #949EB2;
    font-size: 28px;
    font-family: "sofia-pro";
    text-align: left;
    margin-bottom: 75px;
    justify-content: center;
    align-items: center;
}

.testi2 span {
    font-size: 30px;
    color: #06285A;
    font-family: "sofia-pro";
    font-weight: 600;
}

.testi1 span {
    font-size: 30px;
    color: #06285A;
    font-family: "sofia-pro";
    font-weight: 600;
}

.testi1 .testimon {
    color: #949EB2;
    font-size: 22px;
    font-family: "sofia-pro";
}

.testi2 .testimon {
    color: #949EB2;
    font-size: 22px;
    font-family: "sofia-pro";
}

.testimonials {
    margin-bottom: 120px;
}

.home-testimonials {
    padding-top: 50px;
}

/* logos */
.main-logos {
    display: flex;
    list-style: none;
    padding-left: 0;
    max-width: 100%;
    width: 950px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.main-logos li {
    padding-left: 40px;
}

.main-logo {
    display: flex;
    list-style: none;
    padding-left: 550px;
}

.main-logo li {
    padding-left: 30px;
}

.main-brands h2 {
    font-size: 49px;
    color: #e0312fd6;
    margin-bottom: 80px;
    text-align: center;
}
.branding {
    padding: 80px 0px;
}

/* trail */

.about-trail h2 {
    font-size: 60px;
    color: #E0312F;
    font-weight: bold;
    margin-bottom: 5px;
}
.about-trail h2 span {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}


.about-trail h5 {
    color: #fff;
    font-size: 18px;
    text-align: left;
    margin-bottom: 0;
}

.trailer {
    background-image: url(../images/trail-bg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    padding: 50px 100px;
    margin-top: 80px;
    border-radius: 40px;
    height: 370px;
    display: flex;
    align-items: center;
}
.about-trail.about-trail-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trailer .icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.trailer .icons .icon {
    height: 280px;
    width: 280px;
}
.trailer .icons .icon-2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.trailer .icons .icon .icon-holder {
    transform: scale(1.2);
}
.icon-holder-bg{
    background-image: url(../images/lottie-bg.png);
    background-size: 100% 100%;
    width: 185px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-holder-bg lottie-player{
    width: 85px;
    height: 85px;
}
.trail-btn {
    text-align: left;
    padding-top: 50px;
}

.trail-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.trail-btn .btn-primary:hover {
    color: #e0312fd6;
    background-color: #fff;
}

.trail {
    padding-bottom: 80px;
    margin-top: 30px;
}

.trailing {
    margin-left: 35px;
}

.hair-img img {
    width: 75px;
    height: 72px;
}

ul.main-logos li img {
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.75;
}

ul.main-logos li img:hover {
    transform: scale(1.1);
    opacity: 1;

}

/* footer */
#footer {
    background-color: #000;
    padding-bottom: 0;
    position: relative;
    padding-top: 120px;
}

.footer-corner-logo {
    position: absolute;
    right: 0;
    bottom: 0;
}

.POS-links h3 {
    font-size: 24px;
    color: #ffff;
    font-weight: 700;
    margin-bottom: 50px;
}

.POS-links ul {
    padding: 0;
    list-style: none;
}

.POS-links ul li a {
    color: #fff;
    font-size: 18px;
    opacity: 0.65;
    text-align: left;
    text-decoration: none;
}

.POS-links ul li a:hover {
    /* color: #E0312F; */
    opacity: 1;
}

.POS-links ul li {
    margin-bottom: 20px;
}

.POS {
    /* padding-top: 70px; */
}

.footer-img {
    margin-bottom: 37px;
}

.social-links {
    display: flex;
}

.social-links li {
    padding-right: 15px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #799ACB;
    background-color: transparent;
    background-clip: padding-box;
    border: 2px solid #799ACB;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-padding {
    padding: 0 0 30px;
}
.footer-bottom {
    background: #E0312F;
    padding: 15px 0;
    margin-top: 80px;
}
.copyrights {
    text-align: center;
    word-break: break-all;
}

.copyrights p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.copyrights .bottom-footer-link {
    text-decoration: none;
    color: #fff;
}

.copyrights .bottom-footer-link:hover {
    color: #FDCB44;

}

/* contact page */
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: transparent !important;
    border-color: transparent !important;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none !important;
}

.drop-toggle::after {
    color: #e0312fd6;
    display: inline-block;
    margin-left: 15.8em !important;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    font-size: 33px !important;
}

.drop-toggle {
    font-size: 30px;
    margin-top: -3px;
    color: #e0312fd6 !important;
    font-family: 'sofia-pro';
    text-decoration: none !important;
}

.down-toggle::after {
    color: #e0312fd6;
    display: inline-block;
    margin-left: 5.255em !important;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    font-size: 33px !important;
}

.down-toggle {
    font-size: 30px;
    margin-top: -3px;
    color: #e0312fd6 !important;
    font-family: 'sofia-pro';
    text-decoration: none !important;
}

.about-info:hover i,
.about-info:hover a {
    color: #fff;
}

.contact-no:hover i,
.contact-no:hover a {
    color: #fff;
}

.locate:hover i,
.locate:hover a {
    color: #fff;
}

.contact-main {
    background: #FBFCFF;
}

.in-touch {
    padding-top: 160px;
}

.in-touch h3 {
    font-size: 60px;
    color: #E0312F;
    font-weight: 700;
    margin-bottom: 60px;
}

.in-touch p {
    color: #949EB2;
    font-size: 28px;
    margin-bottom: 80px;
    font-family: "sofia-pro";
}

.about-info {
    width: 100%;
    height: 72px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0px 5px 50px #06369f1a;
    position: relative;
}

.about-info:hover {
    background: #E0312F;
}

.about-info a:hover {
    color: #fff;
}

.about-info a i:hover {
    color: #fff;
}

.contact-no:hover {
    background: #E0312F;
    ;
}

.contact-no a:hover {
    color: #fff;
}

.contact-no a i:hover {
    color: #fff;
}

.locate:hover {
    background: #E0312F;
    ;
}

.locate a:hover {
    color: #fff;
}

.locate a i:hover {
    color: #fff;
}

.about-info i {
    position: absolute;
    top: 25px;
    left: 55px;
    color: #949EB2;
    font-size: 30px;
}

.about-info a {
    padding-left: 100px;
    font-size: 22px;
    color: #949EB2;
    position: absolute;
    top: 20px;
    text-decoration: none;
}

.contact-no {
    width: 100%;
    height: 72px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0px 5px 50px #06369f1a;
    position: relative;
}

.contact-no i {
    position: absolute;
    top: 25px;
    left: 55px;
    color: #949EB2;
    font-size: 30px;
}

.contact-no a {
    padding-left: 100px;
    font-size: 22px;
    color: #949EB2;
    position: absolute;
    top: 20px;
    text-decoration: none;
}

.locate {
    width: 100%;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 50px #06369f1a;
    position: relative;
}

.locate i {
    position: absolute;
    top: 25px;
    left: 55px;
    color: #949EB2;
    font-size: 30px;
}

.locate a {
    padding-left: 100px;
    font-size: 22px;
    color: #949EB2;
    position: absolute;
    top: 20px;
    text-decoration: none;
}

.location-image img {
    width: 100%;
    margin-left: -58px;
}

.contact-us-form {
    background: #fff;
    margin-top: 175px;
    padding: 100px;
    border-radius: 20px;
    box-shadow: 0px 5px 50px #06369f1a;
    margin-bottom: 100px;
}

.contact-form-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 18px;
    font-family: "niveau-grotesk";
    font-size: 24px;
}

.contact-form-btn .btn-primary:hover {
    color: #FDCB44;
    background-color: #e0312fd6;
}

.contact-form-btn {
    text-align: center;
    padding-top: 60px;
}

.form-group {
    margin-bottom: 2rem;
}

/* payment */
.types {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.type1 {
    padding-right: 80px;
    cursor: pointer;
}

.type1 img {
    width: 96px;
}

.type1 p,
.type1 p1 {
    font-size: 20px;
    text-align: center;
    /* padding-left: 23px; */
}

.payment-padding {
    padding: 70px 0 30px 0;
}

.payment-content {
    padding: 0 !important;
}

.payment-content p {
    padding: 10px 15px;
    text-align: unset !important;
}

.payment-method-content {
    padding: 0 0 70px;
}


.methods {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.method1 {
    padding-right: 50px;
    cursor: pointer;
    padding-left: 40px;
}

.method1 img {
    width: 96px;
}

.method1 p {
    font-size: 22px;
}

.payment-content-two p {
    padding: 10px 0;
}

/* retail page */
.retail-image {
    text-align: center;
    margin-top: -100px;
    margin-bottom: 100px;
}

.retail, .sync {
    padding: 70px 0px;
}

.about-retailing h2 {
    margin-bottom: 23px;
}

.about-retailing p {
    font-size: 22px;
}

.pos-brands {
    background: #f6f7f8;
    padding: 30px;
    padding-bottom: 90px;
}

.abt-retail h2 {
    text-align: center;
    margin-bottom: 25px;
}

.abt-retail p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 75px;
}

.clothing {
    background: #fff;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    transition: all ease-in-out .3s;
}

.clothing:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 1rem -1rem rgb(20 30 40 / 10%);
}

.abt-retail {
    margin-top: 50px;
}

.clothing h4 {
    padding-top: 23px;
    font-size: 20px;
}

.cloud {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../images/hero-3.jpg);
    padding: 4rem 0;
}

/* clothing page */
.retailer {
    padding-top: 80px;
    padding-left: 65px;
}

.tailing {
    padding-top: 100px;
}

.about-cloud h2 {
    text-align: center;
    color: #fff;
    padding-bottom: 15px;
}

.about-cloud p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 55px;
}

.computing {
    text-align: center;
}

.computing img {
    margin-bottom: 22px;
}

.computing h4 {
    color: #fff;
    margin-bottom: 20px;
}

.computing p {
    color: #fff;
    font-size: 20px;
}

.selling-online {
    background-color: azure;
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.in-store {
    text-align: center;
}

.in-store img {
    width: 100px;
    padding-bottom: 20px;
}

.in-store h3 {
    font-size: 25px;
    padding-bottom: 18px;
}

.in-store p {
    font-size: 20px;
}

.retail-platform {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-platform h2 {
    text-align: center;
    font-size: 28px;
}

.about-platform p {
    text-align: center;
    padding-top: 17px;
    font-size: 20px;
    margin-bottom: 60px;
}

.tablet {
    text-align: center;
    margin-bottom: 50px;
}

.tablet img {
    padding-bottom: 20px;
}

.tablet h4 {
    padding-bottom: 20px;
}

.platform-button {
    text-align: center;
}

.plt-btn {
    border: 1px solid #32bdb9;
    background: transparent;
    color: black;
    padding: 10px 19px 10px 19px;
}

.get-start {
    background-color: #f6f7f8 !important;
    padding: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.abouting-start {
    text-align: center;
}

.abouting-start p {
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 70px;
}

.data-import {
    text-align: center;
}

.data-import img {
    padding-bottom: 20px;
}

.tool-img img {
    width: 60px;
    height: 70px;
}


/* feature page */

.about-sale-point {
    position: sticky;
    top: 90px;
    margin-top: 90px;
}

.about-sale-point ul {
    list-style: none;
}

.about-sale-point li {
    padding-bottom: 20px;
}

.about-sale-point a {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
}

.about-sale-point a.active {
    color: #e0312fd6;
}

.main-point h3 {
    padding-top: 90px;
    font-size: 31px;
    padding-bottom: 20px;
    font-weight: bold;
    color: #E0312F;
}

.sale-desc h4, .sale-point-desc h4, .checking-out h4 {
    font-size: 20px;
    padding-bottom: 15px;
    font-weight: bold;
}

.sale-desc p {
    font-size: 18px;
    padding-bottom: 22px;
    margin: 0;
}

.sale-point-desc {
    padding-top: 90px;
}

.sale-point-desc p {
    font-size: 18px;
    padding-bottom: 22px;
}

#salepoint {
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#checkout {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

.main-checkout h4 {
    font-size: 26px;
    padding-bottom: 20px;
    color: #E0312F;
}

.checking-out p {
    font-size: 18px;
    padding-bottom: 22px;
}

#inventory {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#customer {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#integration {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#support {
    padding-top: 55px;
    padding-bottom: 45px;
}

#multi {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#store {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#eCommerce {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#payment {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#reporting {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

#hardware {
    padding-top: 55px;
    border-bottom: 2px solid gainsboro;
    padding-bottom: 45px;
}

/* services page */

.services-features {
    background: #FBFCFF;
    padding-top: 75px;
}

.abt-features {
    margin-top: 100px;
    margin-bottom: 100px;
}

.feature-sale-point {
    padding-top: 150px;
}

.service-banner {
    background-image: url(../images/trail-bg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 125px;
    background-color: #000;
}

.service-head h3 {
    text-align: center;
    padding-top: 50px;
    font-size: 54px;
    color: #fff;

    font-weight: 600;
}

.abt-image img {
    width: 77%;
    padding-top: 60px;
}

.owe-image img {
    width: 77%;
}

.your-features {
    padding-top: 70px;
    padding-bottom: 50px;
}

.matics {
    padding-top: 70px;
    margin-bottom: 50px;
}

.matics img {
    width: 77%;
}

.form-btn a {
    color: #e0312fd6;
}

/* login page */

.form-control:focus,
.form-control:active {
    border-color: #949EB2 !important;
}

.form-control:focus {
    color: #495057;
    background-color: transparent !important;
    border-color: #949EB2 !important;
    outline: 0;
    box-shadow: none !important;
}


.optimistic {
    background-image: url(../images/Header\ BG\ \(1\).svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 1036px;
    width: 100%;
    background-color: #FBFCFF;
}

.m-0 {
    /* background-color: #FBFCFF; */
}

.sales-point h2 {
    font-size: 42px;
    color: #e0312fd6;

    font-weight: 200;
    padding-top: 110px;
}

.sales-point {
    text-align: center;
}

.about-login-form {
    background-color: #FBFCFF;
    padding: 50px 80px;
    padding-bottom: 125px;
}

.POS-logo {
    text-align: center;
    margin-bottom: 50px;
}

.login-form {
    text-align: center;
}

.login-form h3 {
    font-size: 36px;

    color: #e0312fd6;
    font-weight: 400;
    margin-bottom: 50px;
}

.login-form p {
    color: #949EB2;
    font-size: 24px;
    font-family: "sofia-pro";
}

label {
    color: #949EB2;
    font-size: 24px;
    font-family: "sofia-pro";
}

.login-wrapper,
.sign-up-wrapper {
    background-image: url(../images/login-bg.svg);
    padding: 170px 118px 70px;
    border-radius: 0 20px 80px 0;
    height: 100%;
}

.sign-up-wrapper {
    padding: 120px 130px 150px;
}

.login-wrapper h3,
.sign-up-wrapper h3 {
    font-size: 32px;
    color: #e0312fd6;
    width: 60%;
    margin: 0 auto 20px;
    font-weight: 400;
}

.sign-up-wrapper h3 {
    width: 80%;
}

.login-lottie {
    width: 30px;
    position: absolute;
    top: 50%;
    left: 21%;
    transform: translateY(10%);
}

.contact-us-info-box {
    padding: 20px;
}

.contact-us-info-box a {
    padding-left: 75px;
}

.form-id {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    padding-right: 280px !important;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: none;
    border-bottom: 1px solid #949EB2 ! important;
    border-radius: 0 !important;
    font-family: "sofia-pro";
    cursor: pointer;
}
span.demo-data-checkbox {
    top: 5px !important;
}
.form-group.col-md-12 span {
    color: #e0312fd6;
    font-size: 30px;

    text-align: end;
    position: absolute;
    top: 35px;
    /* top: 5px; */
    right: 27px;
}


.form-group.col-md-12 .text-danger,
.form-group.col-md-12 .progress-bar_text {
    color: #dc3545 !important;
    font-weight: 300;
    text-align: start;
    position: initial;
    font-size: 1rem;
}

.form-group.col-md-12 .password-verdict,
.form-group.col-md-12 .strength_text {
    font-size: 16px;
    position: initial;
}

.form-group.col-md-12 .fullwidth {
    text-align: end;
}

.img-wrapper,
.img-wrapper .drafts {
    height: 100%;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
}

label.error {
    color: red;
    margin-left: 5px;
    font-size: 15px;
    font-weight: 300;
}

#showHide i,
#showHideConfirm i {
    position: absolute;
    z-index: 999999;
    right: 12px;
    top: 30px;
    cursor: pointer;
    color: #000;
}

#showHideConfirm i {
    top: 5px;
    right: 0;
}

.fa-eye {
    position: absolute;
    top: 56px;
    right: 56px;
    font-size: 30px;
    color: #e0312fd6;
}

.form-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 8px 35px;

    font-size: 18px;

}

.form-btn .btn-primary:hover {
    background-color: #e0312fd6;
}

.form-btn a:hover {
    color: #FDCB44;
    text-decoration: none;
}

.form-btn {
    padding-top: 50px;
    margin-bottom: 20px;
}

.about-pass {
    padding-top: 60px;
    margin-left: 170px;
    margin-bottom: 61px;
}

.about-pass p a {
    font-size: 24px;
    color: #949EB2;
    text-decoration: underline;
}

.about-user {
    text-align: center;
    margin-bottom: 22px;
}

.about-user span {
    font-size: 24px;
    color: #949EB2;

}

.about-user span a {
    color: #e0312fd6;
    text-decoration: underline;
}

.back-home {
    text-align: center;
}

.back-home span a {
    font-size: 24px;
    color: #949EB2;

    text-decoration: underline;
}

.about-login-form .form-row {
    padding: 5px;
}

.form-group .col-md-3 span {
    position: absolute;
    top: 51px;
    left: 16px;
}

.dropdown .my-btn {
    background: #fff;
    border: none;
    color: #000;
    position: absolute;
    top: -55px;
    box-shadow: none;
}

.dropdown .mine-btn {
    background: #FBFCFF ! important;
}

.my-btn span {
    color: #e0312fd6;
    font-size: 24px;
    padding-left: 10px;

    position: absolute;
}

.dropdown-toggle::after {
    color: #e0312fd6;
    display: inline-block;
    margin-left: 3.255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    font-size: 21px;
}

/* url */

.main-cont {
    background-color: #FBFCFF;
}

.url-form form {
    padding: 35px;
    background: #fff;
    width: 75%;
    border-radius: 20px;
    margin-top: 55px;
    box-shadow: 0px 5px 50px #06369f1a;
}

.url-form {
    text-align: -webkit-center;
}

.url-btn {
    text-align: center;
}

.form-btn .btn-primary:hover {
    background-color: #e0312fd6;
    color: #FDCB44;
}

.maining-url {
    padding-top: 85px;
}

.url-btn .btn-primary {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FDCB44;
    border-color: none;
    border-color: #FDCB44;
    border-radius: 9px;
    padding: 5px;

    font-size: 18px;
    padding-right: 50px;
    padding-left: 50px;
}

.amu-btn {
    background: none;
    color: #949EB2;
    outline: none;
    border: none;
    border-bottom: 2px solid gainsboro;
    border-radius: 0;
    font-size: 24px;
}

.amu-btn:hover {
    color: none;
    background-color: none;
}

.about-loader {
    text-align: center;
}

.amu-btn:hover {
    background: none;
    color: gray;
}

/* pricing */

.service-head p {
    text-align: center;
    padding-top: 5px;
    color: #fff;
    font-size: 28px;
    font-family: "sofia-pro";
}

.main-pricing {
    padding-top: 100px;
    background: #FBFCFF;
    background-color: #FBFCFF;
    /* overflow: hidden;
    overflow-x: scroll; */
}

.custom-container {
    margin: 0 auto;
    max-width: 1560px;
    width: 100%;
    padding: 0 15px;
}

.price-abt {
    width: 100%;
    padding: 40px 0;
    min-width: 1200px;
}

.pricing-cont {
    background: #fff;
    padding: 20px 50px 50px 50px;
    border-radius: 80px;
    margin-bottom: 150px;
    box-shadow: 0px 5px 50px #06369f1a;
    width: 100%;
    /* overflow: hidden; */
}

.about-startup {
    flex: 1;
}

.about-rates {
    display: flex;
}

.about-amino {
    display: flex;
    padding: 20px 0;
    align-items: center;
}

.emo p {
    margin: 0;
}

.imo p {
    margin: 0;
}

.about-start {
    flex: 1;
}

.bab {
    display: flex;
    width: 100%;
}

.mine-tab-content {
    flex: 1;
}

.start-up {
    text-align: center;
}

.start-up h3 {
    color: #949EB2;
    font-size: 34px;

    font-weight: 300;
    margin-bottom: 33px;
    padding: 0 30px;
}

.start-up p {
    color: #949EB2;
    font-size: 24px;
    font-family: "sofia-pro";
    margin-bottom: 50px;
    padding: 0 48px;
}

.start-up span {
    font-size: 28px;
    color: #e0312fd6;

    font-weight: 600;
}

.feature-parent-category {
    /* background-color: #e0312fd6; */
    border: none !important;
}

.feature-parent-category p {
    color: #E0312F;
}

.feature-child-category {
    border-bottom: 1px solid #dcdcdf !important;

}

.feature-child-category p {
    font-size: 20px;
}

.feature-child-category .img-fluid {
    width: 50px !important;
    height: 50px !important;
}

.start-btn .btn-red {
    font-weight: 700;
    color: #FFF;
    background-color: #E0312F;
    border-color: #E0312F;
    border-radius: 30px;
    padding: 18px;
    font-size: 18px;
}

.end-btn .btn-red {
    font-weight: 700;
    color: #e0312fd6;
    background-color: #FFFFFF;
    border-color: #E0312F;
    border-radius: 30px;
    padding: 18px;
    font-size: 18px;
}

.end-btn .btn-red:hover {
    background-color: #fff;
    color: #E0312F;
}

.start-btn .btn-red:hover {
    background-color: #fff;
    color: #E0312F;
}

.about-tab p {
    font-size: 22px;
    color: #e0312fd6;
    font-family: "sofia-pro";
    padding-left: 170px;
}

.about-tab img {
    padding-left: 142px;
    margin-top: -22px;
}

.pricing-tabs {
    background-color: #FDEFEE;
    padding: 15px;
    padding-bottom: 4px;
    border-radius: 50px;
}

.nav-pills .nav-link {
    background: none;
    color: #949EB2 !important;
    font-family: "sofia-pro";
    font-size: 26px;
    padding: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link:hover {
    background: #fff;
    color: #e0312fd6 !important;
    border-radius: 52px;
    /* padding: 20px 30px; */
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    padding: 20px 30px;
}

.about-tab {
    padding-left: 72px;
}

ul#pills-tab {
    justify-content: space-between;
    margin-right: -25px;
    width:100%;
}

.start-end {
    background-color: #E0312F;
    margin-top: -91px;
    padding-top: 91px;
    border-radius: 36px 36px 0 0;
    padding-bottom: 50px;
}

.start-end h3 {
    color: #fff;
}

.start-end p {
    color: #fff;
}

.start-end span {
    color: #fff;
}

.price-category {
    background: #FDEFEE;
    padding: 16px;
    margin-top: 68px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-category h3 {
    color: #e0312fd6;
    font-size: 28px;

    font-weight: 700;
    padding-top: 15px;
    padding-left: 40px;
}

.imo {
    color: #949EB2;
    font-size: 25px;
    font-family: "sofia-pro";
    padding-left: 54px;
}

.amino {
    border-bottom: 1px solid #dcdcdf !important;
}

.emo {
    color: #949EB2;
    font-size: 28px;
    font-family: "sofia-pro";
    padding-left: 54px;
}

.plan-category {
    background: #FDEFEE;
    padding: 16px;
    margin-top: 68px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.plan-category h3 {
    color: #e0312fd6;
    font-size: 28px;

    font-weight: 700;
    padding-top: 15px;
    padding-left: 40px;
}

.rafts img {
    height: 1174px;
}

.sell-in {
    background: #F9FBFF;
    padding: 16px;
    margin-top: 68px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.sell-in h3 {
    color: #e0312fd6;
    font-size: 28px;

    font-weight: 700;
    padding-top: 15px;
    padding-left: 40px;
}

.price-order {
    background: #E0312F;
    padding: 16px;
    margin-top: 68px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-order h3 {
    color: #fff;
    font-size: 28px;

    font-weight: 700;
    padding-top: 15px;
    padding-left: 40px;
}

.mobile-view-btn {
    display: none;
}

.frequent {
    text-align: center;
}

.frequent h2 {
    color: #e0312fd6;
    margin-bottom: 30px;
    font-size: 49px;
    margin-top: 40px;

}

.frequent p {
    color: black;
    font-size: 22px;
    font-family: "sofia-pro";
    margin-bottom: 120px;
}
p.about-us-content{
    text-align: justify;
}

.accordion .card-header:after {
    font-family: 'FontAwesome';
    content: "\f068";
    float: right;
    cursor: pointer;
    border-radius: 89%;
    border: 3px solid black;
    padding: 2px 7px;
}

.accordion .card-header.collapsed:after {
    content: "\f067";
    padding: 2px 7px;
    border: 3px solid #000;
    border-radius: 103%;
    cursor: pointer;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #FBFCFF;
    background-clip: border-box;
    border: none !important;
    border-radius: .25rem;
}

.card-header {
    padding: 1.75rem 1.25rem 2.5rem;
    margin-bottom: 0;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-title {
    margin-bottom: .75rem;
    color: #101C26;
    font-size: 22px;

}

.card-body p {
    font-size: 20px;
    color: #949EB2;
    font-family: "sofia-pro";
}

.FAQ {
    margin-bottom: 50PX;
}

.getting-starts img {
    width: 100px;
    height: 100px;
}

.FAQ .accordion .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.tablet img {
    fill: #e0312fd6;
}

a.card-link:hover {
    text-decoration: none;
    color: #000;
}

a.card-link {
    color: #000;
}

.btn-heading.mobile-view {
    display: none;
}

.mobile-view-table {
    display: none;
}

/* tablet pos */
.tablet-business-content h4,
.welcome-pos-smbox-content h4 {
    font-family: "niveau-grotesk";
    font-weight: bold;
    color: black;
    font-size: 28px;
}

.tablet-business-content p,
.welcome-pos-smbox-content p {
    font-family: "sofia-pro";
    /* font-weight: 500; */
    color: black;
    font-size: 22px;
}

.welcome-pos-smbox-content p {
    color: #06285A;
}

.cloud-bg {
    background-image: url('../images/bussiness-bg.svg');
    background-repeat: no-repeat;
    padding: 80px 20px;
}

/* welcome pos */
.welcome-pos-smbox-content {
    background-image: url(../images/welcome-box-bg.svg);
    background-repeat: no-repeat;
    border-radius: 22px;
    padding: 67px;
    background-size: cover;
    height: 100%;
}

.p-handle p {
    flex: 0;
}

h4.current-store-category-name {
    text-decoration: underline;
    align-items: center;
    font-size: 25px;
    font-style: italic;
    color: #eb3264;
}

.form-group .form-id {
    padding: 0px 190px 0 10px !important;
    font-size: 16px !important;
}

.account-url-form .form-btn, .account-url-form .about-pass {
    padding-top: 0;
}
.account-url-form .about-pass {
    padding-right: 35px;
}
.fashion-clothing-img {
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.fashion-clothing-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.demo-data-wrap input:checked~.checkmark {
    background-color: #e0312fd6;
}

.demo-data-wrap {
    position: relative;
}

.checkmark {
    left: 0;
    height: 21px;
    width: 21px;
    background-color: #fff;
    border: 2px #e0312fd6 solid;
}

.demo-data-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-demo-data label {
    white-space: nowrap;
    padding-left: 29px;
}

.demo-data-wrap input:checked~.checkmark:after {
    display: block;
}

.demo-data-wrap .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-demo-data {
    max-width: 75%;
    margin: 0px 35px 0 auto;
}


/* Optimize Retail */

.optimize-retail {
    padding: 150px 0 100px;
    background: #fff;
    overflow: hidden;
}
.optimize-retail .row {
    position: relative;
    right: -500px;
    opacity: 0;
    transition: ease all .5s;
}
.optimize-retail.active .row {
    position: relative;
    right: 0;
    opacity: 1;
}
.optimize-retail .content-heading h2 {
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    margin: 0;
}

.optimize-retail .content-heading h1 {
    font-size: 130px;
    font-weight: bold;
    line-height: 130px;
    margin-bottom: 60px;
}

.optimize-retail .content-heading {
    max-width: 910px;
    margin-left: 50px;
}

.optimize-retail .container.custom-box {
    position: relative;
}

.optimize-retail .container.custom-box:before {
    content: '';
    position: absolute;
    left: 15px;
    top: -151px;
    width: 354px;
    background: #E0312F;
    height: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: ease all .5s;
}
.optimize-retail.active .container.custom-box:before {
    height: 700px;
}
.optimize-retail .other-info {
    max-width: 680px;
    margin-left: auto;
    margin-top: -200px;
}

.optimize-retail .other-info p {
    font-size: 18px;
    color: #000;
    margin-bottom: 70px;
}

.optimize-retail .other-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 30px;
    position: relative;
}

.optimize-retail .other-info ul li {
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 18px;
}

.optimize-retail .other-info ul:before {
    content: '';
    position: absolute;
    left: 0;
    height: 90%;
    width: 3px;
    background: #e0312f;
    border-radius: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.optimize-retail .image {
    height: 100%;
    display: flex;
    align-items: center;
}
.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 300;
    margin: 0;
}

.section-heading .logo-icon {
    margin-bottom: 15px;
}
.retail-bussiness {
    position: relative;
    /* overflow: hidden; */
}
.retail-bussiness .section-heading {
    margin: 0;
}
.retail-bussiness.active .section-heading {
    margin-bottom: 100px;
}
.retail-bussiness.active .categories-list {
    position: absolute;
    right: -100%;
}



.categories-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    right: 0;
    transition: ease all .5s;
}

.categories-list .item {
    width: 20%;
    margin-top: 120px;
    padding: 0 15px;
}

.categories-list .item .section-heading {
    text-align: left;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.categories-list .item .section-heading h2 span {
    font-weight: 600;
    color: #E0312F;
}

.categories-list .item .category-box {
    max-width: 260px;
    margin: 0 auto;
    border-radius: 30px;
    font-size: 14px;
    position: relative;
    color: #fff;
    height: 260px;
}
.categories-list .item .category-box .content {
    position: absolute;
    padding: 20px 36px;
    left: 0;
    bottom: 0;
    width: 100%;
}
.bg-brown {
    background: transparent linear-gradient(46deg, #B2361A 0%, #DB8D69 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #D37B5980;
}

.bg-sky {
    background: transparent linear-gradient(224deg, #52D0F7 0%, #19ABCE 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #51B9D880;
}

.bg-green {
    background: transparent linear-gradient(46deg, #284522 0%, #5C8856 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #496F4380;
}

.bg-blue {
    background: transparent linear-gradient(46deg, #5886E1 0%, #398DBD 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #478ACD80;
}

.bg-dark-blue {
    background: transparent linear-gradient(46deg, #1C3557 0%, #40619D 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #39588D80;
}

.bg-purple {
    background: transparent linear-gradient(46deg, #680B8B 0%, #A42FD0 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #881EB080;
}

.bg-light-green {
    background: transparent linear-gradient(46deg, #468989 0%, #83D4D8 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #69B5B780;
}

.bg-yellow {
    background: transparent linear-gradient(45deg, #D39727 0%, #F0C842 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #E7B93A80;
}

.bg-red {
    background: transparent linear-gradient(45deg, #D13230 0%, #FF7F7E 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 27px #E0312F80;
}
.category-box .content .icon {
    margin-bottom: 20px;
    transition: ease all .5s;
    transform: scale(1);
    width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
}
.item .category-box:hover .content .icon{
    transform: scale(1.1);
}


.icon.scale .icon-holder {
    transform: scale(2.5);
}
.icon.scale1 .icon-holder {
    transform: scale(1.5);
}
.icon.scale2 .icon-holder {
    transform: scale(2.3);
}
.icon.scale3 .icon-holder {
    transform: scale(1.3);
}
.icon.scale4 .icon-holder {
    transform: scale(1.7);
}
.icon.scale5 .icon-holder {
    transform: scale(1.7);
}
.icon.scale6 .icon-holder {
    transform: scale(3);
    position: relative;
    top: 40px;
}
.item .category-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

.tag label {
    color: #fff;
    opacity: 0.6;
    margin-right: 7px;
    font-size: 14px;
}

.tag .value {
    font-weight: 600;
    color: #fff;
}

.category-box .read-more {
    color: #fff;
    margin-top: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: ease all .5s;
    cursor: pointer;
}
.categories-list .item .category-box:hover .read-more{
    margin-top: 25px;
    visibility: visible;
    height: auto;
    opacity: 1;
}

.category-item-box {
    border-radius: 30px;
    padding: 0;
    position: relative;
    opacity: 0;
    height: 0;
    width: 0;
    transition: ease all .5s;
}
.retail-bussiness.active .category-item-box {
    display: block;
    height: auto;
    width: 100%;
    padding: 70px 60px;
    opacity: 1;
}
.category-detail {
    display: flex;
}

.category-detail .fa-close {
    position: absolute;
    right: -25px;
    top: -25px;
    background: #FCFCFC 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 12px #00000029;
    color: #E0312F;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.category-detail .images {
    width: 360px;
}
.category-detail .images .icon {
    width: 90%;
    margin: 0 auto;
    margin-top: -180px;
}

.category-detail .other-details {
    flex: 1;
    margin-left: 50px;
    color: #fff;
}

.other-details h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.category-detail .other-details p {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
}

.category-detail .other-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 70px;
}

.category-detail .other-details ul {
    list-style: none;
    margin: 0;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.category-detail .other-details ul::before {
    position: absolute;
    content: '';
    left: 0;
    width: 3px;
    height: 90%;
    background: #ccc;
    border-radius: 30px;
    margin: auto;
    top: 0;
    bottom: 0;
}

.category-detail .other-details ul li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.pos-features{
    padding-top: 130px;
}
.bg-grid{
    background: url('../images/bg-grid.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 50px 0 70px;
}
.pos-features .content {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.vertical-text-wrapper {
    width: 480px;
    display: flex;
    padding-left: 130px;
    height: 100%;
    align-items: flex-end;
}
.vertical-text {
    font-size: 130px;
    font-weight: bold;
    color: #E0312F;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: right;
    position: relative;
    top: -180px;
}
.vertical-text2 {
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
}
.vertical-text2 span {
    font-size: 48px;
    font-weight: 600;
    line-height: 70px;
    transform: rotate(181deg);
}
.vertical-text2 .bar {
    width: 33px;
    height: 270px;
    background: #E0312F;
    display: block;
    margin-top: 10px;
    transform: none;
}
.other-text-wrapper {
    width: 360px;
    max-width: 100%;
}
.other-text-wrapper h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}
.other-text-wrapper h5 {
    font-size: 22px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 30px;
}
.other-text-wrapper p {
    font-size: 18px;
    line-height: 22px;
    opacity: 0.7;
    margin-bottom: 40px;
}
.other-text-wrapper ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
.other-text-wrapper ul li {
    width: 50%;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    background: url('../images/features-bg.svg');
    background-position: left 5px;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-left: 30px;
}
.platforms{
    background: url('../images/platform-bg.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 20px 0 100px;
}
.platform-box{
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.platform-box .section-title {
    position: relative;
    display: inline-block;
}

.platform-box .section-title h4 {
    position: absolute;
    top: 50.5%;
    z-index: 9;
    right: -125px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    transform: translate(0, -50%);
}
.platforms-content {
    margin-top: -80px;
}
.platforms-content p {
    font-size: 18px;
    opacity: 0.7;
}
.platforms-content .links{
    text-align: center;
}
.platforms-content .links a {
    margin-right: 15px;
    display: inline-block;
}

.platforms-content .links a:last-child {
    margin: 0;
}
.platform-box .devices-images {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
}

.platform-box .devices-images .image img {
    transform: scale(1.1);
}

.custom-width {
    max-width: 1400px;
}
.testimonials-sec {
    background: #F7F6F7;
    padding: 10px 0 300px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.testimonials-sec .heading-text .image {
    position: relative;
    margin-bottom: 70px;
}

.testimonials-sec .heading-text h4 {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 85px;
    font-size: 24px;
    font-weight: 600;
}
.testimonials-slider .slick-list {
    overflow: visible;
}
.testimonials-slider .slick-track {
    transform: none !important;
    width: 100% !important;
}
.testimonials-slider .slick-dots {
    left: -40px;
    width: auto;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    justify-content: center;
}
.testimonials-slider .slick-dots li button:before {
   font-size: 10px;
}
.testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #E0312F;
}
.testimonials-slider .slider-item {
    max-width: 755px;
    background: #FDEFEE;
    padding: 50px;
    border-radius: 40px;
    position: absolute;
    left: 0;
    transition: ease all .5s;
}
.testimonials-slider .slider-item.slick-current {
    position: relative;
    z-index: 9;
}
.testimonials-slider .slider-item.slick-current + .slider-item {
    left: 60px;
    background: #DCD8D8;
    z-index: 8;
    top: 50px;
}
.testimonials-slider .slider-item.slick-current + .slider-item + .slider-item {
    background: #fff;
    z-index: 7;
    left: 120px;
    top: 100px;
}

.testimonials-slider .slider-item .text p {
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 40px;
}

.testimonials-slider .slider-item .text {
    border-bottom: 1px solid #D9B5B2;
    margin-bottom: 35px;
}

.testimonials-slider .slider-item  .author-info h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-slider .slider-item .author-info p {
    font-size: 14px;
    margin: 0;
}
.trusted-by {
    padding: 70px 0;
}
.trusted-slider {
    display: flex;
    align-items: center;
}

.trusted-slider .title {
    width: 430px;
    position: relative;
}
.trusted-slider .title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    height: 80%;
    margin: auto;
    background: #E0312F;
}
.trusted-slider .title h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 0;
}

.trusted-slider .title p {
    color: #E0312F;
    font-size: 26px;
    font-weight: 300;
    margin: 0;
}
.trusted-slider .logo-list {
    width: calc(100% - 430px);
    padding-left: 50px;
}
.trusted-slider .logo-list .item {
    padding: 0 20px;
}

.trusted-slider .logo-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.trusted-slider .logo-list .item .image {
    height: 90px;
}
.pricing-cont.fixed .mine-tab-content {
    position: fixed;
    top: 5.6rem;
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 0px;
    box-shadow: 1px 1px 13px 5px #8080802b;
}
.pricing-cont.fixed .tab-content {
    width: 1100px;
    margin-left: auto;
}
.pricing-cont.fixed .start-end {
    margin-top: 0;
    padding: 15px;
    padding-bottom: 0;
}
.pricing-cont.fixed .start-up h3 {
    margin-bottom: 0;
    font-size: 28px;
    color: #e0312f;
    font-weight: 600;
}
.pricing-cont.fixed .start-end {
    background-color: transparent;
    padding-top: 0;
}
.pricing-cont div#sticky_packages_div{
    display: none;
}
.pricing-cont.fixed div#packages_detail_div {
    display: none;
}
.pricing-cont.fixed div#sticky_packages_div {
    display: block;
}

.pricing-cont.fixed div#package_left_save_div {
    display: none;
}
.pricing-cont div#package_left_save_div {
    display: block;
}
.main-top-banner video {
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 120%;
    top: -110px;
    left: 0;
}
.main-top-banner .banner-content-position {
    margin: 0;
    margin-left: 70px;
    margin-top: 60px;
}

@media (max-width:1699px) {
    .about-login-form {
        padding: 50px 20px;
    }

    .business-results-img {
        width: 100%;
        text-align: center;
    }

    /* login-form */
    .login-wrapper h3 {
        width: 70%;
    }

    .sign-up-wrapper h3 {
        width: 100%;
    }

    .contact-us-info-box {
        height: 100%;
        min-height: 120px !important;
    }
    .btn-red ,.btn-white{
        height: 50px;
        padding: 5px 30px;
        font-size: 16px;
    }
    .custom-box {
        max-width: 1360px;
    }
    #header{
        height: 80px;
    }
    #header .navbar-brand {
        width: 170px;
    }
    .navbar .nav-item {
        padding-right: 50px;
    }
    .navbar .nav-item .nav-link {
        font-size: 16px;
    }
    .header-btn {
        margin-left: 40px;
    }
    .header-btn .btn {
        padding: 5px 20px;
    }
    .header-dropdown:hover .dropdown-menu {
        padding: 15px;
        width: 200px;
    }
    .header-dropdown .dropdown-menu .dropdown-item {
        padding-bottom: 7px;
        margin-bottom: 7px;
        font-size: 14px;
    }
    #main {
        padding-top: 80px
    }
    .main-top-banner{
        height: calc(100vh - 80px);
    }
    .main-banner h1 {
        font-size: 25px;
    }
    .main-banner h1 .text-large {
        font-size: 50px;
    }
    .main-banner h1 .text-small {
        font-size: 40px;
    }
    .banner-slider .slick-dots li{
        margin: 0;
    }
    .banner-slider .slick-dots li button{
        width: 20px;
        height: 20px;
    }
    .banner-slider .slick-dots li button:before{
        font-size: 12px;
    }
    .banner-slider .slick-dots li.slick-active button:before {
        color: #e0312f;
    }
    .main-banner p {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 20px;
    }
    .icons-slider {
        width: 280px;
        height: 70px;
        margin-bottom: 40px;
    }
    .main-top-banner .logo-part {
        width: 300px;
    }
    .banner-home-img{
        width: 52%;
    }
    .optimize-retail {
        padding: 100px 0 70px;
    }
    .optimize-retail .container.custom-box:before {
        top: -101px;
        width: 300px;
    }
    .optimize-retail.active .container.custom-box:before {
        height: 520px;
    }
    .optimize-retail .content-heading {
        max-width: 750px;
        margin-left: 40px;
    }
    .optimize-retail .content-heading h2 {
        font-size: 42px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 100px;
        line-height: 100px;
        margin-bottom: 50px;
    }
    .optimize-retail .other-info {
        max-width: 600px;
        margin-top: -170px;
    }
    .optimize-retail .other-info p {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .optimize-retail .other-info ul li {
        font-size: 15px;
    }
    .section-heading .logo-icon {
        width: 200px;
        margin: 0 auto 15px;
    }
    .section-heading h2 {
        font-size: 42px;
    }
    .categories-list .item {
        margin-top: 100px;
    }
    .categories-list .item .category-box {
        max-width: 230px;
        font-size: 12px;
        height: 230px;
    }
    .categories-list .item .category-box .content {
        padding: 15px 25px;
    }
    .category-box .content .icon {
        margin-bottom: 15px;
        width: 140px;
        height: 140px;
    }
    .item .category-box h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .tag label {
        font-size: 12px;
    }
    .categories-list .item .category-box:hover .read-more {
        margin-top: 15px;
    }
    .retail-bussiness.active .category-item-box {
        padding: 50px 40px;
    }
    .category-detail .fa-close {
        right: -20px;
        top: -20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .category-detail .other-details {
       margin-left: 40px;
    }
    .other-details h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .category-detail .other-details p {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 28px;
    }
    .category-detail .other-details ul {
        padding-left: 20px;
    }
    .category-detail .other-details ul li {
        font-size: 16px;
    }
    .category-detail .other-details h3 {
        font-size: 20px;
        margin-bottom: 50px;
    }
    .category-detail .images {
        width: 320px;
    }
    .pos-features {
        padding-top: 80px;
    }
    .bg-grid {
        padding: 40px 0 50px;
    }
    .vertical-text-wrapper {
        width: 400px;
        padding-left: 110px;
    }
    .vertical-text {
        font-size: 100px;
        top: -180px;
    }
    .vertical-text2 span {
        font-size: 42px;
        line-height: 60px;
    }
    .vertical-text2 .bar {
        width: 33px;
        height: 220px;
    }
    .other-text-wrapper {
        width: 350px;
    }
    .other-text-wrapper h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .other-text-wrapper h5 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .other-text-wrapper p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 30px;
    }
    .other-text-wrapper ul li {
        font-size: 16px;
        background-size: 15px;
        padding-left: 25px;
    }
    .platforms {
        padding: 20px 0 70px;
    }
    .platform-box {
        max-width: 750px;
    }
    .platform-box .section-title {
        width: 550px;
    }
    .platform-box .section-title h4 {
        top: 50%;
        right: -100px;
        font-size: 20px;
    }
    .platforms-content {
        margin-top: -60px;
    }
    .platforms-content p {
        font-size: 16px;
    }
    .platform-box .devices-images {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .platforms-content .links a {
        width: 60px;
    }
    .testimonials-sec {
        padding: 10px 0 240px;
    }
    .testimonials-sec .heading-text h4{
        font-size: 20px;
    }
    .testimonials-sec .heading-text .image {
        margin-bottom: 50px;
    }
    .testimonials-slider .slider-item {
        max-width: 680px;
        padding: 35px;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item {
        left: 50px;
        top: 40px;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item + .slider-item {
        left: 100px;
        top: 80px;
    }
    .testimonials-slider .slider-item .text {
        margin-bottom: 25px;
    }
    .testimonials-slider .slider-item .text p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .testimonials-slider .slider-item .author-info h5 {
        font-size: 20px;
    }
    .testimonials-slider .slider-item .author-info p {
        font-size: 12px;
    }
    .trusted-by {
        padding: 40px 0;
    }
    .trusted-slider .title {
        width: 380px;
    }
    .trusted-slider .title h2 {
        font-size: 50px;
    }
    .trusted-slider .title p {
        font-size: 20px;
    }
    .trusted-slider .logo-list {
        width: calc(100% - 380px);
        padding-left: 30px;
    }
    .trail {
        padding-bottom: 60px;
        margin-top: 20px;
    }
    .trailer {
        padding: 30px 70px;
        height: 320px;
    }
    .about-trail h2 {
        font-size: 50px;
    }
    .about-trail h2 span {
        font-size: 30px;
    }
    .about-trail h5 {
        font-size: 16px;
    }
    .trailer .icons .icon {
        height: 240px;
        width: 240px;
    }
    .icon-holder-bg{
        width: 160px;
        height: 160px;
    }
    #footer {
        padding-top: 80px;
    }
    .footer-img {
        margin-bottom: 25px;
    }
    .POS-links h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .POS-links ul li {
        margin-bottom: 15px;
    }
    .POS-links ul li a {
        font-size: 16px;
    }
    .footer-bottom {
        margin-top: 50px;
    }
    .pricing-cont.fixed .mine-tab-content {
        top: 5.1rem;
    }
    .pricing-cont.fixed .start-up h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1550px) {
    .pricing-cont.fixed .mine-tab-content {
        max-width: 91.5%;
    }
}

@media only screen and (max-width: 1480px) {
    #header {
        /* top: 25px; */
    }

    .getting-start P::after {
        bottom: -35px;
    }

    .about-upload p {
        font-size: 28px;
        text-align: center;
        padding-right: 0;
    }

    .about-upload h3 {
        font-size: 36px;
        text-align: center;
        padding-right: 0px;
        margin-bottom: 30px;
    }

    .drop-toggle::after {
        margin-left: 14.5em !important;
    }

    .down-toggle::after {
        margin-left: 5em !important;
    }

    .about-pass {
        padding-top: 60px;
        margin-left: 0px !important;
        margin-bottom: 61px;
    }

    /* .pricing-cont{
        overflow-x: scroll;
    } */
    .start-end {
        margin-top: -70px;
        padding-top: 65px;
    }

    .price-abt {
        min-width: 1000px;
    }

    .getting-started P::after {
        bottom: -16px;
    }

    .contact-us-info-box a {
        padding-left: 70px;
    }
    /* .pricing-cont.fixed .mine-tab-content {
        max-width: 1270px;
    } */
    .pricing-cont.fixed .tab-content {
        width: 77%;
    }

}

@media (max-width: 1399px) {
    .custom-box {
        max-width: 1120px;
    }

    #header {
        /* top: 15px; */
    }

    #header .navbar-light .navbar-nav .nav-link {
        font-size: 18px;
        line-height: 24px;
        text-align: left;
    }

    .header-btn .btn-outline-success {
        border-radius: 5px;
        font-size: 18px;
        padding: 10px 20px;
    }

    .business-btn .btn-primary,
    .software-btn .btn-primary,
    .power-btn .btn-primary,
    .trail-btn .btn-primary {
        border-radius: 5px;
        font-size: 20px;
        padding: 12px 20px;
    }

    .banner-btn .btn-primary {
        padding: 12px 20px;
        font-size: 20px;
        border-radius: 7px;
    }

    .power,
    .testimonials {
        margin-bottom: 50px;
    }

    p {
        font-size: 20px;
        line-height: 33px;
    }

    .our-business p,
    .getting-start p,
    .getting-started p,
    .getting-starts p,
    .getting-starts p,
    .our-working p,
    .about-upload p,
    .pos-software p,
    .extend-power p,
    .testi1 p,
    .testi2 p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .testi1 .testimon,
    .testi2 .testimon {
        font-size: 18px;
    }

    .testi1,
    .testi2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 15px;
        padding: 40px 40px 1px 40px;
        min-height: 400px;
    }

    .home-page-test-wrapper {
        display: block;
    }
    .main-top-banner .main-banner {
        margin-bottom: 150px;
    }
    .main-banner h1 {
        font-size: 44px;
        margin-bottom: 10px;
    }
    .main-banner p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .icons-slider {
        width: 240px;
        height: 60px;
        margin-bottom: 30px;
    }
    .main-top-banner .logo-part {
        width: 250px;
    }

    .optimize-retail {
        padding: 70px 0 50px;
    }
    .optimize-retail .container.custom-box:before {
        top: -71px;
        width: 250px;
    }
    .optimize-retail .content-heading {
        max-width: 600px;
    }
    .optimize-retail .content-heading h2 {
        font-size: 36px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 80px;
        line-height: 80px;
        margin-bottom: 40px;
    }
    .optimize-retail .other-info {
        max-width: 520px;
        margin-top: -140px;
    }
    .optimize-retail .other-info p {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 24px;
    }
    .optimize-retail .other-info ul{
        padding-left: 20px;
    }
    .optimize-retail .other-info ul li {
        font-size: 14px;
    }
    .section-heading .logo-icon {
        width: 160px
    }
    .section-heading h2 {
        font-size: 36px;
    }
    .categories-list .item .category-box {
        max-width: 190px;
        height: 190px;
    }
    .categories-list .item .category-box .content {
        padding: 12px 20px;
    }
    .category-box .content .icon {
        margin-bottom: 15px;
        width: 120px;
        height: 120px;
    }
    .item .category-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .categories-list .item .category-box:hover .read-more {
        margin-top: 10px;
    }

    .retail-bussiness.active .category-item-box {
        padding: 40px 30px;
    }
    .category-detail .fa-close {
        right: -15px;
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .category-detail .images {
        width: 280px;
    }
    .category-detail .other-details {
        margin-left: 30px;
    }
    .other-details h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .category-detail .other-details p {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 24px;
    }
    .category-detail .other-details ul li {
        font-size: 14px;
    }
    .category-detail .other-details h3 {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .pos-features {
        padding-top: 50px;
    }
    .platforms {
        padding: 20px 0 50px;
    }
    .bg-grid {
        padding: 30px 0 40px;
    }
    .platform-box {
        max-width: 650px;
    }
    .platform-box .section-title {
        width: 500px;
    }
    .platform-box .section-title h4 {
        top: 50.5%;
        right: -90px;
        font-size: 18px;
    }
    .platforms-content {
        margin-top: -50px;
    }
    .platforms-content p {
        font-size: 15px;
        line-height: 24px;
    }
    .platforms-content .links a {
        width: 50px;
        margin-right: 10px;
    }

    .vertical-text-wrapper {
        width: 300px;
        padding-left: 85px;
    }
    .vertical-text {
        font-size: 85px;
    }
    .vertical-text2 span {
        font-size: 36px;
        line-height: 50px;
    }
    .vertical-text2 .bar {
        width: 30px;
        height: 200px;
    }
    .other-text-wrapper {
        width: 320px;
    }
    .other-text-wrapper h4 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    .other-text-wrapper h5 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    .other-text-wrapper p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .other-text-wrapper ul li {
        font-size: 14px;
    }
    .testimonials-sec {
        padding: 10px 0 200px;
    }
    .custom-width {
        max-width: 1050px;
    }
    .testimonials-sec .heading-text .image {
        margin-bottom: 40px;
        height: 250px;
    }
    .testimonials-sec .heading-text .image img {
        height: 100%;
    }
    .testimonials-sec .heading-text h4 {
        font-size: 18px;
    }
    .testimonials-slider .slider-item {
        max-width: 550px;
        padding: 30px;
    }
    .testimonials-slider .slider-item .text {
        margin-bottom: 20px;
    }
    .testimonials-slider .slider-item .text p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .testimonials-slider .slider-item .author-info h5 {
        font-size: 18px;
        margin-bottom: 0;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item {
        left: 40px;
        top: 30px;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item + .slider-item {
        left: 80px;
        top: 60px;
    }
    .trusted-by {
        padding: 30px 0;
    }
    .trusted-slider .title {
        width: 320px;
    }
    .trusted-slider .title h2 {
        font-size: 40px;
    }
    .trusted-slider .title p {
        font-size: 18px;
    }
    .trusted-slider .title::before{
        width: 12px;
    }
    .trusted-slider .logo-list {
        width: calc(100% - 320px);
        padding-left: 20px;
    }
   

    .our-business h2 span {
        font-size: 40px;
    }

    .main-features h2,
    .our-business h2,
    .our-working h2,
    .pos-software h2,
    .extend-power h2,
    .about-trail h2,
    .main-brands h2,
    .main-testimonials h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .main-features h2,
    .main-brands h2,
    .main-testimonials h2 {
        margin-bottom: 50px;
    }

    .our-working h2,
    .pos-software h2,
    .extend-power h2
     {
        margin-bottom: 15px;
    }

    .our-business h2 {
        margin-bottom: 30px;
    }

    .getting-start h3,
    .getting-started h3,
    .getting-starts h3 {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .clothing {
        padding: 30px;
        margin-bottom: 0px;
    }

    .clothing h4 {
        font-size: 18px;
    }

    /* banner */
    .banner {
        padding-top: 180px;
        /* background-size: 100% 100%; */
        padding-bottom: 270px;
    }

    .about-banner {
        margin-bottom: 50px;
    }

    .banner-exp {
        bottom: -200px;
        left: 90px;
        right: 90px;
        margin: auto;
        /* width: 900px; */
    }

    /* images */
    .statistic img,
    .statistics img,
    .statics img {
        width: 430px;
    }

    /* business */
    .business-results {
        width: 450px;
        float: right;
    }

    .business {
        padding-top: 250px;
        margin-bottom: 50px;
    }

    .business-results img {
        width: 400px;
    }

    /* feature */
    .about-features {
        margin: 0px 0px 70px 0px;
        background-size: 800px;
        background-position: top center;
    }

    .selling {
        padding-top: 20px;
    }

    .home-page-selling {
        padding-top: 0;
    }

    .getting-start {
        padding-top: 32px;
    }

    .getting-start P::after {
        bottom: -32px;
        width: 160px;
    }

    .home-page-getting-line p::after {
        bottom: -20px;
    }

    .selling li p,
    .sellings li p {
        padding-left: 30px;
        font-size: 17px;
        line-height: 22px;
    }

    .sellings li img {
        padding-top: 5px;
    }

    .selling li img,
    .sellings li img {
        width: 18px;
    }

    /* all in one packages */
    .own-features {
        margin: 0px 0px 70px 0px;
        background-size: 800px;
        background-position: top center;
    }

    .statistic {
        text-align: right;
    }

    .getting-started P::after {
        width: 160px;
        bottom: -34px;
    }

    /* my feature */
    .my-features {
        margin: 0px 0px 50px 0px;
        background-size: 800px;
        background-position: top center;
    }

    /* working */
    .working {
        margin-bottom: 50px;
    }

    .about-upload h3 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    /* power */
    .own-features {
        margin: 0px 0px 70px 0px;
        background-size: 800px;
        background-position: top center;
    }

    .sellings {
        padding-top: 25px;
    }

    .extend-power p::after {
        width: 160px;
        bottom: -34px;
    }

    /* pos software */
    .pos-software {
        padding-top: 60px;
    }

    .pos-brands {
        padding: 20px;
        padding-bottom: 60px;
    }

    .pos-power {
        width: 450px;
    }

    /* trailor */
    .trailer {
        padding: 25px 50px;
        height: 280px;
    }
    .trail {
        padding-bottom: 40px;
        margin-top: 20px;
    }
    .trailer .icons .icon {
        height: 200px;
        width: 200px;
    }
    .icon-holder-bg{
        width: 135px;
        height: 135px;
    }
    .icon-holder-bg lottie-player{
        width: 65px;
        height: 65px;
    }

    .about-trail p {
        font-size: 18px;
        line-height: 30px;
        padding-left: 60px;
    }

    .trailing {
        margin-left: 10px;
    }

    /* footer */
    #footer {
        padding-top: 50px;
    }

    .POS-links h3 {
        /* font-size: 25px;
        margin-bottom: 35px; */
    }

    .POS-links ul li a {
        /* font-size: 17px; */
    }

    .POS-links ul li {
        /* margin-bottom: 15px; */
    }

    .POS {
        /* padding-top: 60px; */
    }

    .copyrights p {
        /* font-size: 17px; */
        /* padding-top: 60px; */
    }

    .in-touch h3,
    .frequent h2 {
        font-size: 40px;
    }

    .about-login-form {
        /* padding-bottom: 65px; */
        padding: 50px 20px;

    }

    .form-group .form-id {
        padding: 0 170px 0 10px !important;
        font-size: 16px !important;
    }

    /* .login-form-input .login-space{
        padding: 0 180px 0 0 !important;
    } */
    .login-space {
        padding: 0 180px 0 0 !important;
    }

    .method1 {
        padding-right: 40px;
        padding-left: 30px;
    }

    .method1 p {
        font-size: 19px;
    }

    .type1 p,
    .type1 p1 {
        font-size: 19px;
        text-align: center;
    }

    .start-up h3 {
        font-size: 26px;
    }

    .start-up span {
        font-size: 25px;
    }

    .form-btn {
        padding-top: 40px;
    }

    label {
        font-size: 18px;
    }

    #showHide i {
        top: 18px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    #showHide,
    #showHide2 {
        top: 35px;
    }

    /* feature */
    .feature-heading h3 {
        padding: 50px 0 20px;
    }

    .feature-side-bar {
        margin: 0;
        padding: 50px 0 0;
        top: 0;
    }

    .feature-sale-point {
        padding: 115px 0 0 !important;
    }

    #salepoint {

        padding-bottom: 15px;
    }

    #checkout,
    #payment,
    #inventory,
    #store,
    #customer,
    #multi,
    #reporting,
    #support {
        padding: 30px 0 10px;
    }

    .sale-point-desc {
        padding-top: 60px;
    }

    .branding {
        padding: 60px 0px;
    }

    .sale-desc h4,
    .sale-point-desc h4,
    .checking-out h4 {
        padding-bottom: 10px;
        margin: 0;
    }

    .checking-out p,
    .sale-point-desc p {
        margin: 0;
        padding-bottom: 10px;
    }

    /* contact-us */
    .contact-main .side-bar-padding {
        padding: 0 10px;
    }

    .contact-us-content {
        padding: 50px 0px 0;
    }

    .contact-us-form-content {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .contact-us-form {
        padding: 30px;
    }

    .contact-us-content p {
        margin-bottom: 30px;
    }

    .contact-us-about-info-content a {
        padding-left: 70px;
    }

    .contact-us-about-info-content i {
        left: 30px;
    }

    .contact-us-content h3 {
        margin-bottom: 20px;
        font-size: 35px;
    }

    .contact-us-about-info-content img {
        margin: 0 auto;
    }

    .contact-form-btn .btn-primary {
        font-size: 20px;
        padding: 18px;
    }

    .box-padding {
        padding: 0 0 50px;
    }

    .contact-us-about-info-content {
        max-width: 320px;
    }

    .main-pricing {
        padding-top: 80px;
    }

    .pricing-cont {
        margin-bottom: 90px;
    }

    .start-up p {
        font-size: 20px;
    }

    /* login-form */
    .login-form-width {
        width: 100%;
    }

    .login-wrapper {
        padding: 50px 90px 70px;
    }

    .login-wrapper h3 {
        width: 85%;
    }

    .login-wrapper h3 {
        width: 100%;
    }

    .sign-up-wrapper {
        padding: 120px 67px 70px;
    }

    .form-group.col-md-12 span {
        /* top: 30px; */
        top: 5px;
    }

    .login-form h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .login-form p {
        font-size: 20px;
    }

    .demo-data-wrap {
        font-size: 18px !important;
    }

    .frequent p {
        margin-bottom: 70px;
    }

    .frequent p {
        font-size: 20px;
    }

    .footer-img {
        margin-bottom: 17px;
    }

    .about-pass {
        padding-top: 40px;
    }

    .locate a {
        font-size: 19px;
    }

    .contact-us-info-box a {
        padding-left: 45px;
    }

    .contact-no a {
        font-size: 20px;
    }

    .fashion-clothing-img {
        width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .login-form-input .login-space {
        padding: 0 180px 0 0 !important;
    }

    .about-pass p a {
        font-size: 20px;
    }

    #showHideConfirm i {
        top: -5px;
    }

    .btn-red, .btn-white {
        height: 45px;
        padding: 5px 25px;
        font-size: 15px;
    }
    #header {
        height: 70px;
    }
    #header .navbar-brand {
        width: 150px;
    }
    .navbar .nav-item {
        padding-right: 40px;
    }
    .navbar .nav-item .nav-link {
        font-size: 15px;
    }
    .header-btn .btn {
        padding: 5px 15px;
    }
    .header-btn .btn .icon {
        margin-right: 12px;
        font-size: 20px;
    }
    #main {
        padding-top: 70px;
    }
    /* .main-top-banner{
        height: calc(100vh - 70px);
    } */
    .account-url-form .about-pass {
        padding-right: 0px !important;
    }
    .account-url-form .form-btn, .account-url-form .about-pass {
        padding-top: 40px !important;
    }
    .account-url-form .form-btn {
        padding-left: 25px !important;
        text-align: left !important;
    }
    .our-working p {
        font-size: 22px;
    }
    .pricing-cont.fixed .mine-tab-content {
        top: 4.5rem;
    }
}

@media only screen and (max-width: 1280px) {
    .custom-box {
        max-width: 940px;
    }
    .location-image img {
        width: 100%;
        margin-left: -36px;
    }

    .drop-toggle::after {
        margin-left: 9.5em !important;
    }

    .getting-started h3 {
        font-size: 33px;
    }

    .getting-started p {
        font-size: 22px;
    }

    .testi1 {
        padding-top: 70px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .testi2 {
        padding-top: 70px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .about-trail p {
        font-size: 22px;
        padding-left: 22px;
    }

    .down-toggle::after {
        margin-left: 2.5em !important;
    }

    .about-info {
        width: 410px;
    }

    .locate {
        width: 410px;
    }

    .contact-no {
        width: 410px;
    }

    .contact-us-form {
        margin-top: 175px;
        padding: 30px;
        border-radius: 20px;
        margin-bottom: 100px;
    }
    #header {
        height: 60px;
    }
    .header-btn .btn-outline-success {
        border-radius: 9px;
        padding: 18px;

        font-size: 20px;
    }

    .nav-link {
        font-size: 20px;
    }

    .nav-item {
        padding-right: 13px;
    }
    .navbar .nav-item {
        padding-right: 30px;
        margin-bottom: 10px;
    }
    .header-btn {
        margin-left: 30px;
    }
    #main {
        padding-top: 60px;
    }
    .main-top-banner .main-banner {
        margin-bottom: 100px;
    }
    .main-banner h1 {
        font-size: 38px;
    }
    .main-banner p {
        font-size: 16px;
        line-height: 26px;
    }
    .icons-slider {
        width: 200px;
        height: 50px;
        margin-bottom: 20px;
    }
    .main-top-banner .logo-part {
        width: 220px;
    }
    .optimize-retail {
        padding: 50px 0 30px;
    }
    .optimize-retail .container.custom-box:before {
        top: -51px;
        width: 220px;
    }
    .optimize-retail .content-heading {
        max-width: 500px;
    }
    .optimize-retail .content-heading h2 {
        font-size: 30px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 65px;
        line-height: 70px;
        margin-bottom: 30px;
    }
    .optimize-retail .other-info {
        max-width: 410px;
        margin-top: -120px;
    }
    .optimize-retail .other-info p {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 20px;
    }
    .optimize-retail .other-info ul li {
        font-size: 11px;
    }
    .section-heading .logo-icon {
        width: 130px;
    }
    .section-heading h2 {
        font-size: 30px;
    }
    .categories-list .item {
        width: 25%;
    }
    .vertical-text-wrapper {
        width: 210px;
        padding-left: 20px;
    }
    .vertical-text {
        font-size: 70px;
        top: -150px;
    }
    .vertical-text2 span {
        font-size: 32px;
        line-height: 44px;
    }
    .vertical-text2 .bar {
        width: 25px;
        height: 180px;
    }
    .platform-box {
        max-width: 550px;
    }
    .platform-box .section-title {
        width: 400px;
    }
    .platform-box .section-title h4 {
        right: -95px;
        font-size: 16px;
    }
    .platforms-content p {
        font-size: 14px;
        line-height: 22px;
    }
    .platforms-content .links a {
        width: 40px;
        margin-right: 5px;
    }
    .custom-width {
        max-width: 920px;
    }
    .testimonials-sec {
        padding: 10px 0 150px;
    }
    .testimonials-sec .heading-text h4 {
        font-size: 16px;
        left: 60px;
    }
    .testimonials-sec .heading-text .image {
        margin-bottom: 30px;
        height: 200px;
    }
    .testimonials-slider .slider-item {
        max-width: 480px;
        padding: 22px;
        border-radius: 20px;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item {
        left: 30px;
        top: 20px;
    }
    .testimonials-slider .slider-item.slick-current + .slider-item + .slider-item {
        left: 60px;
        top: 40px;
    }
    .testimonials-slider .slider-item .text p {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .testimonials-slider .slider-item .text {
        margin-bottom: 15px;
    }
    .testimonials-slider .slider-item .author-info h5 {
        font-size: 16px;
    }
    
    .other-text-wrapper {
        width: 300px;
    }
    .other-text-wrapper h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .other-text-wrapper h5 {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .other-text-wrapper p {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .other-text-wrapper ul{
        margin-bottom: 20px;
    }
    .other-text-wrapper ul li {
        font-size: 13px;
        background-size: 12px;
        padding-left: 20px;
    }
    .trusted-slider .title {
        width: 300px;
    }
    .trusted-slider .title h2 {
        font-size: 34px;
    }
    .trusted-slider .title p {
        font-size: 16px;
    }
    .trail {
        padding-bottom: 30px;
        margin-top: 20px;
    }
    .trailer {
        padding: 20px 40px;
        height: 250px;
    }
    .about-banner {
        text-align: center;
        font-size: 20px;
        margin-bottom: 78px;
    }

    .banner-btn .btn-primary {
        border-color: #fff;
        padding: 10px;
        background-color: transparent;
        font-size: 20px;
        border-radius: 11px;
    }

    .header-btn {
        /* margin-left: 85px; */
    }

    .banner-exp {
        position: absolute;
        bottom: -177px;
    }

    .our-business h2 {

        font-size: 42px;
        text-align: left;
        margin-bottom: 40px;
    }

    .our-business p {
        font-family: "sofia-pro";
        font-weight: 400;
        font-size: 20px;
        color: #949EB2;
        margin-bottom: 80px;
    }

    .business-btn .btn-primary {
        padding: 18px;
        font-size: 20px;
    }

    .main-features h2 {
        font-size: 50px;
        text-align: center;
    }

    .getting-start h3 {
        font-size: 33px;
    }

    .getting-start p {
        font-size: 22px;
        /* color: #949EB2; */
        margin-bottom: 25px;
        position: relative;
    }

    .getting-start P::after {
        bottom: -15px;
        left: 0px;
    }

    .home-page-getting-line p::after {
        bottom: -20px;
    }

    .selling li p {
        padding-left: 50px;
        font-size: 20px;
        color: #06285A;
        font-family: "sofia-pro";
        font-weight: 600;
    }

    .banner {
        background-image: url(../images/Header\ BG.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 270px;
        padding-bottom: 282px;
        position: relative;
    }

    .business {
        padding-top: 190px;
        margin-bottom: 86px;
    }

    .our-working h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .our-working p {
        font-size: 22px;
        margin-bottom: 50px;
    }

    .about-upload h3 {
        font-size: 31px;
        margin-bottom: 30px;
    }

    .about-upload p {
        font-size: 22px;
    }

    .pos-software h2 {
        font-size: 50px;
        margin-bottom: 22px;
    }

    .pos-software p {
        font-size: 23px;
        margin-bottom: 37px;
    }

    .software-btn .btn-primary {
        font-size: 20px;
    }

    .extend-power h2 {
        font-size: 42px;
        margin-bottom: 28px;
        padding-top: 50px;
    }

    .extend-power p {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .sellings li p {
        padding-left: 50px;
        font-size: 21px;
    }

    .power-btn .btn-primary {
        font-size: 20px;
    }

    .software {
        margin-bottom: 60px;
    }

    .working {
        margin-bottom: 30px;
    }

    .main-testimonials h2 {
        font-size: 50px;
        margin-bottom: 70px;
    }

    .testi1 p {
        font-size: 22px;
        margin-bottom: 75px;
    }

    .testi2 p {
        font-size: 22px;
        margin-bottom: 75px;
    }

    .testi1 span {
        font-size: 24px;
    }

    .testi2 span {
        font-size: 24px;
    }

    .main-brands h2 {
        font-size: 50px;
        margin-bottom: 80px;
    }

    .about-trail h2 {
        font-size: 34px;
        line-height: 44px;
    }
    .about-trail h2 span {
        font-size: 24px;
    }

    .about-trail p {
        font-size: 22px;
        padding-left: 69px;
    }
    .trailer .icons .icon {
        height: 160px;
        width: 160px;
    }
    .icon-holder-bg{
        width: 110px;
        height: 110px;
    }

    .trail-btn {
        text-align: center;
        padding-top: 21px;
    }

    .trail-btn .btn-primary {
        font-size: 20px;
    }

    .POS-links h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .POS-links ul li {
        margin-bottom: 10px;
    }
    .POS-links ul li a {
        font-size: 16px;
    }
    .footer-bottom {
        margin-top: 30px;
    }
    .copyrights p {
        font-size: 15px;
    }

    .our-business h2 span {
        font-size: 46px;
    }

    /* tablet pos */
    .tablet-business-content h4,
    .welcome-pos-smbox-content h4 {
        font-size: 22px;
    }

    .tablet-business-content p,
    .welcome-pos-smbox-content p {
        font-size: 19px;
    }

    .contact-us-form-content {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .about-trail-content p {
        padding-left: 30px;
    }

    .bab {
        display: unset;
        width: 100%;
    }

    .mine-tab {
        margin-bottom: 120px;
    }

    .start-end {
        margin-top: -70px;
        padding-top: 65px;
    }

    .price-abt {
        min-width: 800px;
    }

    .pricing-cont {
        margin-bottom: 80px;
    }

    .main-pricing {
        padding-top: 50px;
    }

    .sign-up-wrapper {
        padding: 120px 47px 70px;
    }

    .footer-img {
        margin-bottom: 34px;
    }
    .pricing-cont.fixed .mine-tab-content {
        max-width: 90%;
        top: 4rem;
    }
    .pricing-cont.fixed .start-up h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1199px) {
    .account-url-form .form-btn {
        padding-left: 0px !important;
    }
    .pricing-cont.fixed .mine-tab-content {
        max-width: 88%;
        top: 3.8rem;
    }
    .pricing-cont.fixed .start-end {
        padding: 0px;
    }
    .start-up h3 {
        padding: 0;
    }
}
@media only screen and (max-width: 991px) {

    .header-btn {
        /* margin-left: 67px;
        padding-top: 19px; */
        position: absolute;
        right: 60px;
        top: 0;
        margin: 0;
        padding: 0;
    }
    .nav-item {
        text-align: left;
    }
    .main-banner h1 .text-large {
        font-size: 37px;
    }
    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 2px;
        background: #e0312f;
        height: 40px;
    }

    .header-dropdown .nav-link:hover {
        color: #fff !important;
    }

    ul.navbar-nav {
        background-color: #e0312f;
        padding: 20px;
    }

    .about-features {
        background-image: unset;
    }

    .own-features {
        background-image: unset;
    }

    .my-features {
        background-image: unset;
    }

    .my-features {
        margin-bottom: 60px;
    }

    .service-banner {
        padding-top: 73px !important;
        padding-bottom: 35px !important;
    }

    .abt-features {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .owe-image {
        padding-top: 0px !important;
    }

    .your-features {
        padding-top: 30px !important;
        padding-bottom: 50px;
    }

    .own-features {
        margin-bottom: 0px;
    }

    .home-page-own-feature {
        margin-bottom: 70px;
    }

    .pos-software {
        padding-top: 50px;
    }

    .perfect-software img {
        width: 728px;
    }

    #header {
        /* background-color: #e0312fd6; */
        /* top: 10px; */
    }
    .main-top-banner {
        max-height: 550px;
    }
    .main-top-banner .main-banner {
        margin-bottom: 80px;
    }
    .main-banner h1 {
        font-size: 26px;
    }
    .optimize-retail .content-heading {
        max-width: 400px;
    }
    .optimize-retail .content-heading h2 {
        font-size: 26px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 55px;
        line-height: 60px;
        margin-bottom: 25px;
    }
    .optimize-retail .other-info {
        max-width: 450px;
        margin-top: -120px;
        margin-left: 250px;
    }
    .optimize-retail.active .container.custom-box:before {
        height: 350px;
    }
    .section-heading .logo-icon {
        width: 100px;
    }
    .section-heading h2 {
        font-size: 26px;
    }
    .categories-list .item {
        width: 33.3%;
    }
    .categories-list .item .section-heading h2 {
        line-height: 34px;
        text-align: center;
    }
    .category-detail {
        display: flex;
        flex-wrap: wrap;
    }
    .category-detail .images .icon{
        width: 100%;
        margin-top: -120px;
    }
    .category-detail .images {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    .category-detail .other-details {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
        flex: none;
    }
    .vertical-text {
        font-size: 60px;
        top: -140px;
    }
    .vertical-text2 span {
        font-size: 28px;
        line-height: 40px;
    }
    .vertical-text2 .bar {
        width: 25px;
        height: 150px;
    }
    .other-text-wrapper {
        width: calc(100% - 220px);
    }
    .pos-features .image{
        text-align: center;
    }
    .testimonials-slider {
        max-width: 550px;
        margin: 30px auto;
    }
    .testimonials-sec .heading-text {
        max-width: 300px;
        margin: 0 auto;
    }
    .about-trail h2 {
        font-size: 28px;
    }
    .about-trail h2 span {
        font-size: 20px;
    }
    .about-trail h5 {
        font-size: 14px;
    }
    .trailer {
        padding: 15px 25px;
        height: 200px;
    }
    .trailer .icons .icon {
        height: 140px;
        width: 140px;
    }
    .icon-holder-bg{
        width: 90px;
        height: 90px;
    }
    .icon-holder-bg lottie-player {
        width: 45px;
        height: 45px;
    }
    .about-banner {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .our-business h2 {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .our-business p {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .business-btn .btn-primary {
        font-size: 17px;
    }

    .business-results {
        padding-left: 0px;
    }

    .business {
        padding-top: 190px;
        margin-bottom: 0px;
    }

    .our-features h4 {
        font-size: 25px;
    }

    .main-features h2 {
        font-size: 42px;
    }

    .getting-start {
        margin-bottom: 30px;
        padding-top: 0px;
    }

    .getting-start h3 {
        font-size: 25px;
    }

    .getting-start p {
        font-size: 19px;
    }

    .selling li img {
        float: left;
        padding-top: 2px;
    }

    .selling li p {
        font-size: 16px;
    }

    .getting-started h3 {
        font-size: 28px;
    }

    .getting-started p {
        font-size: 19px;
    }

    .statistic {
        padding-top: 143px;
        padding-left: 0px;
    }

    .getting-starts h3 {
        font-size: 28px;
    }

    .getting-starts p {
        font-size: 19px;
    }

    .our-working h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .our-working p {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .about-upload h3 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .about-upload p {
        font-size: 19px;
    }

    .pos-software h2 {
        font-size: 37px;
    }

    .pos-software p {
        font-size: 18px;
    }

    .about-stores {
        font-size: 18px;
    }

    .software-btn .btn-primary {
        font-size: 17px;
    }

    .header-btn .btn-outline-success {
        font-size: 15px;
        padding: 10px 13px;
    }

    .header-dropdown .dropdown-menu::before {
        top: 36px;
    }

    .extend-power h2 {
        font-size: 31px;
    }

    .extend-power p {
        font-size: 19px;
    }

    .sellings li p {
        padding-left: 39px;
        font-size: 17px;
    }

    .sellings li img {
        float: left;
        padding-top: 0px;
    }

    .power-btn {
        padding-top: 18px;
    }

    .sellings li img {
        float: left;
        padding-top: 0px;
    }

    .software {
        margin-bottom: 0px;
    }

    .extend-power h2 {
        margin-bottom: 28px;
        padding-top: 12px;
    }

    .power-btn .btn-primary {
        font-size: 17px;
    }

    .main-testimonials h2 {
        font-size: 42px;
    }

    .testi1 {
        padding-top: 70px;
        padding-left: 70px;
        padding-right: 70px;
        padding-bottom: 1px;
    }

    .testi1 p {
        font-size: 18px;
        margin-bottom: 38px;
    }

    .testi1 span {
        font-size: 21px;
    }

    .testi1 .testimon {
        font-size: 17px;
    }

    .testi2 {
        padding-top: 70px;
        padding-left: 70px;
        padding-right: 70px;
        padding-bottom: 1px;
    }

    .testi2 p {
        font-size: 18px;
        margin-bottom: 38px;
    }

    .testi2 span {
        font-size: 21px;
    }

    .testi2 .testimon {
        font-size: 17px;
    }

    .main-brands h2 {
        font-size: 42px;
        margin-bottom: 48px;
    }

    .about-trail h2 {
        font-size: 33px;
        margin-bottom: 15px;
    }

    .about-trail p {
        font-size: 19px;
        padding-left: 66px;
    }

    .trail-btn .btn-primary {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .trailing {
        margin-left: 8px;
    }

    .POS {
        /* padding-top: 40px; */
    }

    .POS-links h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .POS-links ul li a {
        font-size: 15px;
    }

    .copyrights p {
        /* font-size: 19px;
        font-family: "sofia-pro";
        padding-top: 70px; */
    }
    .footer-bottom{
        margin-top: 25px;
        padding: 10px 0;
    }
    .fa-bars {
        color: #fff;
    }

    .banner-top {
        margin-top: -120px;
    }

    .navbar .navbar-collapse {
        justify-content: flex-start;
    }

    .card-title {
        margin-bottom: .75rem;
        font-size: 20px;
    }

    .drop-toggle::after {
        margin-left: 6.8em !important;
        font-size: 33px !important;
    }

    .down-toggle::after {
        margin-left: 1.25em !important;
        font-size: 33px !important;
    }

    .about-info {
        width: 351px;
    }

    .contact-no {
        width: 351px;
    }

    .locate {
        width: 351px;
    }

    .contact-form-btn {
        text-align: center;
        padding-top: 60px;
    }

    .in-touch h3 {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .about-info {
        width: 320px;
    }

    .trailer {
        /* padding-bottom: 60px;
        padding-top: 60px; */
    }

    .locate {
        width: 320px;
    }

    .contact-no {
        width: 320px;
    }

    .drop-toggle::after {
        margin-left: 3.8em !important;
        font-size: 33px !important;
    }

    .down-toggle::after {
        margin-left: 0.8em !important;
        font-size: 33px !important;
    }

    .in-touch {
        padding-top: 75px;
    }

    .contact-us-form {
        background: #fff;
        margin-top: 80px;
        padding: 100px;
        border-radius: 20px;
        box-shadow: 0px 5px 50px #06369f1a;
        margin-bottom: 100px;
    }

    .in-touch p {
        color: #949EB2;
        font-size: 22px;
        margin-bottom: 45px;
        font-family: "sofia-pro";
    }

    .contact-us-form {
        background: #fff;
        margin-top: 80px;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0px 5px 50px #06369f1a;
        margin-bottom: 100px;
    }

    .location-image img {
        margin-left: -11px;
    }

    .url-form form {
        padding: 35px;
        background: #fff;
        width: 50%;
        border-radius: 20px;
        margin-top: 55px;
        box-shadow: 0px 5px 50px #06369f1a;
    }

    .url-btn {
        text-align: center;
    }

    .abt-image img {
        width: 77%;
        padding-top: 0px;
    }

    .getting-start {
        margin-bottom: 30px;
        padding-top: 0px;
    }

    .about-login-form {
        background-color: #FBFCFF;
        padding: 20px;
        /* padding-bottom: 125px; */
    }

    .service-head h3 {
        padding-top: 0px;
    }

    .getting-started h3 {
        padding-top: 0px;
    }

    .getting-started P::after {
        bottom: -36px;
    }

    .banner {
        padding-bottom: 190px;
    }

    .getting-start P::after {
        bottom: -15px;
    }

    .home-page-getting-line p::after {
        bottom: -20px;
    }

    .statistic {
        padding-top: 63px;
        padding-left: 0px;
    }

    .testi1 {
        padding-top: 60px;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 1px;
    }

    .testi2 {
        padding-top: 60px;
        padding-left: 60px;
        padding-right: 60px;
        padding-bottom: 1px;
    }

    .pos-power img {
        margin-top: 0px;
    }

    .about-trail p {
        font-size: 19px;
        padding-left: 23px;
    }

    .form-btn {
        margin-left: 0px !important;
        padding-top: 50px;
    }

    .frequent h2 {
        font-size: 35px;
    }

    .frequent p {
        font-size: 20px;
    }

    .login-form h3 {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .sales-point h2 {
        font-size: 38px;
        padding-top: 80px;
    }

    /* tablet pos */
    .cloud-bg {
        padding: 40px 20px;
        background-size: cover;
    }

    .form-btn .btn-primary {
        padding: 8px 30px;
    }

    .feature-sale-point {
        padding: 110px 0 0 !important;
    }

    .contact-us-form-content {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .contact-us-content {
        padding: 50px 0 0;
    }

    .contact-us-content h3 {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .contact-us-content p {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .about-trail-content h2 {
        margin-bottom: 0px;
    }

    .contact-us-form-content {
        margin-top: 10px;
        margin-bottom: 0 !important;
    }

    .contact-us-about-info-content {
        max-width: 100%;
    }

    .payment-content p,
    .payment-content p1 {
        font-size: 16px;
        line-height: 19px;
    }

    .payment-padding {
        padding: 40px 0 30px 0;
    }

    .payment-method-content {
        padding: 0px 0 30px;
    }

    .price-abt {
        min-width: 600px;
    }

    .about-rates {
        display: unset;
    }

    .start-end {
        /* margin-top: 60px;
        padding-top: 50px; */
        margin-top: 0;
        padding: 0;
    }

    .about-startup {
        margin-bottom: 50px;
        padding: 30px;
        box-shadow: 0px 2px 9px 7px #ECF0F8;

    }

    .mine-tab {
        margin-bottom: 60px;
    }

    /* .about-amino{
        overflow-x: scroll;
    } */
    .table-flow-text {
        overflow: scroll;
    }

    /* login-form */
    .login-wrapper h3 {
        font-size: 25px;
        width: 100%;
    }

    .retail-image {
        margin-top: -80px;
        margin-bottom: 0px;
    }

    .service-banner {
        padding: 73px 20px 35px !important;
    }

    .about-tab {
        padding-left: 0;
        text-align: center;
    }

    .about-tab p,
    .about-tab img {
        padding-left: 0;
    }

    .btn-heading.mobile-view {
        display: block
    }

    .mobile-view-table {
        display: block;
        border: 1px solid #cecece;
        margin-bottom: 30px
    }

    .mobile-view-table .table td,
    .table th {
        width: 100%;
    }

    .start-end {
        background-color: #fff;
    }

    .start-end h3 {
        color: #949EB2;
    }

    .start-end p {
        color: #949EB2;
    }

    .start-end span {
        color: #fff;
    }

    .mobile-view-categories,
    .mobile-view-plan-feature,
    .mobile-view-order {
        display: none;
    }

    .desktop-view-btn {
        display: none;
    }

    .mobile-view-btn {
        display: block;
        margin-right: 50px;
    }

    .start-up p {
        margin-bottom: 20px;
        border-bottom: 1px solid #cecece;
        padding-bottom: 20px;
    }

    .start-up h3 {
        margin-bottom: 20px;
    }

    .price-order {
        border-radius: 0px;
    }

    .nav-item .nav-link:hover {
        color: #fff !important;
    }

    h3.show-plan-features {
        font-size: 20px;
        cursor: pointer;
    }

    h3.hide-plan-features {
        font-size: 20px;
        cursor: pointer;
    }

    h3.show-plan-yearly-features {
        font-size: 20px;
        cursor: pointer;
    }

    h3.hide-plan-yearly-features {
        font-size: 20px;
        cursor: pointer;
    }

    .login-lottie {
        width: 20px;
    }

    .intui-product-padding {
        padding: 0 20px;
    }

    .fashion-clothing-img {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .about-pass p a {
        font-size: 15px;
    }

    .footer-img {
        margin-bottom: 17px;
    }

    .demo-data-wrap input:checked~.checkmark {
        background-color: #e0312fd6;
    }

    .demo-data-wrap .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 11px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    #header .navbar-toggler-list-wrapper {
        position: absolute;
        top: 50px;
        left: 0px;
        width: 100%;
        z-index: -1;
    }
    .navbar .nav-item .nav-link {
        font-size: 14px;
        text-align: left;
        color: white;
    }
}

@media only screen and (max-width: 767px) {
    .custom-box {
        padding: 0 20px;
    }

    .main-banner h1 {
        font-size: 28px;
    }

    .about-banner {
        font-size: 17px;
        margin-bottom: 33px;
    }

    .business-results {
        padding-left: 0px;
        text-align: center;
    }

    .banner {
        padding-bottom: 150px;
    }

    .banner-exp {
        position: absolute;
        bottom: -130px;
    }

    /* .banner-home-img {
        bottom: -80px;
    } */

    .business {
        padding-top: 105px;
        margin-bottom: 0px;
    }

    .our-business {
        margin-top: 35px;
    }

    .our-business h2 {
        font-size: 30px;
    }

    .business-wrapper {
        margin-bottom: 30px;
    }

    .home-page-business {
        margin-top: 10px;
    }

    .home-page-business h2 {
        margin-bottom: 20px;
    }

    .our-business h2 span {
        font-size: 30px;
    }

    .our-business p {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .business-btn .btn-primary {
        font-size: 13px;
    }

    .statistic img {
        width: 588px;
    }

    .pos-software {
        padding-top: 25px;
    }

    .perfect-software img {
        width: 631px;
        padding-top: 80px;
        margin-bottom: 30px;
    }

    .pos-power img {
        width: 633px;
        padding-left: 0px;
    }

    .our-features h4 {
        font-size: 22px;
    }

    .main-features h2 {
        font-size: 29px;
    }

    .statistics {
        text-align: center;
    }

    .about-features {
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .perfect {
        margin-top: 18px;
    }

    .getting-start P::after {
        bottom: -15px;
    }

    .getting-start p {
        font-size: 17px;
    }

    .getting-started p {
        font-size: 16px;
    }

    .statistic {
        padding-top: 0px;
        padding-left: 0px;
        text-align: center;
    }

    .my-features {
        padding-top: 0px;
    }

    .statics {
        padding-top: 0px;
        text-align: center;
    }

    .upload {
        text-align: center;
    }

    .getting-starts {
        margin-bottom: 30px;
        padding-top: 0px;
    }

    .getting-starts h3 {
        font-size: 26px;
    }

    .getting-starts p {
        font-size: 15px;
    }

    .my-features {
        margin-bottom: 50px;
    }

    .our-working h2 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .our-working p, .about-upload p {
        font-size: 19px;
        margin-bottom: 0px;
        line-height: 26px;
    }

    .about-upload h3 {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .pos-software h2 {
        font-size: 30px;
    }

    .pos-software p {
        font-size: 17px;
    }

    .about-stores {
        font-size: 17px;
    }

    .software-btn .btn-primary {
        font-size: 13px;
    }

    .banner-btn .btn-primary {
        font-size: 13px;
    }

    .perfect-software {
        text-align: center;
    }

    .pos-power {
        text-align: center;
    }

    .extend-power {
        padding-top: 0;
    }

    .extend-power p {
        font-size: 17px;
    }

    .sellings li p {
        padding-left: 39px;
        font-size: 17px;
    }

    .main-testimonials h2 {
        margin-bottom: 45px;
    }

    .trailer {
        /* padding-bottom: 60px;
        padding-top: 60px; */
        margin-top: 60px;
    }

    .power-btn .btn-primary {
        font-size: 13px;
    }

    .power {
        margin-bottom: 60px;
    }

    .main-testimonials h2 {
        font-size: 33px;
    }

    .testi1 p {
        font-size: 14px;
        margin-bottom: 38px;
    }

    .testi2 p {
        font-size: 14px;
        margin-bottom: 38px;
    }

    .testi2 .testimon {
        font-size: 15px;
    }

    .testi2 .testimon {
        font-size: 15px;
    }

    .testi1 {
        margin-bottom: 20px;
        padding-top: 45px;
    }

    .testi2 {
        padding-top: 45px;
    }

    .testimonials {
        margin-bottom: 60px;
    }

    .main-brands h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .about-trail h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-trail p {
        font-size: 15px;
        text-align: center;
        padding-left: 0px;
    }

    .trail {
        /* padding-bottom: 60px; */
    }

    .trail-btn .btn-primary {
        font-size: 13px;
    }

    .fa-bars {
        color: #fff;
    }

    .in-touch p {
        color: #949EB2;
        font-size: 22px;
        margin-bottom: 40px;
        font-family: "sofia-pro";
    }

    .about-info {
        width: 100%;
    }

    .contact-no {
        width: 100%;
    }

    .contact-form-btn {
        text-align: center;
        padding-top: 60px;
    }

    .locate {
        width: 100%;
    }

    .contact-us-form {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0px 5px 50px #06369f1a;
        margin-bottom: 60px;
    }

    .in-touch h3 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .location-image {
        text-align: center;
    }

    .location-image img {
        width: 100%;
    }

    .form-id {
        font-size: 23px;
    }

    .service-head h3 {
        text-align: center;
        padding-top: 55px;
        font-size: 45px;
        color: #fff;

        font-weight: 600;
    }

    .service-head p {
        text-align: center;
        padding-top: 5px;
        color: #fff;
        font-size: 21px;
        font-family: "sofia-pro";
    }

    .imo {
        color: #949EB2;
        font-size: 23px;
        font-family: "sofia-pro";
        padding-left: 54px;
    }

    .emo {
        color: #949EB2;
        font-size: 23px;
        font-family: "sofia-pro";
        padding-left: 54px;
    }

    .frequent h2 {
        margin-bottom: 30px;

        font-size: 30px;
    }

    .frequent p, .getting-started p, .getting-start p {
        font-size: 19px;
        font-family: "sofia-pro";
        margin-bottom: 50px;
    }

    .card-title {
        margin-bottom: .75rem;
        color: #101C26;
        font-size: 19px;

    }

    .card-body p {
        font-size: 19px;
        color: #949EB2;
        font-family: "sofia-pro";
    }

    .url-form form {
        padding: 35px;
        background: #fff;
        width: 100%;
        border-radius: 20px;
        margin-top: 55px;
        box-shadow: 0px 5px 50px #06369f1a;
    }

    .abt-image {
        text-align: center;
    }

    .abt-image img {
        width: 60%;
        padding-top: 0px;
        margin-bottom: 19px;
    }

    .owe-image img {
        width: 64%;
        /* padding-top: 35px; */
        padding-top: 10px;
    }

    .owe-image {
        text-align: center;
    }

    .matics img {
        width: 64%;
    }

    .matics {
        text-align: center;
        padding-top: 30px;
    }

    .getting-starts h3 {
        padding-top: 0px;
    }

    .optimistic {
        height: 860px;
        width: 100%;
        background-color: #FBFCFF;
    }

    .sales-point h2 {
        font-size: 30px !important;
        color: #e0312fd6;

        font-weight: 400 !important;
        padding-top: 70px;
    }

    .POS-logo {
        text-align: center;
        margin-bottom: 35px !important;
    }

    .login-form h3 {
        font-size: 32px !important;

        color: #e0312fd6;
        font-weight: 400;
        margin-bottom: 45px !important;
    }

    .about-pass p a {
        font-size: 19px !important;
        color: #949EB2;
        text-decoration: underline;
    }

    .about-user span {
        font-size: 19px !important;
        color: #949EB2;

    }

    .form-btn {
        text-align: center;
    }

    .about-pass p {
        margin-left: 283px !important;
    }

    .pricing-cont {
        padding: 25px;
        border-radius: 30px;
    }

    /* table pos */
    .tablet-business-content,
    .welcome-pos-smbox-content {
        text-align: center;
    }

    .about-login-form {
        padding: 10px;
        padding-top: 40px;
    }

    .feature-heading h3 {
        padding: 0px 0 10px;
    }

    .sale-desc p {
        padding-bottom: 10px;
    }

    .feature-sale-point {
        padding: 0 !important;
    }

    .main-checkout h4 {
        padding-bottom: 13px;
    }

    .sale-point-desc {
        padding: 0;
    }

    .feature-side-bar {
        padding: 30px 0 0;
    }

    .contact-us-content {
        padding: 30px 0px 0;
    }

    .payment-content p {
        padding: 7px 15px;
    }

    .payment-content-two p {
        padding: 10px 0;
    }

    .price-abt {
        min-width: 100%;
    }

    .home-page-upload p {
        margin-bottom: 0;
    }

    .home-page-test-wrapper {
        display: block;
        min-height: 270px;
        height: auto;
    }

    .home-page-test-wrapper p {
        margin-bottom: 20px;
    }

    /* login-form */
    .login-wrapper {
        border-radius: unset;
    }

    .login-wrapper h3 {
        margin: unset;
    }

    .tool-img img {
        width: 50px;
        height: 60px;
    }

    .sale-point-desc img,
    .business-results-img img,
    .statistics img,
    .statistic img,
    .statics img {
        box-shadow: 0px 3px 4px 4px #ccc;
    }

    .home-testimonials {
        padding-top: 35px;
    }

    .contact-us-content h3 {
        font-size: 30px;
    }

    .footer-img {
        padding-top: 0px;
        width: 100px;
        height: 55px;
    }

    .footer-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .POS {
        margin-bottom: 30px;
    }

    .POS-links h3 {
        margin-bottom: 20px;
    }

    .copyrights p {
        /* padding-top: 30px; */
        word-break: break-word;
    }

    .login-space p {
        margin-left: 0 !important;
    }

    .form-btn {
        padding-top: 20px;
    }

    .about-pass {
        padding-top: 10px;
    }

    .login-lottie {
        left: 22%;
    }

    .abt-features {
        margin-bottom: 30px;
    }

    .your-features {
        /* padding-bottom: 30px; */
        padding-bottom: 10px;
        padding-top: 0 !important;
    }

    .getting-started {
        margin-bottom: 5px;
    }

    .matics {
        padding-top: 10px;
        margin-bottom: 10px;
    }

    .services-features {
        padding-top: 0;
    }

    .register-about-img {
        margin-top: 30px;
    }

    /* .retailing{
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    .retailing img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    } */
    .about-retailing h2 {
        margin-top: 30px;
    }

    .fashion-clothing-img {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .fashion-clothing-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .fashion-clothing-retailer {
        padding-top: 10px;
    }

    .about-fashion-clothing h2 {
        margin-top: 20px;
    }

    .fashion-clothing-retail {
        margin-bottom: 0;
    }

    .fashion-clothing-tailing {
        padding-top: 0;
        padding-bottom: 10px;
    }

    .about-upload .tablet-business-content-img,
    .about-upload h3,
    h3.mb-3.text-left {
        text-align: center !important;
    }

    .intui-product-padding {
        padding: 0px;
    }

    .about-retailing p {
        font-size: 20px;
    }

    .login-store p {
        margin-left: 0 !important;
    }

    .optimize-retail .content-heading {
        max-width: 350px;
    }
    .optimize-retail .content-heading h2 {
        font-size: 22px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 25px;
    }
    .optimize-retail.active .container.custom-box:before {
        height: 275px;
    }
    .optimize-retail .other-info {
        max-width: 100%;
        margin-top: 40px;
        margin-left: 0;
    }
    .categories-list .item {
        width: 50%;
    }
    .platform-box .section-title {
        width: 350px;
    }
    .platform-box .section-title h4 {
        right: -90px;
        font-size: 14px;
    }
    .testimonials-slider .slick-dots {
        left: auto;
        display: flex;
        flex-direction: row;
        top: auto;
        bottom: -70px;
        justify-content: center;
        width: 100%;
    }
    .trusted-slider {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .trusted-slider .title {
        width: 100%;
        text-align: center;
    }
    .trusted-slider .title::before{
        display: none;
    }
    .trusted-slider .logo-list {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .trailer {
        padding: 15px 25px;
        height: auto;
        text-align: center;
    }
    .about-trail.about-trail-content {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 20px;
    }
    .about-trail h2 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .about-trail h5 {
        font-size: 14px;
        text-align: center;
    }
    .trailer .icons {
        display: flex;
        justify-content: center;
    }
    /* .url-form .login-space {
        padding: 0 !important;
    } */
    .url-form .form-btn {
        padding-left: 15px !important;
        text-align: center !important;
    }
    .about-sale-point ul {
        padding: 0;
    }
    .about-sale-point a {
        font-size: 22px;
        font-weight: 700;
    }
    .retailer {
        padding-left: 0;
    }
    .retail, .sync {
        padding: 10px 0px;
    }
    .trail-btn {
    text-align: left;
}
.frequent {
    padding: 0px 30px;
}
.getting-start, .getting-started, .about-retailing.about-fashion-clothing {
    text-align: center;
}
.trail-btn {
    text-align: center !important;
}
.optimize-retail .content-heading {
    margin-left: 30px;
}
.banner-home-img{
    display: none;
}
}
@media (max-width:575px) {
    .retail-image {
        margin-top: -60px;
    }
    .btn-red, .btn-white {
        height: 36px;
        padding: 5px 20px;
        font-size: 13px;
    }
    #header .navbar-brand {
        width: 100px;
    }
    .header-btn {
        right: 60px;
        top: 0;
    }

    .header-btn .btn-outline-success {
        font-size: 12px;
        padding: 8px 10px;
    }
    .main-top-banner {
        height: auto;
    }
    .main-top-banner .main-banner {
        margin-bottom: 120px;
        margin-top: 50px;
    }
    .main-banner p {
        font-size: 15px;
        line-height: 22px;
    }
    .icons-slider {
        width: 200px;
        height: 50px;
        margin: 0 auto 20px;
    }
    .main-top-banner .logo-part {
        width: 140px;
    }
    .optimize-retail {
        padding: 30px 0 20px;
    }
    .optimize-retail .container.custom-box:before{
        width: 140px;
    }
    .optimize-retail .content-heading {
        max-width: 100%;
        margin: 10px;
        margin-left: 0;
    }
    .optimize-retail .content-heading h2 {
        font-size: 20px;
    }
    .optimize-retail .content-heading h1 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .section-heading .logo-icon {
        width: 80px;
    }
    .section-heading h2 {
        font-size: 22px;
    }
    .categories-list .item {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
        margin-top: 80px;
    }
    .retail-bussiness.active .category-item-box {
        padding: 20px 15px;
    }
    .other-details h2 {
        font-size: 28px;
    }
    .pos-features .content {
        display: flex;
        align-items: flex-end;
        height: auto;
        flex-wrap: wrap;
    }
    .vertical-text-wrapper {
        width: 100%;
        padding-left: 20px;
    }
    .other-text-wrapper {
        width: 100%;
    }
   
    .platform-box {
        max-width: 100%;
        text-align: left;
    }
    .platform-box .section-title {
        width: 150px;
    }
    .platform-box .section-title h4 {
        right: -135px;
        font-size: 12px;
    }
    .platforms-content {
        margin-top: 0;
        text-align: center;
    }
    .trusted-by {
        padding: 20px 0;
    }
    .trusted-slider .title h2 {
        font-size: 28px;
    }
    .trusted-slider .title p {
        font-size: 15px;
        font-weight: bold;
    }
    .mobile-view-btn {
        margin-right: 40px;
    }

    .pricing-tabs ul#pills-tab {
        margin-right: -10px;
    }

    /* #showHide i{
        top: 13px;
    } */
    .login-lottie {
        width: 15px;
        left: 21%;
    }

    .main-checkout h4 {
        color: #E0312F;
    }

    .contact-us-content h3 {
        text-align: center;
    }

    .contact-no a {
        font-size: 18px;
    }

    .about-info a {
        font-size: 19px;
    }

    .about-retailing h2 {
        margin-top: 20px;
    }

    .about-upload p {
        margin-bottom: 10px;
    }

    .fashion-clothing-img {
        width: 250px;
        height: 250px;
    }

    .demo-data-wrap {
        font-size: 14px !important;
    }
    .vertical-text {
        writing-mode: unset;
        transform: rotate(0deg);
        position: unset;
    }
    .vertical-text-wrapper {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .vertical-text2 {
        writing-mode: unset;
        position: relative;
        flex-direction: row-reverse;
    }
    .vertical-text2 .bar {
        width: 150px;
        height: 30px;
        margin-top: 0;
        margin-right: 10px;
    }
    .vertical-text2 span {
        transform: rotate(0deg);
        
    }
    .content-heading h1 span {
        color: black !important;
    }
    .optimize-retail.active .container.custom-box:before {
    height: 210px;
}
.login-form-input .login-space, .form-group .form-id {
    padding: 0 190px 0 0 !important;
}
}

@media only screen and (max-width: 480px) {
    .fa-bars {
        color: #fff;
    }

    .plan-category {
        margin-top: 40px;
    }

    .price-category {
        margin-top: 20px;
    }

    .sell-in {
        margin-top: 15px;
    }

    .price-order {
        margin-top: 40px;
    }

    .nav-pills .nav-link {
        background: none;
        color: #949EB2 !important;
        font-family: "sofia-pro";
        font-size: 16px;
        padding: 10px;
    }

    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link,
    .nav-pills .nav-link {
        padding: 10px;
    }

    .start-up h3 {
        color: #949EB2;
        font-size: 16px;

        font-weight: 300;
        margin-bottom: 30px;
    }

    .start-up span {
        font-size: 20px;
        color: #e0312fd6;

        font-weight: 600;
    }

    .start-up p {
        color: #949EB2;
        font-size: 20px;
        font-family: "sofia-pro";
        margin-bottom: 35px;
    }

    .banner-exp {
        position: absolute;
        bottom: -150px;
        left: 0;
        right: 0;
    }

    .pos-power img {
        padding-left: 30px;
        padding-top: 5px;
    }

    .banner {
        padding-bottom: 50px;
    }

    .banner-top {
        margin-top: -136px;
    }

    .main-banner h1 {
        font-size: 24px;
    }

    .about-banner {
        font-size: 16px;
        margin-bottom: 33px;
    }

    .our-business h2 {
        font-size: 27px;
        margin-bottom: 14px;
    }

    .our-business p {
        font-size: 14px;
        margin-bottom: 50px;
    }

    .business {
        padding-top: 69px;
        margin-bottom: 0px;
    }

    .our-business h2 span {
        font-size: 27px;
    }

    .our-business p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .business-results img {
        width: 564px;
        margin-bottom: 50px;
    }

    .main-features h2 {
        font-size: 24px;
    }

    .statistics img {
        width: 546px;
    }

    .getting-start {
        padding-top: 0px;
        margin-top: -20px;
    }

    .getting-start h3 {
        font-size: 22px;
    }

    .getting-start p {
        font-size: 15px;
    }

    .getting-start P::after {
        bottom: -15px;
    }

    .selling li p {
        font-size: 15px;
    }

    .selling li img {
        float: left;
        padding-top: 0px;
    }

    .getting-started h3 {
        font-size: 25px;
    }

    .getting-started p {
        font-size: 15px;
        margin-bottom: -17px;
    }

    .getting-starts h3 {
        font-size: 24px;
    }

    .getting-starts p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .getting-starts {
        margin-bottom: 0px;
        padding-top: 0px;
    }

    .our-working h2 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    /* .our-working p {
        font-size: 11px;
        margin-bottom: 0px;
    } */

    .about-upload h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .pos-software {
        padding-top: 20px;
    }

    .pos-software h2 {
        font-size: 26px;
    }

    .pos-software p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .about-stores {
        font-size: 15px;
    }

    .software-btn {
        margin-top: -31px;
    }

    .perfect-software img {
        width: 631px;
        padding-top: 0px;
        margin-bottom: 30px;
    }

    .extend-power h2 {
        margin-bottom: 10px;
        padding-top: 0px;
    }

    .extend-power h2 {
        font-size: 26px;
    }

    .extend-power p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .sellings li p {
        padding-left: 39px;
        font-size: 15px;
    }

    .power-btn {
        padding-top: 0px;
    }

    .main-testimonials h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .testi1 {
        padding-top: 32px;
        padding-left: 50px;
        padding-right: 40px;
        padding-bottom: 1px;
    }

    .testi2 {
        padding-top: 32px;
        padding-left: 50px;
        padding-right: 40px;
        padding-bottom: 1px;
    }

    .testi1 span {
        font-size: 18px;
    }

    .testi2 span {
        font-size: 18px;
    }

    .testi1 .testimon {
        font-size: 15px;
    }

    .testi2 .testimon {
        font-size: 15px;
    }

    .main-brands h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .trailer {
        /* padding-bottom: 30px;
        padding-top: 30px; */
        margin-top: -50px;
    }

    .copyrights p {
        font-size: 12px;
        line-height: 20px;
    }

    .extend-power {
        padding-top: 0;
    }

    .optimistic {
        height: 580px !important;
        width: 100%;
        background-color: #FBFCFF;
    }

    .about-pass p {
        margin-left: 144px !important;
    }

    .sales-point h2 {
        padding-top: 35px !important;
    }

    .form-id {
        font-size: 24px !important;
    }

    .optimistic {
        height: 550px !important;
    }

    .about-pass p {
        margin-left: 28px !important;
    }

    .form-id {
        font-size: 14px !important;
    }

    .login-form h3 {
        font-size: 26px !important;

        color: #e0312fd6;
        font-weight: 400;
        margin-bottom: 45px !important;
    }

    label {
        color: #949EB2;
        font-size: 16px;
        font-family: "sofia-pro";
    }

    .form-group.col-md-12 span {
        color: #e0312fd6;
        font-size: 26px;

        text-align: end;
        position: absolute;
        top: 2px;
        right: 27px;
    }

    .fa-eye {
        position: absolute;
        top: 45px;
        right: 56px;
        font-size: 27px;
        color: #e0312fd6;
    }

    .sales-point h2 {
        font-size: 26px !important;
    }

    .form-btn {
        text-align: center;
        padding-top: 20px;
        margin-bottom: 10px;
    }

    .about-pass {
        margin-left: 105px !important;
    }

    .getting-start {
        margin-bottom: 30px;
        padding-top: 27px;
    }

    .abt-features {
        margin-top: 100px;
        margin-bottom: 61px;
    }

    .matics {
        padding-top: 27px;
        margin-bottom: 50px;
    }

    .getting-starts {
        margin-bottom: 0px;
        padding-top: 0px;
        margin-top: 0px;
    }

    /* .abt-image img {
        width: 77%;
        padding-top: 0px;
        margin-top: 0;
    } */
    .getting-started {
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .owe-image {
        padding-top: 50px;
    }

    .matics {
        padding-top: 10px;
        margin-bottom: 130px;
    }

    .cloud-matics-img {
        /* margin-bottom: 30px; */
        margin-bottom: 0;
    }

    #header {
        z-index: 9;
        position: absolute;
        width: 100%;
        /* top: 5px; */
    }

    .imo {
        color: #949EB2;
        font-size: 18px;
        font-family: "sofia-pro";
        padding-left: 30px;
    }

    .price-order h3 {
        color: #fff;
        font-size: 22px;

        font-weight: 700;
        padding-top: 15px;
        padding-left: 40px;
    }

    .service-head h3 {
        font-size: 28px;
        padding-top: 0px;
    }

    .service-head p {
        text-align: center;
        padding-top: 5px;
        color: #fff;
        font-size: 20px;
        font-family: "sofia-pro";
    }

    .frequent h2 {
        color: #e0312fd6;
        margin-bottom: 30px;

        font-size: 30px;
        font-weight: 600;
    }

    .frequent p {
        color: black;
        font-size: 18px;
        font-family: "sofia-pro";
        margin-bottom: 50px;
    }

    .card-title {
        margin-bottom: .75rem;
        color: #101C26;
        font-size: 16px;

    }

    .card-body p {
        font-size: 15px;
        color: #949EB2;
        font-family: "sofia-pro";
    }

    .location-image img {
        margin-left: -38px;
    }

    .contact-us-form {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0px 5px 50px #06369f1a;
        margin-bottom: 88px;
    }

    .in-touch h3 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .in-touch p {
        color: #949EB2;
        font-size: 20px;
        margin-bottom: 36px;
        font-family: "sofia-pro";
    }

    .about-info {
        width: 100%;
    }

    .contact-no {
        width: 100%;
    }

    .locate {
        width: 100%;
    }

    .location-image {
        text-align: center;
        padding-top: 48px;
    }

    .about-info {
        width: 100%;
    }

    .locate {
        width: 100%;
    }

    .contact-no {
        width: 100%;
    }

    .location-image {
        text-align: center;
        padding-top: 48px;
    }

    .form-btn .btn-primary {
        font-size: 16px;
        padding: 8px 25px;
    }

    .form-btn {
        margin-left: 0px !important;
        padding-top: 15px;
    }

    .contact-form-btn .btn-primary {
        font-size: 16px;
    }

    .contact-form-btn {
        text-align: center;
        padding-top: 15px;
    }

    .about-tab img {
        padding-left: 0px;
        margin-top: -22px;
    }

    .about-tab p {
        padding-left: 0px;
    }

    .emo {
        font-size: 18px;
    }

    .start-end span {
        color: #949EB2;
    }

    .pricing-cont {
        padding: 15px;
        margin-bottom: 60px;
    }

    /* .start-end h3 {
        color: #fff;
    }
    .start-end p {
        color: #fff;
    } */
    .about-amino {
        display: flex;
        padding: 10px 0;
        align-items: center;
    }

    .imo p {
        margin: 0;
    }

    .emo p {
        margin: 0;
    }

    .card-header {
        padding: 0.75rem 0.25rem 1.5rem;
    }

    .trail {
        padding-bottom: 20px;
    }
    .trailer {
        padding: 15px 0;
    }
    .about-trail h2 {
        font-size: 24px;
    }
    .about-trail h2 span {
        font-size: 16px;
    }
    .about-trail h5 {
        font-size: 12px;
    }
    .trailer .icons .icon {
        height: 120px;
        width: 120px;
    }
    .icon-holder-bg{
        width: 80px;
        height: 80px;
    }
    .icon-holder-bg lottie-player {
        width: 30px;
        height: 30px;
    }
    .home-page-selling {
        padding-top: 10px;
    }

    .home-page-getting-line p::after {
        bottom: -10px;

    }

    .contact-us-info-box a {
        padding-left: 35px;
    }

    /* login-form */
    .login-wrapper h3 {
        font-size: 20px;
    }

    .login-wrapper {
        padding: 50px;
    }

    .banner-home-img {
        width: 230px;
        height: 295px;
    }

    .banner-home-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;

    }

    .banner-btn {
        text-align: center;
        position: relative;
        z-index: 8;
    }

    .sale-desc h4,
    .sale-point-desc h4,
    .checking-out h4 {
        font-weight: bold;
    }

    .register-matics {
        margin-bottom: 10px;
    }

    .abt-features {
        margin-bottom: 30px;
    }

    .getting-started P::after {
        bottom: -6px;
    }

    .abt-image img {
        width: 64%;
    }

    .register-abt-feature {
        margin-bottom: 11px;
    }

    .web-owe-img img {
        padding-top: 0;
    }

    .our-features h4 {
        padding-top: 20px;
    }

    .contact-us-about-info-content i {
        left: 20px;
    }

    .about-info a,
    .contact-no a,
    .locate a {
        font-size: 17px;
    }

    .contact-us-about-info-content a {
        padding-left: 55px;
    }

    .contact-us-info-box {
        min-height: 100px !important;
    }

    .about-retailing h2 {
        margin-top: 10px;
    }

    .branding {
        padding: 20px 0;
    }

    .contact-us-info-box a {
        padding-left: 35px;
    }

    .footer-img {
        margin-bottom: 10px;
    }
    #footer {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 992px) {
    .navbar .navbar-collapse .navbar-nav {
        /* position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content; */
    }

    .custom-demo-data {
        max-width: 75%;
        margin: 0px auto;
        margin: 0px 35px 0 auto;
    }

    .custom-demo-data label {
        white-space: nowrap;
        padding-left: 29px;
    }

    .demo-data-wrap {
        display: block;
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 21px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Hide the browser's default checkbox */
    .demo-data-wrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom checkbox */
    .checkmark {
        position: absolute;
        top: 7px;
        left: 0;
        height: 21px;
        width: 21px;
        background-color: #fff;
        border: 2px #e0312fd6 solid;
    }

    /* On mouse-over, add a grey background color */
    .demo-data-wrap:hover input~.checkmark {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .demo-data-wrap input:checked~.checkmark {
        background-color: #e0312fd6;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .demo-data-wrap input:checked~.checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .demo-data-wrap .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 11px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transform: rotate(35deg);
    }

    .login-lottie {
        transform: translate(5%);
    }

}

@media (max-width:418px) {
    .main-logos li {
        padding-left: 0;
    }

}