@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    color: #333;
    line-height: normal;
    background: white;
}

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

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Black.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* Dot (inner cursor) */
.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
}

/* Outline (outer cursor) */
.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s ease-out;
    transform: translate(-50%, -50%);
}

main {
    overflow-x: clip;
}

a {
    color: #000000;
    text-decoration: none;
    transition: .4s ease;
    font-family: 'Poppins';
    font-size: 1rem;
    letter-spacing: .2px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: .4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    line-height: 1.3;
    font-weight: bold;
    /* font-family: 'Helvetica Neue'; */
    font-family: "Manrope", sans-serif;
    /* letter-spacing: .2px; */
}

p,
li {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins';
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

:root {
    --primary: #1b9493;
}


@media (min-width: 1200px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }

    html {
        font-size: 15px;
    }

}

/* Header  */

nav.navbar {
    background-color: rgb(255 255 255 / 86%);
    position: fixed;
    z-index: 99;
    width: 100%;
    border-radius: 0 0 50px 50px;
}

a.navbar-brand img {
    width: 240px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 15px;
    color: #000000;
    font-weight: 500;
    font-size: 1.07rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.nav-btn a {
    display: inline-flex;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.nav-btn a i {
    /* transform: rotate(-45deg); */
    transition: .4s ease;
}

.nav-btn a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0%;
    width: 102%;
    height: 100%;
    background-color: #000000;
    transition: all 0.5s ease-in-out;
    z-index: -1;
    transform: skewY(9.3deg) scaleY(0);
}

.nav-btn a:hover:after {
    transform: skewY(0deg) scaleY(2);
}

.navbar.sticky {
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar.sticky a.navbar-brand img {
    width: 170px;
}

.banner-slider {
    position: relative;
    overflow: hidden;
}

.banner-slider .slide {
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0 0 50px 50px;
}

.banner-slider .slide:before {
    position: absolute;
    content: "";
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, #000000, transparent);
}

.slide-content {
    width: 55%;
    margin-right: auto;
    text-align: left;
    position: relative;
    /* background: #0000008a; */
    /* padding: 40px; */
    margin: 3rem 0 0;
}


.subtitle {
    color: white;
	font-size: 1.3rem;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    margin: 10px 0 15px;
    border-bottom: 1px solid;
    padding: 0 0 15px;
}

.title span {
    color: #ffffff;
}

.description {
    margin-bottom: 1.5rem;
    color: white;
}

.slide-content p {
    color: white;
}

.slide-content .nav-btn a {
    background: white;
    color: var(--primary);
}

.sec-padding {
    padding: 4rem 0;
}

.about-right {
    background-color: rgb(222, 222, 222);
    border-radius: 20px;
    padding: 35px;
}

.mission-box {
    background-color: rgb(222, 222, 222);
    border-radius: 20px;
    padding: 35px;
    transition: .4s ease;
}

.mission-flex {
    display: flex;
    justify-content: space-between;
}

.mission-icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-content: center;
    background: var(--primary);
    border-radius: 100%;
    transition: .4s ease;
}

.mission-text {
    width: 80%;
}

.mission-icon img {
    filter: brightness(100);
}

.mission-text h3 {
    color: var(--primary);
    font-size: 2rem;
}

.mission-box:hover {
    background-color: var(--primary);
}

.mission-box:hover h3,
.mission-box:hover p,
.mission-box:hover a {
    color: white;
}

.mission-box:hover .mission-icon {
    background: white;
}

.mission-box:hover .mission-icon img {
    filter: contrast(0.5);
}

.read-more a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
}

.hover-img {
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hover-img:hover img {
    transform: scale(1.1) rotate(-2deg);
    filter: brightness(0.8);
}

.billing-service-sec {
    background-image: url(../imgs/bg-1.jpg);
    background-size: cover;
}

.billing-service {
    position: relative;
    background: white;
    box-shadow: 0px 0px 10px 0px #0B10300D;
    /* border-radius: 20px; */
    padding: 35px;
    overflow: hidden;
    transition: .4s ease;
    /* text-align: center; */
    width: 100%;
    height: 100%;
}

.billing-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.billing-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.billing-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #1b9493;
    opacity: 80%;
}

