/*----------  Genral CSS  ----------*/
* {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: baseline;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: auto !important;
}

body {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    position: relative;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700 !important;
}

a {
    text-decoration: none;
    color: #000;
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

a:hover {
    color: #FBAF2C;
    text-decoration: none;
    outline: none !important;
}

a:focus {
    text-decoration: none;
    outline: none !important;
}

*:focus {
    outline: none;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/*----------  Common CSS  ----------*/
.wrapper {
    display: block;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.body-fixed {
    overflow: hidden;
}

.container {
    max-width: 1407px;
    padding: 0 30px;
    position: relative;
}

.container-lg {
    max-width: 1356px;
    padding: 0 30px;
}

.common-sec {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.cms-con p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #646464;
    display: block;
}

/* button */

/* button */
.btn {
    position: relative;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding: 20px 15px;
    min-width: 221px;
    transition: all .4s ease-in-out;
}

.btn.btn-yellow {
    background-color: #FBAF2C;
}

.btn.btn-yellow:hover {
    background: #000;
    color: #fff;
}

.btn.btn-black {
    background-color: #000;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    min-width: 296px;
    margin-top: 20px;
}

.btn.btn-black:hover {
    background-color: #fff;
    color: #000;
}

.btn.btn-outline {
    background-color: transparent;
    border: 1px solid #FBAF2C;
    color: #FBAF2C;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    min-width: 130px;
    padding: 16px;
}

.btn.btn-outline:hover {
    background-color: #FBAF2C;
    color: #000;
}

.btn+.btn {
    margin-left: 15px;
}

/* button */

.sec-head {
    display: block;
    margin-bottom: 40px;
}

.sec-title {
    color: #FBAE2D;
    font-weight: 800;
    font-size: 70px;
    line-height: 1;
    text-transform: uppercase;
}

.sec-title span {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.4;
    color: #000;
    display: block;
}

.sec-head .sub-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    display: block;
}

.sec-md-title {
    color: rgba(0, 0, 0, 10%);
    font-size: 74px;
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-bottom: 0;
}

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

.form-control {
    padding: 18px 22px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #000 !important;
    line-height: 1;
    resize: none;
    position: relative;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #9d9d9d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.form-control:focus {
    border: none;
    box-shadow: none;
    background-color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea.form-control {
    height: 100%;
    min-height: 136px !important;
}

/* header */
.header {
    display: block;
    padding: 40px 85px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.header-logo {
    width: 170px;
    position: relative;
    display: block;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header::before {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 145px;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.has-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 16px 48px rgba(89 110 186 / 8%);
    z-index: 99;
    transition: all .4s ease-in-out;
    background-color: #fff;
    padding: 20px 85px
}

.has-sticky .header-logo {
    width: 150px;
}

.hero-banner-sec {
    position: relative;
    max-width: 1920px;
    margin: auto;
    display: flex;
}

.hero-banner-sec .hero-banner-img {
    width: 100%;
    height: 820px;
}

.hero-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-right {
    display: flex;
    align-items: center;
}

.head-call {
    margin-right: 39px;
    position: relative;
    z-index: 1;
}

@keyframes innerCircle {

    0% {
        -webkit-transform: rotate(0) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

}

.head-call img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-right: 10px;
    animation: innerCircle 1s ease-in-out infinite alternate;
    -webkit-animation: innerCircle 1s ease-in-out infinite alternate
}

.head-call a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    transition: all .4s ease-in-out;
}

.mobile-banner {
    display: none;
}

.head-call a:hover {
    color: #FBAE2D;
}

.hero-banner-wrap {
    position: absolute;
    left: 25%;
    top: 200px;
}

.hero-banner-con {
    max-width: 682px;
    margin: 0 50px 0 40px;
}

.hero-banner-con .sec-head {
    margin-bottom: 15px;
}

.banner-sub-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    padding-left: 16px;
    position: relative;
    margin-bottom: 15px;
}

.banner-sub-title::before {
    content: '';
    position: absolute;
    background-color: #FBAE2D;
    width: 4px;
    height: 46px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-banner-con .cms-con p {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.hero-banner-form {
    padding: 50px 38px;
    background-color: #FBAF2C;
    border-radius: 20px;
    max-width: 580px;
    margin-top: 170px;
    margin-right: 100px;
    margin-left: -110px;
    position: relative;
    z-index: 99999;

}

.hero-banner-form-title {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 35px;
}

.hero-banner-form form .row {
    --bs-gutter-x: 10px;
}

.digital-superhero-sec {
    margin-top: 150px;
    margin-bottom: 120px;
    padding: 0 20px;
}

.digital-superhero-wrap .sec-head {
    text-align: center;
}

.digital-superhero-silder {
    margin: 0 -16px;
}

.digital-superhero-slide {
    padding: 0 16px;
    overflow: hidden;
}

.digital-superhero-slide .img-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.digital-superhero-slide .img-box::before {
    content: '';
    position: absolute;
    background: #000;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.digital-superhero-slide .img-box img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.digital-superhero-con {
    position: absolute;
    top: 0;
    padding: 73px 60px 30px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digital-superhero-con-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    display: block;
}

.digital-superhero-con .cms-con {
    min-height: 90px;
}

.digital-superhero-con .cms-con p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.employee-tracking-sec .row {
    --bs-gutter-x: 24px;
}

.employee-tracking-box {
    padding: 40px 40px 0;
    display: block;
}

.employee-tracking-box.pink-box {
    background-color: #FFDDD1;
}

.employee-tracking-box.purple-box {
    background-color: #F7E3EA;
}

.employee-tracking-box-con {
    margin-bottom: 35px;
}

.employee-tracking-box-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px;
}

.employee-tracking-box-con .cms-con p {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
}

.employee-tracking-img {
    max-width: 512px;
    margin: auto;
}

.employee-tracking-btn {
    margin-top: 60px;
    text-align: center;
}

.expense-reporting-sec {
    width: 100%;
    position: relative;
    margin-top: 121px;
    padding-top: 68px;
}

.expense-reporting-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 1000px;
    background: linear-gradient(180deg, #FFF1D9 0%, #FFFFFF 100%);
}

.our-pacakge-wrap {
    max-width: 990px;
    margin: auto;
}

.our-package-box {
    background: #fff;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 100%;
}

.our-package-box-top {
    background-color: #FAEBD1;
    border-radius: 5px 5px 0px 0px;
    padding: 42px 20px 32px;
}

.our-package-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
}

.our-package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our-package-price .price-box span {
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: #FBAF2C;
    font-family: "Montserrat", sans-serif;
}

.our-package-price .price-box-number {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    color: #FBAF2C;
    position: relative;
    padding-left: 25px;
}

.price-box-content {
    color: #646464;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    display: block;
}

.price-or {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(142, 142, 142, 0.20);
}

.our-package-box-main {
    padding: 30px 20px 40px;
}

.cms-con ul {
    font-size: 0;
    display: block;
}

.cms-con ul li {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.cms-con ul li::before {
    content: '';
    position: absolute;
    background-image: url(../img/svg/right-sign.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 7px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.our-package-box-main .cms-con {
    margin-bottom: 35px;
}

.our-package-box-notes {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    color: #646464;
    margin-top: 18px;
}

.our-package-box-notes b {
    font-weight: 700;
}

.our-package-box-main .cms-con p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
    margin-bottom: 0;
}

.our-package-box-main .cms-con span {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-left: 50px;
    text-align: left;
    color: rgba(0, 0, 0, 10%);
    padding: 10px 0;
    display: block;
}

.report-box {
    position: relative;
}

.laptop-tracking-report {
    border: 2px solid #E1E1E1;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.mobile-tracking-report {
    border: 2px solid #E1E1E1;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    bottom: -140px;
    right: -100px;
}

.laptop-tracking-report img {
    width: 100%;
    height: 100%;
}

.mobile-tracking-report img {
    object-fit: contain;
}

.expense-reporting-box-item {
    display: block;
    margin-bottom: 50px;
}

.expense-reporting-box-con {
    margin-right: 80px;
}

.expense-reporting-box-item .expense-reporting-box-item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    text-align: left;
    margin-bottom: 22px;
    display: block;
}

.expense-reporting-box-item .cms-con p {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.expense-reporting-box-con .btn {
    margin-top: 20px;
}

.payroll-management-sec .expense-reporting-box-con {
    margin-left: 150px;
    margin-right: 0;
}

.payroll-management-sec .mobile-tracking-report {
    bottom: -200px;
    right: -82px;
}

.expense-reporting-sec .sec-head,
.payroll-management-sec .sec-head {
    margin-bottom: 60px;
}

.cilent-logo-img {
    display: flex;
    align-items: center;
    height: 110px;
    padding: 10px 20px;
    margin: 10px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.cilent-logo-img img {
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    transition: all .4s ease-in-out;
}

.cilent-logo-img:hover {
    box-shadow: 1px 2px 18px 0px rgba(0, 0, 0, 0.1);
}

.cilent-logo-img:hover img {
    filter: inherit;
}

.customers-say-sec {
    background-color: #FBAE2D;
}

.customers-say-silder {
    margin: 0 -12px;
}

.customers-say-silde {
    padding: 0 12px;
}

.customers-say-silde-box {
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
}

.customers-say-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    min-height: 62px;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #000;
    margin-bottom: 5px;
}

.customer-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #666666;
    margin-bottom: 10px;
}

.customers-say-silde-box .cms-con {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.customers-say-silde-box .cms-con p {
    min-height: 111px;
}

.customer-rating {
    display: flex;
    align-items: center;
}

.rating-star {
    width: 14px;
    height: 14px;
    margin-right: 2px;
}

.rating-star img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goggle-icon {
    width: 50px;
    height: 50px;
}

.goggle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.choose-us-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 1000px;
    background: linear-gradient(180deg, #FFF1D9 0%, #FFFFFF 100%);
}

.choose-us-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    height: calc(100% - 28px);
    margin-bottom: 28px;
    width: 100%;
}

.choose-us-box-img {
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
}

.choose-us-box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.accordion-item {
    background-color: #fff;
    border-radius: 18px !important;
    border: 1px solid #fff;
    margin-bottom: 30px;
    box-shadow: 0px 5px 16px 0px #080F340F;
    overflow: hidden;
}

.accordion-item.active {
    border: 2px solid #F89A20;
    box-shadow: 0px 6px 16px 0px #F89A201A;
}

.accordion-button {
    background-color: #fff !important;
    color: #170F49 !important;
    box-shadow: none !important;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    padding: 16px 38px;
}

.accordion-body {
    padding: 0 38px 15px;
    max-width: 875px;
}

.accordion-body .cms-con p {
    font-size: 18px;
    line-height: 1.6;
}

.accordion-button::after {
    background-color: #fff;
    box-shadow: 0px 5px 16px 0px #080F340F;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    background-position: center;
    background-image: url(../img/svg/right-arrrow.svg);
    background-size: 10px;
}

.accordion-button:not(.collapsed)::after {
    background-color: #F89A20;
    background-image: url(../img/svg/down-arrow.svg);
    background-size: 16px;
    background-position: center;
    transform: none;
    box-shadow: none;
}

.view-more-btn {
    text-align: center;
    margin-top: 50px;
    display: block;
}

.footer {
    background-color: #FFF4E0;
    padding: 20px 0;
    text-align: center;
}

.footer .cms-con p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.footer .cms-con p a {
    color: #FBAF2C;
    font-weight: 600;
    transition: all .4s ease-in-out;
}

.footer .cms-con p a:hover {
    color: #000;
}

.footer-whatsapp a {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 70px;
    height: 70px;
    background-color: #1cd766;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    z-index: 99;
    padding: 15px;
    animation: breathe 2s ease-in-out infinite
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
    }
}

.popupMain {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 300ms all;
    -webkit-transition: 300ms all;
    padding: 15px;
}

.popupMain:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: -5px;
    height: 100%;
}

.popVisible {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}

.overlayer {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: 300ms all;
    -webkit-transition: 300ms all;
}

.popVisible .overlayer {
    opacity: 1;
    visibility: visible;
}

.popBody {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    position: relative;
    transition: 600ms all;
    -webkit-transition: 600ms all;
    background: #FBAE2D;
    max-width: 500px;
    width: 100%;
    height: auto;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 7px;
    overflow: hidden;
}

.popBody:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 50px;
    background-color: #fff;
    content: "";
    z-index: -1;
}

.popVisible .popBody {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.closePopup {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.closePopup:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 77%;
    height: 2px;
    background: #000;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: 600ms all;
    -webkit-transition: 600ms all;
}

.closePopup:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 77%;
    height: 2px;
    background: #000;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 600ms all;
    -webkit-transition: 600ms all;
}

.bodyfixed {
    overflow: hidden;
}

.formOfferImg img {
    max-width: 460px;
    min-height: 684px;
    object-fit: cover;
}

.form_sl {
    position: relative;
    width: 100%;
    padding: 0 20px;
    background: #FBAE2D;
}

#get_popup .popBody {
    max-width: 930px;
    padding: 0;
}

