@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

/* Root - Variables Start Here  */
:root {
    --grey: #fbfbfb;
    --dark-grey: #2b2b2b;
    --white: #fff;
    --blue: #03508b;
    --sky: #01bfef;
    --text: #949494;
}

/* Common classes start here  */
.blue {
    color: var(--blue);
}

.white {
    color: var(--white);
}

.grey {
    color: var(--grey);
}

.blue {
    color: var(--blue);
}

.sky {
    color: var(--sky);
}

.dark-grey {
    color: var(--dark-grey);
}

.text {
    color: var(--text);
}

.transit {
    transition: .67s;
}

.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs30 {
    font-size: 30px;
}

.fs40 {
    font-size: 40px;
}

.fs46 {
    font-size: 46px;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.sky-btn {
    background-color: var(--sky);
    padding: 10px 30px;
    display: inline-block;
    border-radius: 5px;
}

.sky-btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

.z-index {
    z-index: 9;
}

.w-40 {
    width: 40%;
}

.w-26 {
    width: 26%;
}

.w-70 {
    width: 70%;
}

.italic {
    font-style: italic;
}

.w-80 {
    width: 80%;
}
.card-view {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
}

/* Header Css Start Here  */
.header {
    background-color: var(--grey);
    padding: 15px 0px;
}

.header .navbar-light .navbar-nav .nav-link.dark-grey {
    color: var(--dark-grey) !important;
    padding: 0px 30px;
}

.header .navbar-light .navbar-nav .nav-link.active,
.header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--blue) !important;
}

.fixed-header {
    position: fixed;
    /* animation: smoothScroll 1sease-in-out 0s 1; */
    animation: smoothScroll 1s ease-in-out;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .05);
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    padding-top: 12px;
    padding-bottom: 12px;
}

@keyframes smoothScroll {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Banner Css Start Here  */
.banner {
    padding: 90px 0px;
}

.banner .shape {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    background-color: #01bfef47;
    position: absolute;
    top: -70px;
    right: -30px;
}

/* tips details css start here  */
.tips .tips-details,
.contact .tips-details {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
}

/* About Us Css Start Here  */
.about-us {
    padding: 80px 0px;
}

.about-us .img-about img {
    width: 80%;
}

/* Services Css Start Here  */
.services {
    background-color: #fbfbfb;
    padding: 50px 0px;
    margin: 0px 0px 80px 0px;
}

.services .services-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
}

.services .services-wrapper h4 {
    min-height: 54px;
}

.services .services-wrapper p {
    min-height: 120px;
}

/* CTA Css Start Here  */
.cta .cta-content {
    background-color: var(--blue);
    padding: 50px;
    border-radius: 10px;
}

.cta .img-cta img {
    width: 70%;
}

.cta-content a:hover {
    background-color: #166eb1;
}

/* Contact Us Css Start Here  */
.contact {
    padding: 80px 0px;
}

.contact .contact-form .field input,
.contact .contact-form .field textarea {
    height: 45px;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fbfbfb;
    border: 1px solid #d8d8d8;
    width: 100%;
    padding: .375rem .75rem;
}

.contact .contact-form .field textarea {
    height: 100px;
}

.contact .contact-form .field input:focus,
.contact .contact-form .field textarea:focus {
    box-shadow: none;
    outline: none;
}

.contact .contact-form {
    box-shadow: 0px 0px 5px #dbdbdb;
    padding: 50px;
    border-radius: 10px;
}

.contact .thought {
    padding: 20px;
    background-color: #f7f7f7;
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
}

.contact .thought p svg {
    width: 30px;
    height: 35px;
}

.contact .thought p svg path {
    fill: #ffbd04;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Footer Css Start Here  */
.footer .f-services ul li a,
.footer .f-services ul li {
    color: var(--text);
    transition: .67s;
}

.footer .f-services ul li a:hover,
.footer .f-services ul li:hover {
    color: var(--blue);
}

.footer .f-services .servis-list li svg {
    width: 15px;
}

.footer {
    background-color: #f7f7f7;
    padding: 50px 0px;
}

.footer .f-services.ps-5 {
    padding-left: 0px !important;
}

/* Scroller Css Start Here  */
#scroller {
    display: inline-block;
    background-color: var(--blue);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}

#scroller.show {
    opacity: 1;
    visibility: visible;
}

#scroller svg {
    width: 20px;
}

.header .navbar-nav li a.sky-btn {
    padding: 10px 30px !important;
}

.header .navbar-light .navbar-nav .nav-link:hover.sky-btn:hover {
    color: var(--white) !important;
}

.about-banner {
    padding: 100px 0px;
    background-color: var(--blue);
}

.tips.servises {
    padding: 100px 0px;
}

.services.s-sec {
    margin: 0px !important;
}