.bill-icon img {
    width: 50px;
    height: auto;
    margin: 0 0 20px;
}

.billing-top li {
    position: relative;
    margin: 0 0 8px;
    padding-left: 25px;
}

.billing-top li:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background: url(../imgs/list-icon.png);
    left: 0px;
    background-size: contain;
    top: 7px;
    background-repeat: no-repeat;
}

.billing-service:hover .billing-inner {
    opacity: 1;
}

.billing-service:hover p,
.billing-service:hover li,
.billing-service:hover h3 {
    color: white;
    position: relative;
}

.billing-service:hover li:before {
    filter: brightness(100);
}

.billing-service:hover .nav-btn a {
    background: white;
    color: var(--primary);
}

.billing-service:hover .bill-icon img {
    filter: brightness(100);
}

.nav-btn a:hover {
    color: white !important;
}

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 50px 0 0; */
}

ul.slick-dots li button {
    font-size: 0;
    width: 25px;
    height: 4px;
    border: none;
    background: #92c4c3;
    margin: 0 2px;
    transition: .4s ease;
}

ul.slick-dots li.slick-active button {
    background: #1b9493;
    width: 40px;
}

p.span-title {
    color: var(--primary);
    font-size: 1.1rem;
    /* position: relative; */
    /* padding-left: 20px; */
    /* display: inline-block; */
    margin: 0;
    text-transform: uppercase;
}

p.span-title:before {
    /* border-radius: 100%; */
    /* position: absolute; */
    content: "";
    /* width: 12px; */
    /* height: 12px; */
    /* background: var(--primary); */
    /* top: 34%; */
    /* left: 0; */
}

h3.web-title {
    font-size: 2.2rem;
    margin: 10px 0;
    letter-spacing: -1px;
}

h3.web-title span {
    color: var(--primary);
    /* font-style: italic; */
    /* font-family: 'Lora', sans-serif; */
    display: inline !important;
}

.about-right li {
    /* width: 46%; */
    margin: 0 0 10px;
    /* color: var(--primary); */
    list-style: circle inside;
    /* font-weight: 500; */
    width: 100%;
    margin-left: auto;
}

.about-right ul {
    /* display: flex; */
    /* flex-wrap: wrap; */
}


.service-sec {
    background-image: url(../imgs/bg-2.jpg);
    background-size: cover;
}