.popBody .btn.btn-black {
    font-size: 18px;
    min-width: 216px;
    margin-top: 10px;
}

/* slick-slider */
.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    width: auto;
    list-style: none;
    padding: 0 6px
}

.slick-dots li:first-child {
    padding-left: 0
}

.slick-dots li:last-child {
    padding-right: 0
}

.slick-dots li button {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: #EEF0F3;
    font-size: 0;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: color .4s ease-in-out, background-color .4s ease-in-out, border-color .4s ease-in-out, transform .4s ease-in-out, box-shadow .4s ease-in-out
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background: #FBAE2D
}

.customers-say-silder .slick-dots li button {
    background: #f1f1f1;
}

.customers-say-silder .slick-dots li.slick-active button,
.customers-say-silder .slick-dots li button:hover {
    background: #000;
}

/* slick-slider */

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap label.error {
    position: absolute;
    right: 0px;
    top: -20px;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 12px !important;
    line-height: 12px !important;
    background: #fb0101;
    padding: 5px 5px 4px !important;
    color: #fff !important;
    display: block !important;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:after,
.wpcf7-form-control-wrap label.error:after {
    border-color: #fb0101 transparent transparent;
    -o-border-image: none;
    border-image: none;
    border-right: 6px solid transparent;
    border-style: solid;
    border-width: 6px;
    content: "";
    height: 0;
    left: 5px;
    position: absolute;
    top: 100%;
    width: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900;
    background: #fff;
    font-size: 14px;
    margin: 15px 0 0 0;
    padding: 10px;
    color: #000;
}



/* thank-you-page */
.thank-you-sec {
    padding: 90px 0;
    height: calc(100vh - 90px);
}

.thank-you-sec .thank-you-img {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
}

.thank-you-sec .thank-you-con .thank-you-title {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.thank-you-sec .thank-you-con p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    margin-bottom: 22px
}

.form-wrap {
    background-color: #FBAE2D;
}

.form_sl .row {
    --bs-gutter-x: 12px;
}

/* thank-you-page */


/************ resposive *************/
@media only screen and (max-width:1921px) {
    .digital-superhero-silder .slick-list {
        padding-right: 100px !important;
    }
}

@media only screen and (max-width:1850px) {
    .hero-banner-con {
        margin: 50px 0 0;
        max-width: 600px;
    }

    .hero-banner-wrap {
        left: 23%;
        top: 150px;
    }

    .sec-title {
        font-size: 60px;
    }

    .sec-title span {
        font-size: 40px;
    }
}

@media only screen and (max-width:1666px) {}

@media only screen and (max-width:1499px) {

    .header {
        padding: 30px;
    }

    .expense-reporting-sec .laptop-tracking-report {
        width: 93%;
    }

    .expense-reporting-sec .mobile-tracking-report {
        right: 0;
    }

    .digital-superhero-con {
        padding: 20px;
    }

    .digital-superhero-con-title {
        font-size: 28px;
    }

    .hero-banner-form {
        margin-right: 40px;
    }

    .hero-banner-con {
        max-width: 565px;
    }

    .hero-banner-wrap {
        left: 20%;
    }

    .sec-title {
        font-size: 56px;
    }

    .banner-sub-title {
        font-size: 42px;
    }

    .sec-title span {
        font-size: 36px;
    }

    .hero-banner-form {
        max-width: 530px;
        padding: 50px 28px;
    }
}

@media only screen and (max-width:1366px) {
    .header {
        padding: 30px 15px;
    }

    .hero-banner-form {
        margin-right: 25px;
    }

    .banner-sub-title::before {
        height: 36px;
    }

    .expense-reporting-box-con {
        margin-right: 40px;
    }

    .payroll-management-sec .expense-reporting-box-con {
        margin-left: 120px;
        margin-right: 0;
    }
}

@media only screen and (max-width:1280px) {
    .sec-md-title {
        font-size: 60px;
    }

    .sec-head .sub-title {
        font-size: 30px;
    }

    .sec-title {
        font-size: 46px;
    }

    .sec-title span {
        font-size: 30px;
    }

    .hero-banner-con .cms-con p {
        font-size: 18px;
    }

    .hero-banner-con {
        max-width: 450px;
    }

    .hero-banner-form {
        margin-left: -190px;
    }

    .header {
        padding: 20px 15px;
    }

    .expense-reporting-box-item {
        margin-bottom: 30px;
    }

    .head-call {
        margin-right: 25px;
    }

    .btn.btn-black {
        font-size: 16px;
        min-width: 236px;
    }

    .hero-banner-sec .hero-banner-img {
        height: 800px;
    }
}

@media only screen and (max-width:1199px) {
    .digital-superhero-silder .slick-list {
        padding-right: 0 !important;
    }

    .digital-superhero-sec {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .expense-reporting-sec {
        margin-top: 80px;
    }

    .mobile-tracking-report {
        bottom: -240px;
    }

    .expense-reporting-box-con {
        margin-right: 20px;
    }

    .payroll-management-sec .expense-reporting-box-con {
        margin-left: 110px;
        margin-right: 0;
    }

    .choose-us-box {
        padding: 20px;
    }

    .common-sec {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .sec-md-title {
        font-size: 50px;
    }

    .expense-reporting-box-item {
        margin-bottom: 30px;
    }

    .has-sticky,
    .header {
        padding: 20px;
    }

    .our-package-box-top {
        padding: 20px;
    }

    .our-package-title {
        font-size: 20px;
    }

    .our-package-price .price-box-number {
        font-size: 40px;
    }

    .hero-banner-form {
        margin-left: -47%;
    }

    .hero-banner-con {
        max-width: 490px;
        margin: 20px 0 0;
    }

    .hero-banner-form {
        max-width: 450px;
        padding: 30px 18px;
        margin-top: 150px;
    }

    .hero-banner-sec .hero-banner-img {
        height: 690px;
    }

    .hero-banner-wrap {
        left: 4%;
    }

    .btn.btn-black {
        min-width: 210px;
    }

    .hero-banner-img {
        position: relative;
    }

    .hero-banner-img::before {
        content: '';
        position: absolute;
        background: rgba(255, 255, 255, .6);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    textarea.form-control {
        height: 100%;
        min-height: 100px !important;
    }

    .btn {
        min-width: 200px;
    }

    .head-call img {
        width: 30px;
        height: 30px;
    }

    .error-sec {
        height: calc(100vh - 130px);
        padding: 20px 0
    }

    .thank-you-sec {
        height: calc(100vh - 50px)
    }

    .thank-you-sec .thank-you-con .thank-you-title {
        font-size: 100px
    }

    .error-sec .error-title {
        font-size: 150px
    }

}

@media only screen and (max-width:991px) {
    .our-package-box {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .employee-tracking-box {
        margin-bottom: 30px;
    }

    .mobile-tracking-report {
        bottom: -180px;
    }

    .expense-reporting-box-con {
        margin-right: 0;
        margin-top: 200px;
    }

    .laptop-tracking-report {
        width: 93%;
    }

    .payroll-management-sec .mobile-tracking-report {
        right: 0;
    }

    .payroll-management-sec .expense-reporting-box-con {
        margin-left: 0;
        margin-right: 0;
    }

    .accordion-button {
        font-size: 18px;
        padding: 12px 25px;
    }

    .accordion-body .cms-con p {
        font-size: 16px;
    }

    .accordion-body {
        padding: 0 25px 15px;
    }

    .accordion-button::after {
        width: 30px;
        height: 30px;
    }

    .header-logo,
    .has-sticky .header-logo {
        width: 130px;
    }

    .head-call a {
        font-size: 18px;
    }

    .head-call img {
        width: 20px;
        height: 20px;
    }

    .has-sticky,
    .header {
        padding: 15px;
    }

    .hero-banner-wrap {
        left: 30%;
    }

    .banner-sub-title {
        font-size: 30px;
    }

    .sec-title {
        font-size: 40px;
    }

    .sec-title span {
        font-size: 24px;
    }

    .hero-banner-con .cms-con p {
        font-size: 16px;
    }

    .banner-sub-title::before {
        height: 26px;
    }


    .btn {
        padding: 15px;
        min-width: 180px;
    }

    .header::before {
        min-height: 120px;
        background: linear-gradient(180deg, #FFFFFF 48%, rgba(255, 255, 255, 0) 100%);
    }

    .digital-superhero-con-title {
        font-size: 22px;
    }

    .digital-superhero-slider {
        margin: 0 -12px;
    }

    .sec-md-title {
        font-size: 40px;
    }

    .sec-head .sub-title {
        font-size: 24px;
    }

    .digital-superhero-slide {
        padding: 0 12px;
    }

    .expense-reporting-box-item .expense-reporting-box-item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .expense-reporting-box-item {
        margin-bottom: 20px;
    }

    .expense-reporting-sec .sec-head,
    .payroll-management-sec .sec-head {
        margin-bottom: 30px;
    }

    .sec-head {
        margin-bottom: 20px;
    }

    .common-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .accordion-button:not(.collapsed)::after {
        background-size: 14px;
    }

    .employee-tracking-btn {
        margin-top: 20px;
    }

    .goggle-icon {
        width: 30px;
        height: 30px;
    }

    .customers-say-silde-box {
        padding: 30px 15px;
    }

    .choose-us-box-img {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;
    }

    .formOfferImg {
        width: 100%;
        height: 100%;
    }

    .formOfferImg img {
        max-width: 100%;
        width: 100%;
        height: 40vh;
        object-position: top;
        min-height: 100%;
        object-fit: cover;
    }

    .form_sl {
        padding: 30px 15px;
    }

    .hero-banner-sec {
        display: block;
    }

    .hero-banner-form {
        max-width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .hero-banner-con {
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .hero-banner-sec .hero-banner-img {
        height: 550px;
    }

    .hero-banner-img::before {
        content: unset;
    }

    .head-call {
        margin-right: 15px;
    }

    .thank-you-sec .thank-you-con .thank-you-title {
        font-size: 80px
    }

    .error-sec .error-title {
        font-size: 100px
    }

    .error-sec .error-subtitle {
        font-size: 30px
    }

    .thank-you-sec .thank-you-img {
        max-width: 100px
    }

}

@media only screen and (max-width:767px) {

    .has-sticky,
    .header {
        padding: 15px 0;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;

    }

    .btn {
        font-size: 14px;
        min-width: 150px;
    }

    .footer-whatsapp a {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .btn.btn-black {
        min-width: 180px;
    }

    .expense-reporting-sec {
        margin-top: 50px;
        padding-top: 50px;
    }

    .thank-you-sec .thank-you-con .thank-you-title {
        font-size: 60px
    }

    .thank-you-sec .thank-you-img {
        max-width: 80px;
        margin-bottom: 10px
    }

    .error-sec .error-title {
        font-size: 80px
    }

    .error-sec .error-subtitle {
        font-size: 26px;
        padding-bottom: 15px
    }

    .thank-you-sec {
        height: calc(100vh - 120px)
    }
}

@media only screen and (max-width:568px) {
    .cms-con p {
        font-size: 14px;
    }

    .customers-say-silde-box .cms-con p {
        min-height: 100px;
    }

    .accordion-body .cms-con p {
        font-size: 14px;
    }

    .header-logo,
    .has-sticky .header-logo {
        width: 110px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 10px;
        min-width: 150px;
    }

    .btn.btn-outline {
        padding: 12px;
    }

    .cms-con ul li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .our-package-price .price-box-number {
        font-size: 30px;
        padding-left: 20px
    }

    .price-or {
        font-size: 26px;
    }

    .our-package-price .price-box span {
        font-size: 20px;
    }

    .our-package-box-main .cms-con span {
        font-size: 30px;
        margin-left: 40px;
    }

    .digital-superhero-con .cms-con p {
        font-size: 14px;
    }

    .digital-superhero-sec {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .sec-head .sub-title {
        font-size: 20px;
    }

    .employee-tracking-box {
        padding: 20px 15px 0;
    }

    .employee-tracking-box-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .employee-tracking-box-con .cms-con p {
        font-size: 14px;
    }

    .employee-tracking-box-con {
        margin-bottom: 20px;
    }

    .mobile-tracking-report {
        bottom: -150px;
        height: 40vh;
    }

    .sec-md-title {
        font-size: 30px;
    }

    .expense-reporting-box-con {
        margin-top: 170px;
    }

    .expense-reporting-box-item .expense-reporting-box-item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .expense-reporting-box-item .cms-con p {
        font-size: 14px;
    }

    .footer-whatsapp a {
        bottom: 90px;
        padding: 12px;
    }

    .payroll-management-sec .mobile-tracking-report {
        bottom: -180px;
    }

    .cilent-logo-img {
        height: 60px;
        padding: 10px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .accordion-button::after {
        width: 22px;
        height: 22px;
        background-size: 8px;
        right: 10px;
        position: absolute;
    }

    .accordion-button:not(.collapsed)::after {
        background-size: 10px;
    }

    .accordion-button {
        padding: 12px 50px 12px 20px;
    }

    .view-more-btn {
        margin-top: 30px;
    }

    .digital-superhero-sec {
        padding: 0;
    }

    .btn {
        min-width: 140px;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .head-call a {
        font-size: 0;
    }

    .head-call img {
        margin-right: 0;
    }

    .header {
        position: relative;
    }

    .header::before {
        min-height: 80px;
    }

    .hero-banner-sec .hero-banner-img {
        height: 360px;
    }

    .sec-title {
        font-size: 30px;
    }

    .hero-banner-con .cms-con p {
        font-size: 14px;
    }

    .banner-sub-title {
        font-size: 24px;
        margin-bottom: 10px;
        margin-left: 10px;
    }

    .sec-title span {
        font-size: 22px;
    }

    .hero-banner-con .sec-head {
        margin-bottom: 5px;
    }

    .hero-banner-wrap {
        left: 19%;
        top: 50px;
    }

    .hero-banner-con {
        padding: 0 15px;
    }

    .has-sticky {
        position: fixed;
    }

    .hero-banner-form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-control {
        padding: 12px 18px;
    }

    textarea.form-control {
        min-height: 80px !important;
    }

    .btn.btn-black,
    .popBody .btn.btn-black {
        min-width: 150px;
        font-size: 14px;
        margin-top: 10px;
    }

    .banner-sub-title::before {
        height: 20px;
    }

    .form_sl {
        padding: 15px;
    }

    .thank-you-sec .thank-you-con .thank-you-title {
        font-size: 44px
    }

    .error-sec p {
        font-size: 14px
    }

}

@media only screen and (max-width:395px) {
    .hero-banner-sec .hero-banner-img {
        height: 330px
    }

    .sec-title {
        font-size: 28px;
    }

    .hero-banner-wrap {
        left: 19%;
        top: 30px;
    }
}