/* Global Css */
*{

}
.common-btn {
    font-size: 18px;
    color: #ffffff;
    background-color: #ffb828;
    border-color: #ffb828;
    font-weight: 600;
    padding: 10px 32px;
    margin-top: 10px;
    display: block;
    width: max-content;
    border-radius: 34px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.2px;
}

.common-btn:hover {
    transform: translate(10px);
}

.common-btn-green {
    font-size: 18px;
    color: #ffffff;
    background-color: #2cad60;
    border: 2px solid #2cad60;
    font-weight: 600;
    padding: 10px 32px;
    margin-top: 10px;
    border-radius: 34px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.2px;
}

.common-btn-green:hover {
    color: #2cad60;
    background-color: transparent;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
}

.col-12 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 22%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 30.33333333%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 47%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 72%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 63.66666667%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 30.33333333%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 22%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Hero Banner */
.case-hero-banner {
    margin-top: -90px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 154px 0px;
    position: relative;
    background-position: center 0;
    background-attachment: fixed;
}

.case-hero-banner::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgb(0 0 0 / 60%);
}

.case-hero-content {
    text-align: center;
    position: relative;
    z-index: 11;
}

.case-hero-content h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    margin-top: 30px;
}

.case-hero-content p {
    padding: 20px 0px;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    color: #fff;
}

.case-hero-content a {
    font-size: 16px;
    color: #ffffff;
    background-color: #ffb828;
    border-color: #ffb828;
    font-weight: 700;
    padding: 10px 32px;
    margin-top: 10px;
}

.case-card {
    padding: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 41px 0px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    overflow: hidden;
}

.case-card-img {
    overflow: hidden;
    max-width: 373px;
    max-height: 438px;
}

.case-card img {
    transition: all 0.3s ease-in-out;
}

.case-card:hover img {
    transform: scale(1.1);
}

.case-card h3 {
    font-size: 24px !important;
    text-transform: none;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.375em;
}


/* Case Study Section  */
.case-study-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.case-study-section .case-card {
    margin-bottom: 50px;
}

/********* Product Inner Page Css ********/
.icon-heading-section {
    padding: 70px 0px;
    text-align: center;
}

.icon-heading-section .row {
    justify-content: center;
}

.icon-with-heading {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.product-content p {
    font-size: 20px;
    line-height: 1.4;
}

.feature-section {
    background-color: #f6f4fe;
    padding: 70px 0px;
    text-align: center;
}

.feature-content {
    margin-bottom: 40px;
}

.feature-section h2 {
    font-size: 33px;
    margin-bottom: 30px;
    font-weight: 600;
}

.feature-icon {
    background-color: rgb(37, 186, 232);
    width: 56px;
    height: 56px;
    line-height: 2em;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-icon:hover {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    background-color: rgb(84, 84, 84);
}

.conclusion-section {
    padding: 100px 0px;
    text-align: center;
}

.conclusion-section h2 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 33px;
}

.conclusion-section p {
    font-size: 20px;
    line-height: 1.4;
}

.user-manual-section {
    background-color: #f6f4fe;
    padding: 100px 0px;
}

.user-manual-section h2 {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 33px;
    text-align: center;
}

.user-manual-section ul {
    justify-content: center;
}

.cta-section {
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
    color: #fff;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    right: 0px;
    bottom: 0px;
    background-color: #000;
    opacity: 0.7;
}

.cta-content {
    position: relative;
    z-index: 11;
}

.cta-content h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 40px;
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.cta-content .common-btn-green {
    padding: 14px 44px;
}

ul.user-manual-list a {
    text-transform: capitalize;
}

.pricing-banner .case-hero-content h1 {
    font-size: 60px;
    line-height: 90px;
    font-weight: 500;
}

.pricing-banner .case-hero-content p {
    font-size: 18px;
}

.cta-version-2 {
    margin-top: 90px;
    margin-bottom: 90px;
}

.inner-cat-grid {
    display: flex;
    flex-wrap: wrap;
}

.inner-cat-50 {
    width: 50%
}

.cta-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-inner-form {
    padding: 40px;
    background-color: #f6f4fe;
}

.cta-inner-form h2.gform_title {
    display: none;
}

.cta-inner-form h2 {
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 26px;
}

/* prcing-table-section */
.prcing-table-section {
    padding: 100px 0px;
}

.prcing-table-section {
    padding: 90px 0px;
    background: #f6f4fe;
}

.prcing-table-section .slider-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;

}

.prcing-table-section .slider-nav-item {
    box-shadow: 0px 16px 22px -14px #ccc !important;
    margin: 0px 10px !important;
    border: 2px solid #e5e8eb !important;
    padding: 0 40px;
    color: #000;
    cursor: pointer;
}

.prcing-table-section .slider-nav-item.flex-active {
    background-color: #0b5b42 !important;
}