.service-item {
    position: relative;
    background: white;
    box-shadow: 0px 0px 10px 0px #0B10300D;
    min-height: 395px;
    padding: 25px 15px;
    overflow: hidden;
    transition: .4s ease;
    text-align: center;
    width: 95%;
    margin: auto;
    min-height : 395px;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
    transform: translate(100%, -100%);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-image,
.service-item:hover .service-image {
    opacity: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 81%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    position: relative;
    z-index: 9;
}

.service-body .icon-box {
    /* width: 85px; */
    /* height: auto; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* background: var(--primary); */
    /* border-radius: 50%; */
    /* margin: 0 auto 20px; */
    /* transition: all 0.4s ease-in-out; */
}

.service-item.active .service-body .icon-box,
.service-item:hover .service-body .icon-box {
    /* background: var(--primary); */
}

.service-body .icon-box img {
    width: 100%;
    max-width: 60px;
    max-height: 55px;
    transition: all 0.4s ease-in-out;
    /* filter: invert(1); */
    margin: 0 auto 20px;
    object-fit: contain;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img {
    filter: brightness(0);
}

.service-content {
    /* border-bottom: 1px solid #b4b4b4; */
    /* margin-bottom: 25px; */
    /* padding-bottom: 25px; */
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
    border-color: white;
}

.service-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.service-content h4 a {
    /* color: inherit; */
}

.service-content p {
    /* margin-bottom: 0; */
    transition: all 0.4s ease-in-out;
    /* width: 90%; */
    margin: 0 auto 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.service-item.active .service-content h4,
.service-item:hover .service-content h4,
.service-item.active .service-content p,
.service-item:hover .service-content p {
    /* color: white; */
}

.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn {
    color: white;
    background: #000;
}

.service-item.active .service-readmore-btn .readmore-btn::before,
.service-item:hover .service-readmore-btn .readmore-btn::before {
    filter: brightness(0) invert(1);
}

a.readmore-btn {
    color: #ffffff;
    /* display: flex; */
    /* align-items: center; */
    /* gap: 5px; */
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    background: var(--primary);
    margin: auto;
}

.service-item:hover {
    transform: translateY(-10px);
}

.cta-sec {
    padding: 80px 0;
}

.cta-text {
    width: 65%;
    margin: auto;
}






.feature-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cdcdcd;
    padding: 0 0 15px;
    margin: 0 0 20px;
}

.feature-img {
    width: 10%;
}

.feature-content {
    width: 85%;
}

.why-main {
    position: relative;
}

.why-1 {
    width: 65%;
    margin-left: auto;
    height: 550px;
}

.why-2 {
    width: 250px;
    height: 350px;
    position: absolute;
    bottom: 20%;
    left: 40px;
    transform: rotate(-7deg);
    border: 6px solid #fff;
}

.process-sec {
    background-image: url(https://html.awaikenthemes.com/carely/images/how-it-work-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 9;
}

.process-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* opacity: 80%; */
    background: linear-gradient(to right, #000000b0, #000000b0);
    width: 100%;
    height: 100%;
    z-index: -1;
}


.work-steps-item {
    position: relative;
    background: #FFFFFF1A;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.work-steps-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary);
    border-radius: 999px 999px 0 0;
    transition: all 0.4s ease-in-out;
}

.work-steps-item.active::before,
.work-steps-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.work-step-no,
.work-step-content,
.work-step-btn {
    position: relative;
    z-index: 1;
}

.work-steps-item .icon-box {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 1;
}

.work-steps-item .icon-box img {
    width: 100%;
    max-width: 60px;
    transition: all 0.4s ease-in-out;
}

.work-step-no {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}

.work-steps-item.active .work-step-no,
.work-steps-item:hover .work-step-no {
    background: white;
}

.work-step-no h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: white;
    transition: all 0.5s ease-in-out;
}

.work-steps-item.active .work-step-no h3,
.work-steps-item:hover .work-step-no h3 {
    color: var(--primary-color);
    margin: 0;
}

.work-step-content {
    margin-bottom: 20px;
}

.work-step-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: white;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 20px;
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out;
}

.work-step-content p {
    color: white;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.work-step-btn .readmore-btn {
    color: white;
}

.work-step-btn .readmore-btn::before {
    background-image: url('../images/arrow-accent.svg');
}

.work-steps-item.active .work-step-content h3,
.work-steps-item:hover .work-step-content h3 .work-steps-item.active .work-step-content p,
.work-steps-item:hover .work-step-content p,
.work-steps-item.active .work-step-btn .readmore-btn,
.work-steps-item:hover .work-step-btn .readmore-btn {
    color: white;
}

.work-steps-item.active .work-step-btn .readmore-btn::before,
.work-steps-item:hover .work-step-btn .readmore-btn::before {
    filter: brightness(0) invert(1);
}

.home-form-box {
    /* padding: 45px 35px; */
    background: var(--primary);
    border-radius: 50px;
    overflow: hidden;
}

.form-img {
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.form-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #1b9493, transparent);
    bottom: 0;
}

.home-form {
    /* background: white; */
    /* padding: 30px; */
    /* border-radius: 25px; */
    width: 90%;
    margin: auto;
}

.form-box input,
.form-box textarea,
.form-box select {
    width: 100%;
    border: none;
    padding: 12px 10px;
    margin-bottom: 20px;
    font-size: .9rem;
    border-radius: 5px;
    font-family: "Poppins";
    color: #fff;
    font-weight: 500;
    background: #126464;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: white;
}

textarea {
    height: 110px;
}

.form-box input[type="submit"] {
    border: none;
    background: #000000;
    font-size: 15px;
    color: white;
    border-radius: 8px;
    width: max-content;
    padding: 10px 50px;
    margin: 0;
}

.home-info {
    display: flex;
    margin: 0 0 20px;
}

.home-info i {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    background: #1d5656;
    color: white;
    border-radius: 100%;
    margin-right: 14px;
}

.home-info span {
    display: block;
    color: white;
    margin: 0 0 10px;
    font-family: 'Poppins';
}

.home-info a,
.home-info h4 {
    color: white;
}

.home-contact-info {
    position: absolute;
    bottom: 5%;
    right: 35%;
    width: auto;
}

.testimonial-main {
    border-radius: 50px;
    box-shadow: 0px 8px 14.72px 1.28px rgb(0 0 0 / 41%);
    padding: 40px;
}

.test-left-img {
    height: 350px;
}

.test-p {
    width: 90%;
    border-bottom: 3px solid #cdcdcd;
    padding: 0 0 15px;
}

.test-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 29px 0 0;
}

.test-info img {
    width: 75px;
    height: 75px;
    border-radius: 100%;
}

.testimonial-slider span.prev-btn {
    bottom: 5%;
    left: 75%;
}

.testimonial-slider span.next-btn {
    bottom: 5%;
    right: 10%;
}

.blog-box {
    width: 95%;
    border: 1px solid #cdcdcd;
    padding: 15px;
    border-radius: 20px;
    margin: 0 auto 30px;
}

.blog-inner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 0 15px;
}