.blog-body p {
    overflow: hidden;
    display: -webkit-box;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blogs {
    padding: 80px 0px;
}

.blogs .blog-body {
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
}

.blogs .blog-body .blog-content {
    padding: 30px;
}

.inner-blog::after {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0px;
    background-color: #03508bd4;
}
.inner-blog {
    padding: 100px 0px;
    text-align: center;
    background-image: url('../img/blog-erp.png');
    background-position: center;
    background-size: cover;
}
.blogs-content table {
    background-color: transparent;
    width: 100%;
    margin-block-end: 15px;
    font-size: .9em;
    border-spacing: 0;
    border-collapse: collapse;
}
.blogs-content table td, .blogs-content table th {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
}
.blogs-content table tr:nth-child(odd){
    background-color: #f6f6f6;
}
.blogs-content table thead tr{
    background-color: transparent !important;
}
.blog-acc .accordion-item{
    border-bottom: none;
    background-color: #efefef;
    border-radius: 10px;
    margin-bottom: 20px;
}
.blog-acc .accordion-button{
    background-color: transparent;
}   
.blog-acc .accordion-button:focus {
    border: none;
    box-shadow: none;
}
.blog-acc .accordion-collapse.collapse.show {
    border-top: none !important;
}
.blog-acc .accordion-button:not(.collapsed){
    color: var(--text);
}
.blogs-content {
    padding: 80px 0px;
}
.page-not {
    padding: 50px 0px;
}
.hrm-banner {
    background: linear-gradient(180deg, #0452890f, transparent);
}
.platform {
    background: linear-gradient(90deg, #01bfef, #03508b);
    padding: 80px 0px;
    margin: 80px 0px;
}
.hrm-sv1 {
    padding: 80px 0px;
}
.maintain .img-maintain img {
    width: 30%;
}
.maintain {
    padding: 80px 0px;
}
.platform .img-girl {
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: right;
}
.platform .img-girl img {
    width: 65%;
}
.platform .right-button a{
    white-space: nowrap;
}

.erp-banner {
    background: linear-gradient(180deg, #0452891a, #ffffff);
}
.erp-banner .erp-content .upper-text {
    width: 49%;
}
.servis-erp{
    background-color: var(--blue);
    margin-top: -50px;
    padding: 50px 0px;
}
.servis-erp::after {
    content: '';
    position: absolute;
    bottom: 100%;
    height: 343px;
    width: 100%;
    display: block;
    background-image: url(../img/bg-shape.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.servis-erp .features-erp .feature-content {
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    flex: 1;
}
.servis-erp .features-erp .feature-icon {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0px 0px 5px #f8f8f880;
    margin-left: -30px;
}
.servis-erp .features-erp .feature-icon.right-m {
    margin-left: 0px;
    margin-right: -30px;
    z-index: 99;
}
.servis-erp .left-card {
    padding-right: 50px !important;
}
.servis-erp .right-card {
    padding-left: 50px !important;
}
.erp-servis {
    padding-top: 80px;
}
.erp-tips {
    padding-bottom: 80px;
}
.opacity-0{
    opacity: 0;
    pointer-events: none;
}
.banner-servis1 {
    position: absolute;
    top: 0;
    left: 110px;
    z-index: 9;
    animation: 1.5s onemove infinite ease-in-out;
}
.banner-servis2 {
    position: absolute;
    bottom: 90px;
    right: -30px;
    z-index: 9;
    animation: 1.9s twomove infinite ease-in-out;
}
.banner-servis3 {
    position: absolute;
    bottom: 40px;
    left: 110px;
    z-index: 9;
    animation: 1.9s threemove infinite ease-in-out;
}
.banner-servis4 {
    position: absolute;
    top: 90px;
    right: -50px;
    z-index: 9;
    animation: 1.9s fourmove infinite ease-in-out;
}
.moving-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    animation: infinite-spinning 8s infinite linear;
}
.mob-banner-img {
    display: none;
}
.social-media .links a{
    color: transparent;
    transition: .67s;
}
.social-media .links a svg{
    fill: var(--blue);
}
.social-media .links a:hover svg {
    fill: var(--sky);
}

@keyframes onemove {
    0% {
        left: 110px;
    }
    50% {
        left: 150px;
    }
    100% {
        left: 110px;
    }
}
@keyframes twomove {
    0% {
        right: -30px;
    }
    50% {
        right: 20px;
    }
    100% {
        right: -30px;
    }
}
@keyframes threemove {
    0% {
        bottom: 40px;
    }
    50% {
        bottom: 80px;
    }
    100% {
        bottom: 40px;
    }
}
@keyframes fourmove {
    0% {
        top: 90px;
    }
    50% {
        top: 130px;
    }
    100% {
        top: 90px;
    }
}
@keyframes infinite-spinning {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }