@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

body {
    width: 100%;
    font-family: "Inter", sans-serif;
    background-color: var(--bs-white);
    color: var(--bs-dark);
    line-height: 24px;
    font-size: 20px;
    box-sizing: border-box;
}

.header h2 {
    font-size: 50px;
    color: red;
    padding: 20px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: #0f0e0e;
}

a:focus {
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

img {
    border: none;
}

.clr {
    clear: both;
}

/* Header */

header {
    position: relative;
}

.navbar-top {
    z-index: 10;
    position: absolute;
    width: 100%;
    padding: 10px 0;
}

.multiple-page-headding h2 {
    font-size: 35px !important;
    font-weight: bold !important;
}

.multiple-page-bar ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.multiple-page-bar ul li {
    color: #fff;
}

.multiple-page-bar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.fixed-top-scroll {
    background-color: #ffffffbb;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.5s ease-in-out;
    animation: slideDown 0.4s ease-in-out;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background-clip: padding-box;
    box-shadow: 0 0 10px #ccc;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 18px;
    padding: 0 25px !important;
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: 100px;
    background: #02699b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 20%;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgb(2 105 155) !important;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgb(2 105 155) !important;
    font-weight: 500;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6l18 18M6 24L24 6'/%3E%3C/svg%3E");
}

.logo img {
    width: 170px;
}

.login-button {
    padding: 8px 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-button:hover {
    color: #000;
}

.free-trial-button {
    padding: 8px 20px;
    background-color: #55bce7;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    font-size: 16px;
}

.free-trial-button:hover {
    background-color: #000;
    color: #fff;
}

.book-demo-button {
    padding: 8px 20px;
    background-color: #02699b;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.book-demo-button:hover {
    color: #fff;
}

.book-demo-button-three {
    padding: 12px 25px;
}

.book-demo-button-three {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.book-demo-button-three:hover {
    background: linear-gradient(90deg, #00c6ff, #007bff);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* Icon movement animation */
.book-demo-button-three i {
    transition: transform 0.4s ease;
}

.book-demo-button-three:hover i {
    transform: translateX(6px);
}

/* Optional subtle ripple effect */
.book-demo-button-three::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.book-demo-button-three:hover::before {
    width: 300%;
    height: 300%;
}

.to-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: transparent;
    font-size: 40px;
    color: #fff;
    border: 0;
    cursor: pointer;
    z-index: 1200;
    display: none;
    border-radius: 20px;
    display: none !important;
}

.social-icons a i {
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    width: 1em;
    margin-left: 8px;
    margin-right: 8px;
    text-align: center;
    transition: all .4s ease-out;
}

.fa-facebook-f:hover {
    color: #3b5998;
    transition: all .4s ease-in-out;
}

.fa-twitter:hover {
    color: #55acee;
    transition: all .4s ease-in-out;
}

.fa-linkedin-in:hover {
    color: #0976b4;
    transition: all .4s ease-in-out;
}

.fa-instagram:hover {
    color: #d43e19;
    transition: all .3s ease-in-out;
}

.fa-google:hover {
    color: #01b121;
    transition: all .3s ease-in-out;
}

.header_logo_center a.logo span {
    color: #0f0f0f;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    padding: 5px 3px;
    text-transform: uppercase;
    vertical-align: middle;
}

.header_logo_center a.logo {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.header-banner {
    padding-top: 170px;
    padding-bottom: 80px;
    position: relative;
    /* z-index: 1; */
}

.header-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 400px;
    width: 400px;
    background: #00ff0f;
    z-index: -1;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
}

.header-banner::after {
    position: absolute;
    right: -20%;
    top: -20%;
    content: "";
    height: 700px;
    width: 700px;
    background: #f3f7fd;
    z-index: -1;
    border-radius: 30px;
    transform: rotate(45deg);
}

.banner-text h2 {
    font-size: 60px;
    font-weight: normal;
    color: #233d56;
    padding-bottom: 20px;
}

.banner-text h3 {
    font-size: 20px;
    font-weight: normal;
    color: #233d56;
    padding-bottom: 10px;
}

.banner-text h2 span {
    color: #55bce7;
    font-weight: bold;
}

.banner-text p {
    font-size: 17px;
    color: #666666;
    margin-bottom: 30px !important;
}

.banner-img img {
    width: 100%;
}

.btn-outline-maincolor {
    background: linear-gradient(90deg, #55bce7, #444c75);
    border: 1px solid #fff !important;
    color: #fff !important;
    height: 50px;
    padding: 2px 20px;
    align-items: center;
    display: flex;
    font-weight: 600;
    font-size: 16px;
    /* text-transform: uppercase; */
    border-radius: 8px;
    text-decoration: none;
}

.btn-outline-maincolor:hover {
    background: linear-gradient(90deg, #444c75, #444c75);
}

.section-boxs {
    padding: 70px 0;
}

.slider-bottomline {
    padding: 40px 0;
    background-color: #55acee;
}

.box-responsive h2 {
    padding-top: 15px;
}

.box-one {
    text-align: center;
}

.box-one h2 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: normal;
}

.headding {
    text-align: center;
    padding-bottom: 20px;
}

.headding h1 {
    color: #474747;
    font-size: 18px;
    font-weight: 500;
}

.headding h2 {
    color: #444c75;
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    position: relative;
    padding-bottom: 10px;
}

.headding h2::before {
    background: #444c75 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 40px;
}

.navbar-top-two {
    position: inherit;
}

.headding h2::after {
    background: #444c75 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 3px;
    left: 50%;
    margin-left: 20px;
    position: absolute;
    width: 5px;
}

.headding h2 span {
    color: #444c75;
    font-weight: bold;
}

.headding p {
    color: #474747;
    font-size: 18px;
    font-weight: 200;
}

.headding ul {
    padding: 0;
    padding-top: 10px;
}

.headding ul li {
    padding: 5px 0px;
    color: #fff;
}

.headding ul li svg {
    width: 20px;
    fill: #fff;
}

.light-headding h2 {
    color: #fff;
}

.light-headding h3 {
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    font-style: italic;
}

.light-headding h2 span {
    color: #fff;
}

.light-headding p {
    color: #fff;
}

.light-headding h2::before {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    left: 0;
    margin-left: 0;
}

.light-headding h2::after {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    left: 3%;
}

.light-headding p {
    margin: 0;
    padding-top: 20px;
}

.about {
    background: #eef7ff;
}

.technologies-we-main {
    margin-top: 40px;
}

.tab-btn {
    border: none;
    width: 100%;
    color: #233d56;
    font-weight: 600;
    padding: 15px 0px;
    background: transparent;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-demo-btn {
    background-color: #55bce7 !important;
    padding: 2px 20px;
    font-size: 16px;
}

.schedule-demo-btn:hover {
    background-color: #444c75 !important;
}

.tab-btn.active {
    background: #55bce7;
    color: #fff;
}

.tab-btn:hover {
    background: #55bce7;
    color: #fff;
}

.tabs-main {
    display: flex;
    justify-content: space-between;
    background: #c7eaf9;
    border: 1.239px solid #cae5f1;
    border-radius: 100px;
}

.icon-circle i {
    font-size: 20px;
}

#tab-content {
    margin-top: 40px;
}

.tab-pane h3 {
    font-size: 40px;
    font-weight: bold;
    color: #55bce7;
}

.tab-pane h3 span {
    color: #233d56;
}

.tab-pane p {
    font-size: 16px;
}

.language-text ul {
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.language-text ul li {
    color: #000;
    font-size: 16px;
    padding: 5px 0;
    font-weight: 400;
}

.language-text ul li i {
    color: #55bce7;
    padding-right: 10px;
}

.language-text ul li img {
    width: 50px;
    padding-right: 10px;
}

.hr-payroll {
    background-image: url('../images/hr-payroll-bg.png');
    /* background-color: #233d56; */
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 50px 0 0 0;
}

.hr-photo img {
    width: 100%;
    margin-top: -110px;
}

.faq {
    background-color: #fff;
    background-image: url('../images/case-bg.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.accordion-item {
    border: none !important;
    border-radius: 0px !important;
    padding: 25px;
    border-bottom: 1px solid #444c752e !important;
}

.accordion-body-a {
    font-size: 16px;
    color: #474747 !important;
    line-height: 28px;
    font-weight: 400;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-black) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-weight: normal !important;
    line-height: 1.2em !important;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.accordion-button.accordion-button-a.collapsed {
    font-size: 18px !important;
    font-weight: normal !important;
    line-height: 1.2em !important;
    background-color: transparent;
    padding: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button-a span {
    background: linear-gradient(90deg, #55bce7, #444c75);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 25px;
    font-weight: 600;
}

.accordion {
    width: 1100px;
    margin: 0 auto;
}

.privacy {
    background-image: url('../images/bg-two.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 40px;
    border-radius: 40px;
    text-align: left;
}

.privacy p {
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.request-demo-btn {
    float: right;
}

.headding img {
    width: 60px;
    margin-bottom: 20px;
}

.privacy-main {
    padding: 10px 0 50px 0;
    margin-bottom: -200px;
    background-image: url('../images/case-bg.jpg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.privacy h2::before {
    content: "";
    left: 0;
    margin-left: 0;
}

.privacy h2::after {
    content: "";
    left: 3%;
}

.footer {
    background-image: url('../images/footer-bg.png');
    /* background-color: #55bbe6; */
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer-one {
    height: 250px;
}

.footer-text img {
    width: 70px;
}

.footer-two {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text h2 {
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    margin: 0;
}

.footer-text h2 a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-text ul {
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-text ul li {
    display: inline-block;
}

.footer-text ul li a {
    text-decoration: none;
    color: #fff;
    padding: 0 10px;
    font-size: 14px;
}

.footer-text-one h5 {
    color: #fff;
    font-size: 18px;
}

.form-btn {
    margin-bottom: 10px;
}

.form-btn label {
    font-size: 16px;
    margin-bottom: 5px;
}

.input-btn {
    width: 100% !important;
    padding: 10px 15px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 14px;
}

.no-of-employee {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 14px;
}

.send-message-btn {
    width: 100% !important;
    background-color: #55bce7 !important;
    color: #fff !important;
    font-size: 16px !important;
}

.privacy-policy-text1 h4 {
    color: #383838;
    font-weight: 500;
    padding: 10px 10px 10px 0px;
    text-transform: capitalize;
    border-radius: 3px;
    font-size: 18px;
}

.privacy-policy-text1 p {
    color: #656565;
    font-size: 15px;
    font-weight: normal;
}

.privacy-policy-text1 ul {
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.privacy-policy-text1 ul li {
    color: #656565;
    font-size: 15px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    z-index: 999;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float i {
    color: #fff;
    font-size: 34px;
}

/* .contact-form {
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 0 15px #ebebeb;
} */

.pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}

.pricing-table .ptable-item {
    width: 25%;
    padding: 0 15px;
    margin-top: 10px;
}

.ptable-single {
    transition: all 0.4s ease;
    transform: scale(1);
}

.ptable-single:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.pricing-table .ptable-single {
    background: rgba(250, 250, 252, .5);
    border-radius: 10px;
    border: 1px solid #02699b17;
    box-shadow: 3px 3px 2px #ebebeb;
}

.pricing-table .ptable-single:hover {
    box-shadow: 0px 4px 4px rgb(2 105 155 / 14%), 0px -2px 4px rgba(0, 0, 0, 0.05);
}

.pricing-table .ptable-header {
    padding: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    /* background: linear-gradient(0deg, #55bce7, #6d7bbe); */
    background-color: #02699b08;
    border-bottom: 1px solid #02699b17;
}

.pricing-table .ptable-title h2 {
    color: #000000;
    font-size: 16px;
    margin: 0;
}

.pricing-table .ptable-price h2 {
    color: #02699b;
    font-size: 22px;
    font-weight: 700;
}

.pricing-table .ptable-price h2 span {
    margin-left: 3px;
    font-size: 11px;
    font-weight: 400;
}

.pricing-table .ptable-body {
    padding: 8px 15px 8px 15px;
}

.ptable-description ul {
    padding: 0;
    list-style: none;
    text-align: left;
}

.ptable-description ul li {
    color: #2a293e;
    font-size: 12px;
    padding: 3px 5px;
    cursor: pointer;
    position: relative;
}

.pricing-table .ptable-footer {
    padding-bottom: 30px;
}

.pricing-table .ptable-action a {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, #55bce7, #444c75);
}

.ptable-price {
    padding: 10px 0 20px 0;
}

.ptable-price h6 {
    font-size: 14px;
    margin: 0;
}

.additional-employee {
    border: 1.5px solid #007bff;
    border-radius: 10px;
    padding: 6px 15px;
    background-color: #f0f8ff;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.additional-employee h2 {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #007bff;
    margin: 0;
}

.additional-employee h2 span {
    font-size: 12px;
    padding-left: 5px;
    color: #333;
}

.dropdown-content {
    display: none;
    padding-left: 25px;
    margin-top: 5px;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-item.active .dropdown-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content li i {
    margin-left: 5px;
    color: green;
    font-size: 10px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #e9ecef !important;
    color: #000 !important;
    padding-bottom: 10px;
}

.ptable-title-active div h2 {
    color: #fff !important;
}

/* .ptable-item-active {
    margin-top: -0px !important;
} */
.ptable-title-active {
    background: linear-gradient(0deg, #55bce7, #6d7bbe);
}

.textarea-button {
    padding-bottom: 50px !important;
}

.features-box-one {
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e1e7ef;
    margin: 10px 0;
}

.features-box-one:hover {
    box-shadow: 0 0 10px #efefef;
}

.features-box-one svg {
    background: linear-gradient(90deg, #55bce7, #444c75);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 15px;
}

.features-box-one h2 {
    font-size: 30px;
    padding: 30px 0 10px 0;
    margin: 0;
}

.features-box-one p {
    color: rgb(101 117 154);
    font-size: 16px;
}

.features-box-one ul {
    padding: 0;
    margin: 0;
}

.features-box-one ul li {
    font-size: 14px;
    padding: 6px 0;
}

.features-box-one ul li i {
    font-size: 6px;
    color: #444c75;
    margin-right: 10px;
}

.btn-text-bg {
    background: #55bce7 !important;
}

.btn-text-bg-no {
    background: transparent !important;
    color: #000 !important;
}

.btn-text-bg-no:hover {
    color: #000 !important;
}

.three-buttons {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.schedule-demo-main {
    background: linear-gradient(180deg, #E6F0FF 0%, rgba(230, 240, 255, 0.00) 100%);
}

.fill-details {
    font-size: 20px;
    margin-bottom: 20px;
}

.schedule-demo-form {
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 2px rgb(216, 230, 249);
}

.free-trial-btn {
    width: 100%;
    justify-content: center;
}

.schedule-text {
    padding: 0 40px;
}

.schedule-headding h2 {
    font-size: 35px;
    font-weight: 600;
}

.schedule-headding h6 {
    font-size: 18px;
    font-weight: 600;
}

.schedule-headding p {
    font-size: 18px;
    color: #333;
    padding-bottom: 20px;
}

.schedule-headding-two h2 {
    font-size: 25px;
}

.schedule-headding ul {
    padding: 0;
    margin: 0;
}

.schedule-headding ul li {
    font-size: 16px;
    padding: 5px 0;
}

.schedule-headding ul li i {
    font-size: 14px;
    color: #02699b;
}

.already h2 {
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
}

.already h2 a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.contact-box {
    box-shadow: 0 0 10px #efeeee;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.contact-box img {
    width: 60px;
}

.contact-box h2 {
    font-size: 20px;
    padding-left: 10px;
}

.contact-box h2 a {
    font-size: 20px;
    color: #000;
    text-decoration: none;
}

.demo-left-photo img {
    border-radius: 30px;
}

.demo-left-text {
    background-color: #f0f6ff;
    padding: 50px;
    border-radius: 20px;
}



@media only screen and (min-width:320px) and (max-width:767px) {

    .contact-form {
        padding: 0px;
        border-radius: 20px;
        box-shadow: none;
    }

    .pricing-table .ptable-item {
        width: 100%;
    }

    .three-buttons {
        display: inherit;
    }

    .login-button {
        width: 100%;
        text-align: center;
        background-color: #dcdcdc;
        border-radius: 5px;
    }

    .free-trial-button {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .book-demo-button {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    .navbar-toggler {
        padding: 7px 10px !important;
        font-size: 14px !important;
    }

    .navbar-light .navbar-toggler {
        color: transparent !important;
    }

    .logo img {
        width: 150px;
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 5%;
        bottom: 5px;
    }

    .pricing-table .ptable-item {
        padding: 5px 0;
    }

    .pricing-table .ptable-price h2 {
        font-size: 25px;
    }

    .pricing-table .ptable-header {
        padding: 10px;
    }

    .pricing-table .ptable-title h2 {
        font-size: 13px;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: 10%;
        height: 2px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 17px;
        padding: 8px 0px !important;
        position: relative;
    }

    ul.navbar-nav.mx-auto.mb-2.mb-lg-0 {
        padding: 0;
    }

    .navbar-top {
        position: initial;
    }

    .header-banner {
        padding-top: 30px;
    }

    .banner-text h2 {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .banner-text h3 {
        font-size: 15px;
    }

    .banner-text p {
        font-size: 15px;
        color: #666666;
    }

    .banner-img img {
        width: 100%;
        margin-top: 30px;
    }

    .box-responsive {
        padding: 15px;
        text-align: left;
        margin: 10px 0;
        border-radius: 10px;
        border: 1px solid #ffffff2e;
    }

    .privacy h2::before {
        content: "";
        left: 50%;
        margin-left: -25px;
    }

    .privacy h2::after {
        content: "";
        left: 50%;
    }

    .header-banner::before {
        position: absolute;
        left: -350px;
    }

    .header-banner::after {
        display: none;
    }

    .headding h2 {
        font-size: 30px;
    }

    .section-boxs {
        padding: 50px 0;
    }

    .tab-pane h3 {
        font-size: 30px;
    }

    .schedule-demo-btn {
        margin-bottom: 30px;
    }

    .headding ul li {
        font-size: 14px;
    }

    .hr-photo img {
        margin-top: 0;
    }

    .hr-payroll {
        padding-bottom: 0;
    }

    .tabs-main {
        display: block;
        border-radius: 10px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 15px 15px;
        justify-content: left;
        border-radius: 10px;
    }

    .accordion-item {
        padding: 15px;
    }

    .accordion-button-a span {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        font-size: 20px;
        background: transparent;
        color: #000000;
        margin: 0;
        display: none
    }

    .accordion-button.accordion-button-a.collapsed {
        font-size: 15px !important;
    }

    .accordion-button:not(.collapsed) {
        font-size: 15px !important;
    }

    .accordion-body-a {
        font-size: 14px;
        line-height: 20px;
    }

    .accordion {
        width: 100%;
    }

    .privacy {
        padding: 25px;
        border-radius: 30px;
        text-align: center;
    }

    .privacy p {
        font-size: 11px;
    }

    .request-demo-btn {
        float: none;
    }

    .footer-text h2 {
        font-size: 12px;
        text-align: center;
    }

    .footer-text ul {
        text-align: center;
    }

    .footer-text {
        padding-bottom: 10px;
    }

    .footer-text ul li a {
        font-size: 14px;
    }

    .schedule-demo-btn {
        background-color: #55bce7 !important;
        padding: 0px 20px;
        font-size: 14px;
    }

    .btn-outline-maincolor {
        height: 45px;
    }

    .input-btn {
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 12px;
    }

    .form-btn {
        margin-bottom: 7px;
    }

    .form-btn label {
        font-size: 13px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg,
    .whatsapp-float i {
        width: 22px;
        height: 22px;
        font-size: 20px;
    }

    .features-box-one svg {
        width: 50px;
        height: 50px;
        padding: 13px;
    }

    .features-box-one h2 {
        font-size: 25px;
        padding: 20px 0 10px 0;
    }

    .features-box-one p {
        font-size: 14px;
    }

    .multiple-page-headding h2 {
        font-size: 22px !important;
        font-weight: 500 !important;
    }

    .slider-bottomline {
        padding: 20px 0;
    }

    .schedule-demo-form {
        padding: 25px 10px;
        margin: 0 5px !important;
    }

    .schedule-text {
        padding: 0;
        padding-top: 25px;
    }

    .schedule-headding h2 {
        font-size: 25px;
    }

    .schedule-headding p {
        font-size: 15px;
        padding-bottom: 0px;
    }

    .schedule-headding-two img {
        width: 100%;
    }

    .fill-details {
        font-size: 16px;
    }

    .contact-box {
        padding: 10px 15px;
        margin: 10px 0;
    }

    .contact-box img {
        width: 45px;
    }

    .contact-box h2 {
        font-size: 18px;
    }

    .contact-box h2 a {
        font-size: 16px;
    }


}

@media only screen and (min-width:768px) and (max-width:991px) {

    .header-banner::after {
        position: absolute;
        right: -90%;
    }

    .navbar-toggler {
        padding: 7px 10px !important;
        font-size: 14px !important;
    }

    .contact-box {
        padding: 10px 15px;
    }

    .login-button {
        background-color: #dcdcdc;
        border-radius: 5px;
    }

    .contact-box img {
        width: 55px;
    }

    .contact-box h2 {
        font-size: 18px;
    }

    .contact-box h2 a {
        font-size: 18px;
    }

    .three-buttons {
        justify-content: start;
    }

    .navbar-light .navbar-toggler {
        color: transparent !important;
    }

    .pricing-table .ptable-item {
        width: 50%;
    }

    .navbar-top {
        position: inherit;
    }

    .logo img {
        width: 150px;
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 2.5%;
        bottom: 5px;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: 5%;
        height: 2px;
    }

    .header-banner {
        padding-top: 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 17px;
        padding: 8px 0px !important;
        position: relative;
    }

    ul.navbar-nav.mx-auto.mb-2.mb-lg-0 {
        padding: 0;
    }

    .banner-text h2 {
        font-size: 32px;
        padding-bottom: 10px;
        margin: 0;
    }

    .banner-text p {
        font-size: 13px;
    }

    .box-one h2 {
        font-size: 13px;
    }

    .footer-text ul {
        text-align: left;
        padding-top: 15px;
    }

    .section-boxs {
        padding: 50px 0;
    }

    .headding h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .tab-pane h3 {
        font-size: 25px;
    }

    .language-text ul li {
        font-size: 14px;
        padding: 3px 0;
    }

    .tab-pane p {
        font-size: 14px;
    }

    .hr-photo img {
        margin-top: 0;
    }

    .hr-payroll {
        padding-bottom: 0;
    }

    .accordion {
        width: 100%;
    }

    .request-demo-btn {
        float: none;
    }

    .tab-btn {
        width: auto;
        font-size: 12px;
        padding: 10px;
    }

    .schedule-headding h2 {
        font-size: 28px;
    }

    .schedule-headding p {
        font-size: 15px;
        padding-bottom: 0;
    }

    .schedule-headding-two img {
        width: 100%;
    }

    .schedule-text {
        padding: 0;
        padding-left: 20px;
    }


}


@media only screen and (min-width:992px) and (max-width:1200px) {

    .header-banner::after {
        position: absolute;
        right: -55%;
    }

    .book-demo-button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .free-trial-button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .login-button {
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0px 8px !important;
    }

    .tab-btn {
        width: auto;
    }

    .accordion {
        width: 100%;
    }

    .tab-btn {
        width: auto;
        font-size: 14px;
        padding: 15px 22px;
    }

    .hr-photo img {
        margin-top: 0;
    }

    .accordion-item {
        padding: 20px;
    }

    .pricing-table .ptable-item {
        width: 33.33%;
    }

    .schedule-headding-two img {
        width: 100%;
    }

    .fill-details {
        font-size: 18px;
    }

    .already h2 {
        font-size: 13px;
    }

    .schedule-text {
        padding: 0;
        padding-left: 20px;
    }

    .footer-text h2 {
        font-size: 13px;
    }

    .footer-text h2 a {
        font-size: 13px;
    }

    .footer-text ul li a {
        padding: 0 4px;
        font-size: 13px;
    }

}