.blog-img {
    width: 100%;
    height: 270px;
}

.date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    padding: 10px;
    background: var(--primary);
    font-size: 17px;
    color: white;
    text-align: center;
    display: grid;
    place-content: center;
}

.tag {
    /* margin: 10px 0; */
    /* opacity: .6; */
    /* color: var(--primary); */
    display: none;
}

.blog-text h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 15px;
    transition: .4s ease;
}

.blog-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-arrow a {
    font-weight: 500;
    text-decoration: underline;
}

.blog-arrow a i {
    /* transform: rotate(-45deg); */
    margin-left: 5px;
}

.blog-box:hover h5 {
    color: var(--primary);
}

.client-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.client-img img {
    width: auto;
    margin: auto;
    height: 100px;
    width: 90%;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.footer {
    padding: 60px 0;
    background: var(--primary);
    border-radius: 50px;
}

.new-form form {
    /* width: 420px; */
    position: relative;
    margin-left: auto;
    font-family: 'Poppins';
}

.new-form form input[type="email"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    padding: 10px;
    outline: none;
    color: white;
    margin: 0 0 12px;
}

.new-form form input[type="email"]::placeholder {
    color: white;
}

.new-form form input[type="submit"] {
    border: none;
    background: white;
    padding: 8px 15px;
    /* border-radius: 30px; */
    /* position: absolute; */
    right: 5px;
    top: 5px;
    font-size: 14px;
}

footer p,
footer a {
    color: white;
}

.footer-links ul li a {
    display: inline-block;
    padding: 0 0 10px 20px;
    position: relative;
}

.footer-links ul li a:before {
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    background-image: url(https://cdn-icons-png.freepik.com/512/748/748073.png);
    background-size: contain;
    left: 0;
    background-repeat: no-repeat;
    top: 5px;
    filter: invert(1);
}

.footer-main h4 {
    color: white;
    font-size: 1.7rem;
    margin: 0 0 20px;
}

.copyrights .container {
    /* border-top: 1px solid #ffffff6b; */
    /* padding-top: 31px; */
    /* margin-top: 40px; */
    padding: 20px 0;
    text-align: center;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-content: center;
    /* background: white; */
    border-radius: 100%;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    border: 1px solid #000;
    margin: 0 2px;
}

.footer-top img {
    width: 250px;
}

.footer-top .container {
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-top .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 17px;
    margin: 0 5px;
}

.footer-contact a {
    display: flex;
    margin: 0 0 10px;
    align-items: center;
    gap: 10px;
}

.footer a:hover {
    color: #ffffff;
}

/* ================================== */

.inner-banner {
    padding: 15rem 0 3rem;
    background-attachment: fixed !important;
    background-position: top !IMPORTANT;
    position: relative;
    z-index: 9;
}

.inner-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #1f84c621);
    z-index: -1;
    top: 0;
    left: 0;
}

.inner-main {
    width: 100%;
}

.inner-main .inner-title {
    font-size: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.about-main {
    display: flex;
    align-items: center;
}

.ab-1,
.ab-2 {
    width: 48%;
    margin: auto;
    height: 440px;
}

.ab-2 {
    margin-top: 7rem;
}

.ap-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 100%;
    padding: 10px;
    margin: 0 0 14px;
    display: grid;
    place-content: center;
}

.ap-icon img {
    filter: brightness(100);
    padding: 3px;
}

.app-box {
    border-bottom: 1px solid #cdcdcd;
    padding: 0 0 10px;
    margin: 0 0 20px;
}

.approach-center {
    position: relative;
}

.approach-result {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    border-radius: 18px;
    padding: 20px;
    z-index: 1;
    transition: .4s ease;
}

.result-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-icon h5 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
}