.prcing-table-section .slider-nav-title {
    color: #000;
    line-height: 46px;
    font-size: 18px;
}

.prcing-table-section table tbody tr:nth-of-type(even)>* {
    background-color: #edf2f4;
}

.prcing-table-section table td {
    height: 40px;
    vertical-align: middle;
    color: #000;
}

.prcing-table-section .slider-nav-item.flex-active {
    background-color: #0b5b42 !important;
}

.prcing-table-section .slider-nav-item.flex-active .slider-nav-title {
    color: #fff !important;
}

.prcing-table-section table td {
    height: 40px;
    vertical-align: middle;
    color: #000;
}

.prcing-table-section table thead th {
    height: 50px;
    color: #fff;
    font-weight: 600;
    vertical-align: middle;
    font-size: 18px;
}

.prcing-table-section .slider-container {
    background-color: #fff;
}

/* Testimonials */
.testimonials-grid {
    padding: 20px;
    box-shadow: 0 5px 19px 0 #00000029;
    position: relative;
}

.testimonials-section {
    padding-top: 200px;
    padding-bottom: 100px;
}

.testimonials-section .col-md-4 {
    margin-bottom: 150px;
    min-height: 100%
}

.testimonials-grid {
    height: 100%;
}

.testimonials-slider-author {
    text-align: center;
}

.testimonials-slider-author img {
    width: 150px !important;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    border: 10px solid #f7f7f7;
    margin: auto;
    margin-top: -75px;
    background-color: #fff;
}

.testimonials-slider-content,
.testimonials-author-deatils {
    text-align: center;
}

.testimonials-author-deatils {
    padding-bottom: 100px;
}

.company-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
}

.company-logo span {
    display: block;
}

.company-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;

}

/* ================== Hero banner ====================== */
.hero-banner-v1 {
    position: relative;
    margin-top: -90px;
}

.hero-slider-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    padding-top: 230px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-banner::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.hero-slider-banner .row {
    justify-content: center;
}

.hero-banner-content {
    position: relative;
    z-index: 11;
    text-align: center;
}

.hero-banner-content h1 {
    font-size: 60px;
    color: #ffff;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.4px;
}

.hero-banner-content h1>b {
    color: #ffab02;
}

.hero-banner-content p {
    font-size: 22px;
    color: #fff;
    line-height: 1.4;
    margin: 20px 0px;
    letter-spacing: 0.4px;
}

.banner-content-start {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.banner-content-start img {
    width: 64px !important;
}

.banner-brand-logo {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.banner-brand-logo span {
    font-size: 64px;
    line-height: 1.4;
    color: #fff;
}

.hero-banner-content-v2 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-banner-content-v2 h2 {
    font-size: 44px;
    color: #ffff;
    margin-bottom: 50px;
}

.hero-banner-content-v2 .common-btn {
    margin: auto;
}

.home-testimonials-slider {
    padding-top: 70px;
    padding-bottom: 70px;
}

.testimonials-heading {
    margin-bottom: 10px;
    text-align: center;
}

.testimonials-heading h2 {
    font-weight: 600;
    font-size: 50px;
}

.testimonials-grid.item {
    margin-top: 90px;
    margin-bottom: 40px;
}

.home-testimonials-slider .owl-stage-outer {
    padding-left: 15px;
    padding-right: 15px;
}

.home-testimonials-slider .testimonials-slider-author img {
    width: 100px !important;
    height: 100px !important;
}
.home-testimonials-slider .company-logo img{
    height: 70px;
}

.home-testimonials-slider .testimonials-author-deatils {
    padding-bottom: 140px;
}
.testimonials-btn {
    width: 100%;
}

.testimonials-btn a {
    margin: auto;
}
.we-offer-section{
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f7f7f7;
}
.we-offer-section .row{
    align-items: center;
}
/* Responsive Css */

@media (max-width:767px) {
    .inner-cat-50 {
        width: 100%;
    }

    .pricing-banner .case-hero-content h1 {
        font-size: 35px;
        line-height: 1.3;
    }

    .pricing-banner .case-hero-content p {
        text-align: center !important;
    }

    .case-hero-content {
        padding: 0 15px;
    }

    .case-hero-banner {
        margin-top: 0;
        padding: 70px 0px;
    }

    .product-content,
    .icon-with-heading {
        padding: 0 15px;
    }

    .icon-with-heading h2 {
        font-size: 24px;
    }

    .icon-with-heading img {
        width: 70px;
    }

    .product-content p {
        font-size: 18px;
    }

    .prcing-table-section .slider-nav-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .billing-content {
        width: 100%;
        overflow: auto;
    }

    .slider-holder {
        padding: 0 15px;
    }

    .prcing-table-section .slider-nav-item {
        padding: 10px 26px;
    }

    .cta-bg-image {
        height: 350px;
    }

}