.approach-result:hover {
    background: var(--primary);
    transform: scale(1.05);
}


.our-fact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fact-box-1,
.fact-box-3 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}

.fact-box-1 {
    width: calc(25% - 20px);
}

.fact-item {
    position: relative;
    background-color: var(--primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 20px;
    padding: 40px;
    overflow: hidden;
}

.fact-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    border-radius: 999px 999px 0 0;
    transition: all 0.4s ease-in-out;
}

.fact-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.fact-item.fact-dark-box {
    background-color: #000000;
    padding: 30px 25px;
}

.fact-item.fact-dark-box::before {
    background-color: #1b9493;
}

.fact-item .icon-box,
.fact-item-content {
    position: relative;
    z-index: 1;
}

.fact-item .icon-box img {
    width: 100%;
    max-width: 50px;
}

.fact-item.fact-dark-box .icon-box img {
    max-width: 40px;
}

.fact-item-content h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 15px;
}

.fact-item.fact-dark-box .fact-item-content h2 {
    margin-bottom: 5px;
}

.fact-item-content p {
    color: white;
    margin-bottom: 0;
}

.fact-image figure {
    display: block;
    border-radius: 20px;
}

.fact-image figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.fact-box-1 .fact-image figure img {
    aspect-ratio: 1 / 0.74;
}

.fact-box-2 {
    width: calc(38% - 20px);
}

.fact-box-2 .fact-image,
.fact-box-2 .fact-image figure,
.fact-box-2 .fact-image figure img {
    height: 100%;
}

.fact-box-2 .fact-image figure img {
    aspect-ratio: 1 /1.19;
}

.fact-box-3 {
    width: calc(37% - 20px);
    flex-direction: initial;
}

.fact-image-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.fact-image-content .fact-item,
.fact-image-content .fact-image {
    width: calc(50% - 15px);
}

.fact-box-3 .fact-image figure img {
    aspect-ratio: 1 / 0.667;
}

.fact-box-3 .fact-image-content .fact-image figure,
.fact-box-3 .fact-image-content .fact-image img {
    height: 100%;
}

.fact-box-3 .fact-image-content .fact-image img {
    aspect-ratio: 1 / 1.05;
}






/* ========== */

.service-pg .service-item {
    box-shadow: none;
    border: 1px solid #22908f;
    width: 100%;
    border-radius: 20px;
    height: 100%;
    min-height: auto;
}

.de-img {
    height: 500px;
}

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 15px;
}

.page-catagory-list {
    border: 1px solid #273A291A;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.page-catagory-list h3 {
    font-size: 20px;
    color: white;
    text-transform: capitalize;
    background: var(--primary);
    padding: 22px 20px;
    margin: 0;
}

.page-catagory-list ul {
    background: #F5F5F5;
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-catagory-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-catagory-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-catagory-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.page-catagory-list ul li:hover a {
    color: var(--primary-color);
}

.page-catagory-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url('../imgs/arrow-primary.svg') no-repeat;
    background-size: cover;
    background-position: center center;
    width: 14px;
    height: 14px;
    transition: all 0.4s ease-in-out;
}

.page-catagory-list ul li a:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
    border: 1px solid #273A291A;
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-cta-image figure {
    display: block;
}

.sidebar-cta-image img {
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img {
    transform: scale(1.1);
}

.sidebar-cta-content {
    display: flex;
    background: #f5f5f5;
    padding: 40px 30px;
}

.sidebar-cta-content .icon-box {
    margin-right: 20px;
}

.sidebar-cta-content .icon-box img {
    width: 100%;
    max-width: 30px;
}

.cta-item-content {
    width: calc(100% - 50px);
}

.cta-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-item-content p {
    margin-bottom: 0;
}

.sidebar-cta-contact a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 18px 30px;
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact a:hover {
    background: #000;
}

figure {
    margin: 0;
}


.contact-box {
    border: 2px solid #153C331A;
    border-radius: 20px;
    padding: 30px;
}

.contact-box i {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    background: var(--primary);
    color: white;
    font-size: 22px;
    border-radius: 10px;
    margin: 0 0 20px;
}

.contact-box h4 {
    font-size: 20px;
}

.contact-box a {
    margin: 0 0 5px;
    display: inline-block;
}

.contact-form {
    padding: 35px;
    background: #f5f5f5;
    border-radius: 15px;
}

.cont-img {
    width: 100%;
    height: 450px;
}

.referaal-cont span {
    color: var(--primary);
    font-weight: 500;
}


.referral-form {
    padding: 30px;
    background: var(--primary);
    border-radius: 20px;
}

.blog-de-img {
    width: 100%;
    height: 600px;
}

.blog-de-img {
    width: 100%;
    height: 600px;
    margin: 0 0 20px;
    border-radius: 10px;
}

.blog-de-content {
    width: 85%;
    margin: auto;
}

.blog-de-content li {
    margin-bottom: 7px;
    font-weight: 500;
    /* padding-left: 15px; */
    list-style: inside;
}

blockquote {
    padding: 25px;
    background: var(--primary);
    color: white;
    font-style: italic;
    position: relative;
}

ul.blog-list {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 15px;
}

ul.blog-list li span {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid;
    margin-left: 5px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share p {
    margin: 0;
    color: var(--primary);
    font-size: 19px;
    font-weight: 500;
}

.blog-share ul li {
    padding: 5px 15px;
    border: 1px solid #000;
    width: max-content;
    transition: 0.4s ease;
    list-style: none;
}

.blog-share ul li:hover {
    background: var(--primary);
    color: #fff;
}

.blog-share ul li:hover a {
    color: #fff;
}

.related-blog-slider .blog-box {
    width: 95%;
    margin: auto;
}

span.prev-btn,
span.next-btn {
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    /* border: 1px solid var(--primary); */
    border-radius: 100%;
    position: absolute;
    z-index: 99;
    cursor: pointer;
    transition: 0.4s ease;
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
}

span.next-btn {
    bottom: -10%;
    right: 47%;
}

span.prev-btn {
    bottom: -10%;
    left: 44%;
}

span.prev-btn:hover,
span.next-btn:hover {
    background: var(--primary);
    color: #fff;
}

.billing-service-pg .billing-service {
    width: 100%;
    box-shadow: 0px 0px 10px 0px #32323240;
}



.hero {
    text-align: center;
}

.billing-features {
    background-color: var(--primary);
}

.feat-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
}

.feature-icon img {
    font-size: 50px;
    height: 50px;
    object-fit: contain;
}

.form-control:focus {
    box-shadow: none;
    background-color: #126464;
    color: white;
}

section {
    scroll-margin-top: 100px;
}

label {
    font-family: "poppins" , sans-serif;
}

#workflow .bg-success {
    background-color: var(--primary) !important;
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer-top .social-icons a:hover {
    color: white;
    border-color: white;
}

form p {
    margin: 0;
}

.blog-box.blog-2 {
    width: 100%;
}

.form-box input[type="submit"]:hover {
    background: #126464;
    transform: scale(1.1);
}

.form-box input[type="submit"] {
    transition: .4s ease;
}


div#billingFeaturesAccordion {
    width: 80%;
    margin: auto;
}

.accordion-header {
}

.accordion-button {
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    font-family: 'Poppins';
    color: #000;
}

.accordion-item {
    margin: 0 0 15px;
    border: transparent;
}

.accordion-button:focus {
    background: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: #1b9493;
    color: white;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins';
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}







/*RESPONSIVE QUERY______*/


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

}

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

}

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

}

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

}

@media only screen and (max-width: 991px) {
    
    a.navbar-brand img {
    width: 170px;
}
	
/* -----------------09/09/2025------------------	 */
	
	.mission-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
	justify-content: center;
	align-items: center;
    
}
	
	.mission-text {
    width: 100%;
    text-align: center;
}
	
/* -----------------09/09/2025------------------	 */

.navbar-toggler {
    order: 3;
    border: 1px solid #000000;
}

.navbar-collapse {
    position: absolute;
    width: 100%;
    left: 0;
    background: white;
    top: 60px;
}

nav.navbar {
    background: white;
    border-radius: 0;
}

nav.navbar .container {
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 8px 15px;
    border-bottom: 1px solid #cdcdcd;
}

ul#menu-primary-menu {
    margin: 0 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.slide-content {
    width: 100%;
}

.title {
    font-size: 2rem;
}

h3.web-title {
    font-size: 1.8rem;
}

.billing-service {
    height: auto;
    margin: 0 0  25px;
}

.about-right {
    margin: 0 0 25px;
}

.cta-text {
    width: 90%;
}

.form-img {
    display: none;
}

.home-contact-info {
    display: none;
}

.home-info {
}

.home-info h4 {
    display: none;
}

.home-form-box {
    padding: 40px 0;
}

.home-form-sec {
    /* background: var(--primary); */
    padding-top: 0;
}


.social-icons.text-end {
    text-align: left !IMPORTANT;
    margin: 20px 0 0;
}


.test-left-img {
    display: none;
}

.testimonial-slider span.prev-btn {
    left: 65%;
}

.testimonial-slider span.next-btn {
    right: 18%;
}

span.prev-btn, span.next-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.footer-top .container {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-top .social-icons a {
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    margin: 0 2px;
}

.footer-main h4 {
    font-size: 1.5rem;
    margin: 10px 0 20px;
}

.new-form form input[type="email"] {
    background: white;
    color: #000;
}

.new-form form input[type="email"]::placeholder {
    color: #000;
}

.copyrights .container {
    padding: 10px 0;
}

.copyrights .container p {
    font-size: 13px;
    color: #000;
}

.footer {
    padding: 40px 0;
}

.mission-text h3 {
    font-size: 1.3rem;
}

.app-img {
    height: 600px;
    margin: 0 0 20px;
}

.inner-main .inner-title {
    font-size: 2.5rem; 
}


.de-img {
    height: auto;
}

.page-catagory-list ul {
    padding: 20px;
}

.page-catagory-list ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    line-height: normal;
}

.page-catagory-list ul li a::before {
    width: 10px;
    height: 10px;
}

.sidebar-cta-content {
    padding: 25px;
}

.page-catagory-list h3 {
    padding: 10px 14px;
    font-size: 17px;
}

.page-catagory-list {
    margin: 20px 0;
}

.billing-service-pg .billing-service {
    margin: 0;
}

.contact-box {
    padding: 20px;
    margin: 0 0 25px;
}

.blog-de-content {
    width: 100%;
}

.blog-de-img {
    height: auto;
}











}


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

}

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

}


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

}


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

}

@media only screen and (max-width: 767px) {
    
    .banner-slider .slide {
    height: 600px;
}

.w-75 {
    width: 100% !important;
}

.mt-5 {
    margin-top: 1.5rem !important;
}

html {
    font-size: 14px;
}

.mission-box {
    padding: 25px;
}

.mission-icon {
    width: 70px;
    height: 70px;
    padding: 12px;
}

.cta-sec {
    padding: 60px 0;
}

.testimonial-slider span.next-btn {
    right: 10%;
}

.home-form form .col-md-6 {
    width: 50%;
}

span.wpcf7-spinner {
}

.sec-padding {
    padding: 3rem  0;
}
 
.about-main {
    flex-wrap: wrap;
}

.ab-1, .ab-2 {
    width: 100%;
    height: auto;
}

.about-left.ps-5 {
    padding-left:  0 !IMPORTANT;
}

.ab-2 {
    display: none;
}

.cont-img {
    height: 300px;
    margin: 0 0 25px;
}

.col-lg-3:last-child .contact-box {
    margin: 0;
}

.blog-img {
    height: auto;
}






}

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

}

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

@media only screen and (max-width: 575px) {
    
.nav-btn a {
    padding: 8px 15px;
    font-size: 13px;
}

.mission-icon img {
    padding: 4px;
}

.testimonial-main {
    padding: 25px;
    box-shadow: 0px 8px 14.72px 1.28px rgb(0 0 0 / 41%);
}

.test-info {
    margin: 20px 0 0;
}

.test-info img {
    width: 60px;
    height: 60px;
}

.footer-top img {
    width: 185px;
}    

.slide-content {
    padding: 20px;
    margin: 12rem 0 0;
}

.banner-slider .slide {
    height: 500px;
    border-radius: 0;
}

.mission-text {
    width: 78%;
}

.feature-img {
    width: 50px;
}

.why-1 {
    width: 85%;
    height: auto;
    margin-right: auto;
    margin-left: inherit;
    margin-bottom: 1.5rem;
}

.why-2 {
    bottom: -30px;
    left: auto;
    right: 0;
    width: 150px;
    height: 150px;
}

.banner-slider .slide:before {
    width: 100%;
}

    
    

}

@media only screen and (max-width: 480px) {
    
    .slide-content p {
    display: none;
}

    .banner-slider .slide {
        height: 440px;
    }

.subtitle {
    display: block !important;
}

.title span {
    color: white;
}

a.navbar-brand img {
    width: 140px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    font-size: 13px;
}

.navbar.sticky a.navbar-brand img {
    width: 130px;
}

.billing-service {
    padding: 25px;
}

.ser-offer-text.text-center.mt-4 {
    margin: 0 !important;
}

.navbar-collapse {
    top: 49px;
}

.inner-banner {
    padding: 12rem 0 1rem;
}

.inner-main .inner-title {
    font-size: 2rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    filter: brightness(100);
}

.feature-img {
    width: 40px;
}

.app-img {
    height: 400px;
}

.approach-result {
    left: 10px;
    bottom: 10px;
    right: 10px;
}

.app-box.border-0 {
    margin: 0;
    padding: 0;
}

.why-left.pe-5 {
    padding-right: 0 !important;
}

.work-steps-item {
    padding: 25px;
}

h3.web-title {
    font-size: 1.5rem;
}
 
 

    
    





}

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

}

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

}

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

}


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

}















