
/* ============================= Fully Fit Image Css Start ============================= */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Fully Fit Image Css End ============================= */
/* ============================= Display Flex Css Start ============================= */
.flex-wrap,
.faq-item__top,
.more-feature-item,
.marketing-tool-info-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align,
.disclaimer-content__subtitle,
.info-item.three .info-item__top-left,
.banner-content__tools,
.banner-content__buttons,
.language-dropdown__list-item,
.language-dropdown__selected {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center,
.social-list,
.footer-content__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-between,
.info-item.three .info-item__top,
.info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ============================= Positioning Css Class Start ===================== */
.pa-extend {
    position: absolute;
    content: "";
}

.top-center-extend {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.left-center-extend {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.top-left-center-extend {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ============================= Positioning Css Class End ===================== */

/* ================================= Custom Classes Css Start =========================== */
@media (min-width: 1400px) {

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

@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

.section-bg {
    background-color: hsl(var(--section-bg));
}

.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show {
    visibility: visible;
    opacity: 1;
}

.gradient-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base-d-200))), to(hsl(var(--base))));
    background-image: linear-gradient(180deg, hsl(var(--base-d-200)) 0%, hsl(var(--base)) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text::-moz-selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.gradient-text::selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

/* ================================= Custom Classes Css End =========================== */

/* ============= Footer Start ======================= */
.footer-area {
    padding: 80px 0;
}

@media screen and (max-width: 1399px) {
    .footer-area {
        padding: 70px 0;
    }
}

@media screen and (max-width: 1199px) {
    .footer-area {
        padding: 60px 0;
    }
}

@media screen and (max-width: 991px) {
    .footer-area {
        padding: 45px 0;
    }
}

@media screen and (max-width: 767px) {
    .footer-area {
        padding: 30px 0;
    }
}

@media screen and (max-width: 374px) {
    .footer-area {
        padding: 25px 0;
    }
}

.footer-area.bg-img {
    background-position: center center !important;
}

.footer-content {
    text-align: center;
}

.footer-content__logo {
    margin-bottom: 24px;
}

@media screen and (max-width: 1399px) {
    .footer-content__logo {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-content__logo {
        margin-bottom: 15px;
    }
}

.footer-content__logo img {
    max-height: 55px;
}

@media screen and (max-width: 991px) {
    .footer-content__logo img {
        max-height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .footer-content__logo img {
        max-height: 44px;
    }
}

.footer-content__desc {
    max-width: 575px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 1399px) {
    .footer-content__desc {
        margin: 0 auto 35px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-content__desc {
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 991px) {
    .footer-content__desc {
        max-width: 535px;
        margin: 0 auto 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-content__desc {
        max-width: 500px;
        margin: 0 auto 15px;
    }
}

.footer-content__desc.two {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

.footer-content__buttons {
    gap: 10px;
    margin-bottom: 65px;
}

@media screen and (max-width: 1399px) {
    .footer-content__buttons {
        margin-bottom: 55px;
    }
}

@media screen and (max-width: 1199px) {
    .footer-content__buttons {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .footer-content__buttons {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .footer-content__buttons {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-content__buttons {
        margin-bottom: 15px;
    }
}

/* ============= Footer End ======================= */
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: #0D120F;
    width: 100%;
    height: 100%;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted hsl(var(--base));
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader::after {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted hsl(var(--base)/0.5);
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -webkit-animation: rotationBack 0.5s linear infinite;
    animation: rotationBack 0.5s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/* ===================== Scroll To Top Start ================================= */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    color: hsl(var(--white));
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: hsl(var(--base));
    font-size: 1.375rem;
}

.scroll-top:hover {
    color: hsl(var(--white));
    background-color: hsl(var(--base-d-100));
}

.scroll-top.show {
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ===================== Scroll To Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
    gap: 24px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1399px) {
    .social-list {
        margin-bottom: 70px;
        gap: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .social-list {
        gap: 18px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .social-list {
        gap: 16px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .social-list {
        gap: 14px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 575px) {
    .social-list {
        gap: 12px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 374px) {
    .social-list {
        gap: 10px;
        margin-bottom: 15px;
    }
}

.social-list__item {
    width: 32px;
    height: 33px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1199px) {
    .social-list__item {
        width: 30px;
        height: 31px;
    }
}

@media screen and (max-width: 991px) {
    .social-list__item {
        width: 27px;
        height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .social-list__item {
        width: 25px;
        height: 26px;
    }
}

@media screen and (max-width: 424px) {
    .social-list__item {
        width: 23px;
        height: 24px;
    }
}

.social-list__item:hover,
.social-list__item:focus {
    color: hsl(var(--base-d-200));
}

/* ================================= Social Icon Css End ===========================  */
/* ================= Slick Slider Css Start ================ */
.slick-initialized.slick-slider {
    margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    display: inline-block !important;
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide>div {
    display: inline-block !important;
    height: 100%;
}

/* ================= Slick Slider Css End ================ */

/* Banner Content */
.banner-content {
    position: relative;
    padding-top: 24px;
}

@media screen and (max-width: 1399px) {
    .banner-content {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content {
        padding-top: 15px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content {
        padding-top: 0;
    }
}

.banner-content__title {
    color: hsl(var(--body-color));
    font-weight: 400;
}

.banner-content__title span {
    font-weight: 900;
}

.banner-content__title .has-border-shape {
    position: relative;
}

.banner-content__title .has-border-shape::after {
    position: absolute;
    content: "";
    background: url(../../assets/images/thumbs/banner-title-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 8px;
    width: 100%;
    left: 0;
    bottom: -3px;
}

@media screen and (max-width: 1199px) {
    .banner-content__title .has-border-shape::after {
        height: 7px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__title .has-border-shape::after {
        bottom: -2px;
        height: 6px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__title .has-border-shape::after {
        height: 5px;
        bottom: -1px;
    }
}

.banner-content__desc {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 62px;
}

@media screen and (max-width: 1399px) {
    .banner-content__desc {
        margin-bottom: 55px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__desc {
        font-size: 1.1875rem;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__desc {
        font-size: 1.125rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__desc {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .banner-content__desc {
        font-size: 0.9375rem;
    }
}

.banner-content__buttons {
    gap: 15px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1399px) {
    .banner-content__buttons {
        margin-bottom: 65px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content__buttons {
        margin-bottom: 40px;
        gap: 12px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__buttons {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__buttons {
        gap: 10px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__buttons {
        gap: 8px;
        margin-bottom: 20px;
    }
}

.banner-content__tools {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 14px;
}

@media screen and (max-width: 1199px) {
    .banner-content__tools {
        gap: 12px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__tools {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__tools {
        gap: 8px;
    }
}

.banner-content__tools-item {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    color: hsl(var(--body-color));
    font-size: 1rem;
    line-height: 1.375;
    letter-spacing: -0.5px;
    padding: 10px 21px;
    border-radius: 8px;
    background: hsl(var(--white)/0.1);
    -webkit-box-shadow: 0px 2px 0px 0px #153C24;
    box-shadow: 0px 2px 0px 0px #153C24;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

@media screen and (max-width: 1199px) {
    .banner-content__tools-item {
        padding: 9px 16px;
        border-radius: 7px;
    }
}

@media screen and (max-width: 991px) {
    .banner-content__tools-item {
        font-size: 0.9375rem;
        padding: 8.7px 14px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__tools-item {
        padding: 8.7px 13px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__tools-item {
        gap: 5px;
        font-size: 0.875rem;
        padding: 8.39px 12px;
        border-radius: 5px;
    }
}

.banner-content__tools-item::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 8px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--border-color-two))), to(rgba(195, 229, 208, 0.04)));
    background: linear-gradient(180deg, hsl(var(--border-color-two)), rgba(195, 229, 208, 0.04));
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

@media screen and (max-width: 1199px) {
    .banner-content__tools-item::after {
        border-radius: 7px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content__tools-item::after {
        border-radius: 6px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__tools-item::after {
        border-radius: 5px;
    }
}

.banner-content__tools-item:hover {
    -webkit-box-shadow: 0px -2px 0px 0px #153C24;
    box-shadow: 0px -2px 0px 0px #153C24;
}

.banner-content__tools-item:hover::after {
    background: -webkit-gradient(linear, left bottom, left top, from(hsl(var(--border-color-two))), to(rgba(195, 229, 208, 0.04)));
    background: linear-gradient(0deg, hsl(var(--border-color-two)), rgba(195, 229, 208, 0.04));
}

.banner-content__tools-item .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: hsl(var(--base));
}

@media screen and (max-width: 991px) {
    .banner-content__tools-item .icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 575px) {
    .banner-content__tools-item .icon {
        width: 17px;
        height: 17px;
    }
}

/* =========================== Banner Css End ========================= */
/* ================================= Info Item Css Start ============================= */
.info-item {
    position: relative;
    background: #0D120F;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    padding-left: 40px;
}

@media screen and (max-width: 1399px) {
    .info-item {
        padding: 20px;
        padding-left: 32px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item {
        padding: 16px;
        padding-left: 24px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 991px) {
    .info-item {
        padding: 14px;
        padding-left: 20px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 767px) {
    .info-item {
        padding: 25px 20px 20px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 575px) {
    .info-item {
        padding: 20px 15px 15px;
    }
}

.info-item__shape {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.06;
}

.info-item__shape img {
    width: 100%;
    height: 100%;
}

.info-item__content {
    position: relative;
    z-index: 2;
    width: calc(100% - 498px);
    padding-right: 150px;
}

@media screen and (max-width: 1399px) {
    .info-item__content {
        width: calc(100% - 470px);
        padding-right: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__content {
        width: calc(100% - 390px);
        padding-right: 30px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__content {
        width: calc(100% - 285px);
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__content {
        width: 100%;
        padding-right: 0;
    }
}

.info-item__thumb {
    position: relative;
    z-index: 2;
    width: 498px;
}

@media screen and (max-width: 1399px) {
    .info-item__thumb {
        width: 470px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__thumb {
        width: 390px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__thumb {
        width: 285px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__thumb {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

.info-item__thumb img {
    width: 100%;
}

.info-item__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 42px;
    height: 42px;
    color: hsl(var(--base));
    margin-bottom: 25px;
}

@media screen and (max-width: 1399px) {
    .info-item__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__icon {
        width: 35px;
        height: 35px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__icon {
        width: 33px;
        height: 33px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 575px) {
    .info-item__icon {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }
}

.info-item__icon.two {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #2C342F;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 8px 0px hsl(var(--base));
    box-shadow: 0px 0px 8px 0px hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .info-item__icon.two {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__icon.two {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__icon.two {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__icon.two {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 575px) {
    .info-item__icon.two {
        width: 40px;
        height: 40px;
        border-radius: 7px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 424px) {
    .info-item__icon.two {
        width: 37px;
        height: 37px;
        border-radius: 6px;
    }
}

.info-item__icon.two .info-item__icon-inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 32px;
    height: 32px;
    color: inherit;
}

@media screen and (max-width: 1399px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 575px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 424px) {
    .info-item__icon.two .info-item__icon-inner {
        width: 20px;
        height: 20px;
    }
}

.info-item__title {
    color: hsl(var(--base));
}

@media screen and (max-width: 767px) {
    .info-item__title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 575px) {
    .info-item__title {
        margin-bottom: 5px;
    }
}

.info-item__desc {
    margin-bottom: 47px;
}

@media screen and (max-width: 1399px) {
    .info-item__desc {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item__desc {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 991px) {
    .info-item__desc {
        margin-bottom: 28px;
    }
}

@media screen and (max-width: 767px) {
    .info-item__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .info-item__desc {
        margin-bottom: 15px;
    }
}

.info-item.two {
    padding-left: 24px;
}

@media screen and (max-width: 1399px) {
    .info-item.two {
        padding-left: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item.two {
        padding-left: 16px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.two {
        padding-left: 14px;
    }
}

@media screen and (max-width: 767px) {
    .info-item.two {
        padding: 25px 20px 20px;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

@media screen and (max-width: 575px) {
    .info-item.two {
        padding: 20px 15px 15px;
    }
}

.info-item.two .info-item__content {
    padding-right: 0;
    padding-left: 150px;
}

@media screen and (max-width: 1399px) {
    .info-item.two .info-item__content {
        padding-left: 75px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item.two .info-item__content {
        padding-left: 40px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.two .info-item__content {
        padding-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    .info-item.two .info-item__content {
        padding-left: 0;
    }
}

.info-item.three {
    display: block;
    padding: 28px 40px 40px;
}

@media screen and (max-width: 1399px) {
    .info-item.three {
        padding: 25px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item.three {
        padding: 18px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.three {
        padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    .info-item.three {
        padding: 20px;
    }
}

@media screen and (max-width: 575px) {
    .info-item.three {
        padding: 15px;
    }
}

.info-item.three .info-item__top {
    position: relative;
    z-index: 2;
    gap: 10px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .info-item.three .info-item__top {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item.three .info-item__top {
        gap: 5px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.three .info-item__top {
        display: block;
        margin-bottom: 12px;
    }
}

.info-item.three .info-item__icon {
    margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .info-item.three .info-item__icon {
        width: 38px;
        height: 38px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-item.three .info-item__icon {
        width: 32px;
        height: 32px;
    }
}

.info-item.three .info-item__title {
    width: calc(100% - 42px);
    padding-left: 10px;
    margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .info-item.three .info-item__title {
        width: calc(100% - 38px);

    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-item.three .info-item__title {
        width: calc(100% - 32px);
    }
}

@media screen and (max-width: 991px) {
    .info-item.three .info-item__title {
        padding-left: 10px;
    }
}

.info-item.three .info-item__desc {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}

@media screen and (max-width: 1399px) {
    .info-item.three .info-item__desc {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .info-item.three .info-item__desc {
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.three .info-item__desc {
        margin-bottom: 15px;
    }
}

.info-item.three .info-item__thumb {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .info-item.three .info-item__thumb {
        margin-top: 0;
    }
}

.info-item.three .info-item__thumb img {
    width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .info-item.three .btn {
        gap: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 991px) {
    .info-item.three .btn {
        margin-bottom: 15px;
    }
}

/* ================================= Info Item Css End ================================= */
/* =============================== Brand Css Start ======================= */
.brand-section {
    padding: 81px 0 73px;
}

@media screen and (max-width: 1399px) {
    .brand-section {
        padding: 75px 0 65px;
    }
}

@media screen and (max-width: 1199px) {
    .brand-section {
        padding: 65px 0 55px;
    }
}

@media screen and (max-width: 991px) {
    .brand-section {
        padding: 60px 0 50px;
    }
}

@media screen and (max-width: 767px) {
    .brand-section {
        padding: 50px 0 45px;
    }
}

@media screen and (max-width: 575px) {
    .brand-section {
        padding: 45px 0 40px;
    }
}

.brand-slider {
    position: relative;
}

.brand-slider-two {
    direction: rtl;
}

.brand-slider-two .slick-track {
    display: flex;
    align-items: center;
}

.common-slider::before,
.common-slider::after {
    position: absolute;
    content: "";
    background: -webkit-gradient(linear, left top, right top, from(hsl(var(--section-bg))), to(rgba(10, 51, 26, 0)));
    background: linear-gradient(90deg, hsl(var(--section-bg)) 0%, rgba(10, 51, 26, 0) 100%);
    width: 88px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

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

    .common-slider::before,
    .common-slider::after {
        width: 95px;
    }
}

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

    .common-slider::before,
    .common-slider::after {
        width: 85px;
    }
}

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

    .common-slider::before,
    .common-slider::after {
        width: 80px;
    }
}

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

    .common-slider::before,
    .common-slider::after {
        width: 65px;
    }
}

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

    .common-slider::before,
    .common-slider::after {
        width: 60px;
    }
}

.common-slider::after {
    background: -webkit-gradient(linear, right top, left top, from(hsl(var(--section-bg))), to(rgba(10, 51, 26, 0)));
    background: linear-gradient(-90deg, hsl(var(--section-bg)) 0%, rgba(10, 51, 26, 0) 100%);
    left: unset;
    right: 0;
}

.brand-slider__item {
    width: 197px !important;
    height: 108px;
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 1399px) {
    .brand-slider__item {
        width: 183px !important;
        height: 100px;
        border-radius: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .brand-slider__item {
        width: 165px !important;
        height: 90px;
        border-radius: 16px;
    }
}

@media screen and (max-width: 991px) {
    .brand-slider__item {
        width: 145px !important;
        height: 80px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 767px) {
    .brand-slider__item {
        width: 135px !important;
        height: 74px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 575px) {
    .brand-slider__item {
        width: 120px !important;
        height: 66px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 424px) {
    .brand-slider__item {
        width: 105px !important;
        height: 58px;
        border-radius: 8px;
    }
}

.brand-slider__item img {
    width: 100%;
    height: 100%;
}

/* =============================== Brand Css End ======================= */
/* =============================== Marketing Tool Css Start ======================= */
.marketing-tool-info-item-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.marketing-tool-info-item-wrapper .info-item {
    width: 100%;
    position: sticky;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.marketing-tool-info-item-wrapper .info-item:not(:last-child) {
    margin-bottom: 24px;
}

.marketing-tool-info-item-wrapper .info-item {
    --top-c: 100px;
    --incr-v: 10px;
}

@media screen and (max-width: 767px) {
    .marketing-tool-info-item-wrapper .info-item {
        --top-c: 80px;
    }
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+1) {
    top: calc(var(--top-c) + var(--incr-v) * 0);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+2) {
    top: calc(var(--top-c) + var(--incr-v) * 1);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+3) {
    top: calc(var(--top-c) + var(--incr-v) * 2);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+4) {
    top: calc(var(--top-c) + var(--incr-v) * 3);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+5) {
    top: calc(var(--top-c) + var(--incr-v) * 4);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+6) {
    top: calc(var(--top-c) + var(--incr-v) * 5);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+7) {
    top: calc(var(--top-c) + var(--incr-v) * 6);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+8) {
    top: calc(var(--top-c) + var(--incr-v) * 7);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+9) {
    top: calc(var(--top-c) + var(--incr-v) * 8);
}

.marketing-tool-info-item-wrapper .info-item:nth-child(n+10) {
    top: calc(var(--top-c) + var(--incr-v) * 9);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+1) {
    -webkit-transform: scaleX(0.94);
    transform: scaleX(0.94);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+2) {
    -webkit-transform: scaleX(0.95);
    transform: scaleX(0.95);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+3) {
    -webkit-transform: scaleX(0.96);
    transform: scaleX(0.96);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+4) {
    -webkit-transform: scaleX(0.97);
    transform: scaleX(0.97);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+5) {
    -webkit-transform: scaleX(0.98);
    transform: scaleX(0.98);
}

.marketing-tool-info-item-wrapper .blur-effect:nth-child(n+6) {
    -webkit-transform: scaleX(0.99);
    transform: scaleX(0.99);
}

/* =============================== Marketing Tool Css End ======================= */
/* ====================== Inside CRM Css Start ==================== */
.inside-crm-section {
    position: relative;
}

.inside-crm-section__top {
    margin-bottom: 75px;
}

@media screen and (max-width: 1399px) {
    .inside-crm-section__top {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .inside-crm-section__top {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .inside-crm-section__top {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .inside-crm-section__top {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 575px) {
    .inside-crm-section__top {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 424px) {
    .inside-crm-section__top {
        margin-bottom: 20px;
    }
}

.inside-crm-section .section-heading__subtitle {
    position: relative;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    background: hsl(var(--white)/0.23);
    border-radius: 36px;
    padding: 9px 13px 9px 28px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1399px) {
    .inside-crm-section .section-heading__subtitle {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .inside-crm-section .section-heading__subtitle {
        font-size: 1.0625rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .inside-crm-section .section-heading__subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .inside-crm-section .section-heading__subtitle {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .inside-crm-section .section-heading__subtitle {
        font-size: 0.9375rem;
        padding: 9px 12px 9px 25px;
    }
}

@media screen and (max-width: 424px) {
    .inside-crm-section .section-heading__subtitle {
        font-size: 0.875rem;
    }
}

.inside-crm-section .section-heading__subtitle::after {
    position: absolute;
    content: "";
    background: hsl(var(--warning));
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1199px) {
    .inside-crm-section .section-heading__subtitle::after {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 991px) {
    .inside-crm-section .section-heading__subtitle::after {
        width: 9px;
        height: 9px;
        left: 10px;
    }
}

@media screen and (max-width: 575px) {
    .inside-crm-section .section-heading__subtitle::after {
        width: 8px;
        height: 8px;
    }
}

@media screen and (max-width: 424px) {
    .inside-crm-section .section-heading__subtitle::after {
        width: 7px;
        height: 7px;
    }
}

.inside-crm-section .section-heading__desc {
    font-size: 1.125rem;
    margin-bottom: 64px;
}

@media screen and (max-width: 1399px) {
    .inside-crm-section .section-heading__desc {
        margin-bottom: 55px;
    }
}

@media screen and (max-width: 1199px) {
    .inside-crm-section .section-heading__desc {
        font-size: 1.0625rem;
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 991px) {
    .inside-crm-section .section-heading__desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .inside-crm-section .section-heading__desc {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .inside-crm-section .section-heading__desc {
        margin-bottom: 15px;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .inside-crm-section .section-heading__desc {
        font-size: 0.875rem;
    }
}

.inside-crm-thumb {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

@media screen and (max-width: 1399px) {
    .inside-crm-thumb {
        display: block;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .inside-crm-thumb {
        margin-top: 25px;
    }
}

@media screen and (max-width: 575px) {
    .inside-crm-thumb {
        margin-top: 20px;
    }
}

/* ====================== Inside CRM Css End ==================== */
/* ====================== More Feature Css Start ==================== */


.more-feature-item-wrapper {
    position: relative;
}

.more-feature-item-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    background-color: hsl(var(--body-color));
}

@media screen and (max-width: 1199px) {
    .more-feature-item-wrapper::before {
        width: 5px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item-wrapper::before {
        width: 4px;
    }
}

.more-feature-item {
    cursor: pointer;
    position: relative;
    padding: 24px;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

@media screen and (max-width: 1399px) {
    .more-feature-item {
        padding: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item {
        padding: 15px 15px 15px 20px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-item {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item {
        padding: 12px 15px;
    }
}

@media screen and (max-width: 374px) {
    .more-feature-item {
        padding: 10px 12px 10px 15px;
    }
}

.more-feature-item.active {
    background: -webkit-gradient(linear, left top, right top, from(rgba(37, 211, 102, 0.16)), to(rgba(37, 211, 102, 0)));
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.16) 0%, rgba(37, 211, 102, 0) 100%);
}

.more-feature-item.active::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 6px;
    background-color: hsl(var(--base));
    top: 0;
    left: 0;
    -webkit-animation: afterAnimate 4s linear forwards;
    animation: afterAnimate 4s linear forwards;
}

@media screen and (max-width: 1199px) {
    .more-feature-item.active::after {
        width: 5px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item.active::after {
        width: 4px;
    }
}

@-webkit-keyframes afterAnimate {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

@keyframes afterAnimate {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.more-feature-item:last-of-type {
    margin-bottom: 0;
}

.more-feature-item__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2C342F;
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 8px 0px hsl(var(--base));
    box-shadow: 0px 0px 8px 0px hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .more-feature-item__icon {
        width: 37px;
        height: 37px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item__icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-item__icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item__icon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
    }
}

.more-feature-item__icon-inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .more-feature-item__icon-inner {
        width: 23px;
        height: 23px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item__icon-inner {
        width: 21px;
        height: 21px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-item__icon-inner {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item__icon-inner {
        width: 18px;
        height: 18px;
    }
}

.more-feature-item__content {
    width: calc(100% - 40px);
    padding-left: 15px;
}

@media screen and (max-width: 1399px) {
    .more-feature-item__content {
        width: calc(100% - 37px);
        padding-left: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item__content {
        width: calc(100% - 34px);
        padding-left: 10px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-item__content {
        width: calc(100% - 32px);
        padding-left: 12px;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item__content {
        width: calc(100% - 30px);
    }
}

.more-feature-item__title {
    color: hsl(var(--base));
    margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
    .more-feature-item__title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item__title {
        font-size: 1.5625rem;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-item__title {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 767px) {
    .more-feature-item__title {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item__title {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-item__desc {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 575px) {
    .more-feature-item__desc {
        font-size: 0.875rem;
    }
}

.more-feature-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding-left: 4px;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .more-feature-thumb {
        border-radius: 14px;
        padding-left: 0;
    }
}

@media screen and (max-width: 1199px) {
    .more-feature-thumb {
        border-radius: 12px;
    }
}

@media screen and (max-width: 991px) {
    .more-feature-thumb {
        height: auto;
        border-radius: 10px;
    }
}

.more-feature-thumb__img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
    visibility: hidden;
    opacity: 0;
}

.more-feature-thumb__img.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .more-feature-thumb__img.active {
        position: relative;
    }
}

/* ====================== More Feature Css End ==================== */
/* =============================== Feature Integration Css Start ======================= */
.feature-integration-section.bg-img {
    background-position: center center !important;
}

.feature-integration-section__thumb {
    position: absolute;
    left: -135px;
    bottom: 0;
    width: 380px;
}

@media screen and (max-width: 1599px) {
    .feature-integration-section__thumb {
        left: -85px;
        width: 330px;
    }
}

@media screen and (max-width: 1499px) {
    .feature-integration-section__thumb {
        left: -30px;
    }
}

@media screen and (max-width: 1399px) {
    .feature-integration-section__thumb {
        width: 300px;
    }
}

@media screen and (max-width: 1199px) {
    .feature-integration-section__thumb {
        left: -25px;
        width: 235px;
    }
}

@media screen and (max-width: 991px) {
    .feature-integration-section__thumb {
        left: -35px;
        width: 170px;
    }
}

@media screen and (max-width: 767px) {
    .feature-integration-section__thumb {
        left: -25px;
        width: 135px;
    }
}

@media screen and (max-width: 575px) {
    .feature-integration-section__thumb {
        display: none;
    }
}

.feature-integration-section__thumb img {
    width: 100%;
}

.feature-integration-section__thumb.two {
    width: 424px;
    left: unset;
    right: -65px;
}

@media screen and (max-width: 1599px) {
    .feature-integration-section__thumb.two {
        width: 370px;
        right: -50px;
    }
}

@media screen and (max-width: 1499px) {
    .feature-integration-section__thumb.two {
        width: 340px;
        right: -25px;
    }
}

@media screen and (max-width: 1399px) {
    .feature-integration-section__thumb.two {
        width: 300px;
    }
}

@media screen and (max-width: 1199px) {
    .feature-integration-section__thumb.two {
        width: 235px;
        right: -20px;
    }
}

@media screen and (max-width: 991px) {
    .feature-integration-section__thumb.two {
        width: 170px;
        right: -30px;
    }
}

@media screen and (max-width: 767px) {
    .feature-integration-section__thumb.two {
        width: 115px;
        right: -25px;
    }
}

.feature-integration-section .section-heading {
    position: relative;
    padding: 150px 0 324px;
    margin-bottom: 0;
}

@media screen and (max-width: 1599px) {
    .feature-integration-section .section-heading {
        padding: 115px 0 260px;
    }
}

@media screen and (max-width: 1499px) {
    .feature-integration-section .section-heading {
        padding: 110px 0 240px;
    }
}

@media screen and (max-width: 1399px) {
    .feature-integration-section .section-heading {
        padding: 100px 0 220px;
    }
}

@media screen and (max-width: 1199px) {
    .feature-integration-section .section-heading {
        padding: 70px 0 190px;
    }
}

@media screen and (max-width: 991px) {
    .feature-integration-section .section-heading {
        padding: 55px 0 165px;
    }
}

@media screen and (max-width: 767px) {
    .feature-integration-section .section-heading {
        padding: 45px 0 145px;
    }
}

@media screen and (max-width: 575px) {
    .feature-integration-section .section-heading {
        padding: 40px 0 130px;
    }
}

@media screen and (max-width: 424px) {
    .feature-integration-section .section-heading {
        padding: 35px 0 120px;
    }
}

@media screen and (max-width: 424px) {
    .feature-integration-section .section-heading__title br {
        display: none;
    }
}

.feature-integration-section .section-heading__desc {
    max-width: 505px;
    font-size: 1.125rem;
    margin-bottom: 38px;
}

@media screen and (max-width: 1399px) {
    .feature-integration-section .section-heading__desc {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .feature-integration-section .section-heading__desc {
        font-size: 1.0625rem;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 991px) {
    .feature-integration-section .section-heading__desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .feature-integration-section .section-heading__desc {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 575px) {
    .feature-integration-section .section-heading__desc {
        margin-bottom: 15px;
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .feature-integration-section .section-heading__desc {
        font-size: 0.875rem;
    }
}

/* =============================== Feature Integration Css End ======================= */
/* ================================ Frequently Asked Question Css Start ============================= */
.faq-item {
    position: relative;
    background: hsl(var(--body-color)/0.08);
    border: 1px solid hsl(var(--base)/0.2);
    border-radius: 16px;
    padding: 20px 24px 24px;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .faq-item {
        padding: 18px 20px 20px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .faq-item {
        padding: 16px 15px 15px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 767px) {
    .faq-item {
        padding: 14px 12px 12px;
        border-radius: 10px;
    }
}

.faq-item__top {
    margin-bottom: 18px;
}

@media screen and (max-width: 1399px) {
    .faq-item__top {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .faq-item__top {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .faq-item__top {
        margin-bottom: 8px;
    }
}

.faq-item__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: hsl(var(--base));
}

@media screen and (max-width: 1399px) {
    .faq-item__icon {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 1199px) {
    .faq-item__icon {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .faq-item__icon {
        width: 18px;
        height: 18px;
    }
}

.faq-item__title {
    width: calc(100% - 24px);
    padding-left: 10px;
    color: hsl(var(--base));
    margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
    .faq-item__title {
        width: calc(100% - 22px);
    }
}

@media screen and (max-width: 1199px) {
    .faq-item__title {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .faq-item__title {
        width: calc(100% - 18px);
        padding-left: 8px;
    }
}

@media screen and (max-width: 1199px) {
    .faq-item__desc {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 767px) {
    .faq-item__desc {
        font-size: 0.875rem;
    }
}

/* ================================ Frequently Asked Question Css End ============================= */
/* =============================== Disclaimer Css Start ======================= */
.disclaimer-section {
    padding: 100px 0;
}

@media screen and (max-width: 1399px) {
    .disclaimer-section {
        padding: 45px 0;
    }
}

@media screen and (max-width: 1199px) {
    .disclaimer-section {
        padding: 40px 0;
    }
}

@media screen and (max-width: 991px) {
    .disclaimer-section {
        padding: 35px 0;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 575px) {
    .disclaimer-section {
        padding: 25px 0;
    }
}

.disclaimer-content {
    max-width: 912px;
}

@media screen and (max-width: 1399px) {
    .disclaimer-content {
        max-width: 830px;
    }
}

@media screen and (max-width: 1199px) {
    .disclaimer-content {
        max-width: 742px;
    }
}

@media screen and (max-width: 991px) {
    .disclaimer-content {
        max-width: 560px;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-content {
        max-width: 100%;
        text-align: center;
    }
}

.disclaimer-content__subtitle {
    gap: 8px;
    color: hsl(var(--body-color));
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

@media screen and (max-width: 1399px) {
    .disclaimer-content__subtitle {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .disclaimer-content__subtitle {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 991px) {
    .disclaimer-content__subtitle {
        margin-bottom: 14px;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-content__subtitle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 424px) {
    .disclaimer-content__subtitle {
        margin-bottom: 10px;
    }
}

.disclaimer-content__subtitle-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 36px;
    height: 37px;
    color: inherit;
}

@media screen and (max-width: 1399px) {
    .disclaimer-content__subtitle-icon {
        width: 35px;
        height: 36px;
    }
}

@media screen and (max-width: 1199px) {
    .disclaimer-content__subtitle-icon {
        width: 33px;
        height: 34px;
    }
}

@media screen and (max-width: 991px) {
    .disclaimer-content__subtitle-icon {
        width: 30px;
        height: 31px;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-content__subtitle-icon {
        width: 28px;
        height: 29px;
    }
}

@media screen and (max-width: 575px) {
    .disclaimer-content__subtitle-icon {
        width: 26px;
        height: 27px;
    }
}

.disclaimer-content__title {
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.4;
    color: hsl(var(--base));
    margin-bottom: 0;
}

.disclaimer-content__title span {
    font-style: italic;
    font-weight: 900;
    text-decoration: underline;
}

.disclaimer-content__title span.light-color {
    color: hsl(var(--body-color));
}

.disclaimer-thumb {
    width: 297px;
    position: absolute;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1399px) {
    .disclaimer-thumb {
        width: 250px;
        right: 0;
    }
}

@media screen and (max-width: 1199px) {
    .disclaimer-thumb {
        width: 185px;
    }
}

@media screen and (max-width: 991px) {
    .disclaimer-thumb {
        width: 150px;
        right: -25px;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-thumb {
        position: relative;
        right: unset;
        top: unset;
        -webkit-transform: unset;
        transform: unset;
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 575px) {
    .disclaimer-thumb {
        width: 135px;
    }
}

@media screen and (max-width: 374px) {
    .disclaimer-thumb {
        width: 125px;
        margin: 15px auto 0;
    }
}

.disclaimer-thumb img {
    width: 100%;
}

/* =============================== Disclaimer Css End ======================= */
/* =============================== Call To Action Css Start ======================= */
.cta-section {
    padding: 84px 0 78px;
}

@media screen and (max-width: 1799px) {
    .cta-section {
        padding: 104px 0 98px;
    }
}

@media screen and (max-width: 1699px) {
    .cta-section {
        padding: 111px 0 107px;
    }
}

@media screen and (max-width: 1599px) {
    .cta-section {
        padding: 133px 0 129px;
    }
}

@media screen and (max-width: 1499px) {
    .cta-section {
        padding: 142px 0 138px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-section {
        padding: 115px 0;
    }
}

@media screen and (max-width: 1199px) {
    .cta-section {
        padding: 67px 0;
    }
}

@media screen and (max-width: 991px) {
    .cta-section {
        padding: 50px 0 40px;
    }
}

@media screen and (max-width: 767px) {
    .cta-section {
        padding: 45px 0 35px;
    }
}

@media screen and (max-width: 575px) {
    .cta-section {
        padding: 40px 0 30px;
    }
}

.cta-section.bg-img {
    background-position: center center !important;
}

.cta-content__title {
    color: hsl(var(--base));
    line-height: 1.20833;
}

.cta-content__desc {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 38px;
}

@media screen and (max-width: 1399px) {
    .cta-content__desc {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .cta-content__desc {
        font-size: 1.1875rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .cta-content__desc {
        font-size: 1.125rem;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .cta-content__desc {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .cta-content__desc {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 424px) {
    .cta-content__desc {
        font-size: 0.9375rem;
    }
}

.cta-content .btn {
    padding: 14px 19px;
}

@media screen and (max-width: 1199px) {
    .cta-content .btn {
        padding: 13px 17px;
    }
}

@media screen and (max-width: 991px) {
    .cta-content .btn {
        padding: 12.5px 15px;
    }
}

@media screen and (max-width: 767px) {
    .cta-content .btn {
        padding: 11.5px 14px;
    }
}

@media screen and (max-width: 575px) {
    .cta-content .btn {
        padding: 12px;
    }
}

.cta-slider-wrapper {
    padding-left: 20px;
    overflow: hidden;
}

@media screen and (max-width: 1499px) {
    .cta-slider-wrapper {
        padding-left: 10px;
    }
}

@media screen and (max-width: 1399px) {
    .cta-slider-wrapper {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .cta-slider-wrapper {
        margin-top: 20px;
    }
}

.cta-slider__item {
    width: 232px;
    height: 415px;
    border-radius: 150px;
    overflow: hidden;
}

@media screen and (max-width: 1799px) {
    .cta-slider__item {
        width: 210px;
        height: 375px;
    }
}

@media screen and (max-width: 1699px) {
    .cta-slider__item {
        width: 200px;
        height: 357px;
    }
}

@media screen and (max-width: 1599px) {
    .cta-slider__item {
        width: 175px;
        height: 313px;
    }
}

@media screen and (max-width: 1499px) {
    .cta-slider__item {
        width: 165px;
        height: 295px;
    }
}

@media screen and (max-width: 767px) {
    .cta-slider__item {
        width: 150px;
        height: 268px;
    }
}

@media screen and (max-width: 575px) {
    .cta-slider__item {
        width: 134px;
        height: 240px;
    }
}

.cta-slider__item img {
    height: 100%;
}

/* =============================== Call To Action Css End ======================= */


/* pricing table */




@media (min-width: 1400px) {
    .container:has(.pricing-plans__wrapper) {
        max-width: 1341px;
    }
}

.installation-page {
    position: relative;
}

.installation-page .installation__shape {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.installation-page .installation__shape img {
    opacity: 0.9;
    mix-blend-mode: hard-light;
}

@media screen and (max-width: 1599px) {
    .installation-page .installation__shape {
        max-width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .installation-page .installation__shape {
        display: none;
    }
}

.installation-page__content {
    padding: 130px 0px;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .installation-page__content {
        padding: 100px 0px;
    }
}

@media screen and (max-width: 767px) {
    .installation-page__content {
        padding: 80px 0px;
    }
}

@media screen and (max-width: 575px) {
    .installation-page__content {
        padding: 60px 0px;
    }
}

.installation-page__title {
    font-size: 10.75rem;
    font-weight: 800;
}

@media screen and (max-width: 1399px) {
    .installation-page__title {
        font-size: 8.125rem;
    }
}

@media screen and (max-width: 1199px) {
    .installation-page__title {
        font-size: 6.25rem;
    }
}

@media screen and (max-width: 991px) {
    .installation-page__title {
        font-size: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .installation-page__title {
        font-size: 3.75rem;
        text-align: start !important;
    }
}

@media screen and (max-width: 575px) {
    .installation-page__title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .installation-page .title-two {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: start !important;
    }
}

.installation-page .desc {
    max-width: 540px;
    text-align: start;
    font-size: 1.125rem;
}

.pricing-plans .section-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 20px;
}

@media screen and (max-width: 991px) {
    .pricing-plans .section-heading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }
}

.pricing-plans .section-heading__title {
    margin-bottom: 0px;
    width: calc(100% - 430px);
}

@media screen and (max-width: 1399px) {
    .pricing-plans .section-heading__title {
        width: calc(100% - 360px);
    }
}

@media screen and (max-width: 991px) {
    .pricing-plans .section-heading__title {
        width: 100%;
    }
}

.pricing-plans .section-heading__desc {
    max-width: 430px;
}

@media screen and (max-width: 1399px) {
    .pricing-plans .section-heading__desc {
        max-width: 360px;
    }
}

@media screen and (max-width: 991px) {
    .pricing-plans .section-heading__desc {
        max-width: 100%;
    }
}

.pricing-plans {
    z-index: 3 !important;
    position: relative !important;
}

.price-header-wrapper,
.pricing-plans__item-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 24px;
}

.price-header-wrapper {
    /* position: sticky; */
    top: 89px;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .price-header-wrapper {
        top: 60px;
    }

}

@media screen and (max-width: 767px) {
    .price-header-wrapper {
        position: static;
    }
}

@media screen and (max-width: 767px) {
    .pricing-plans__wrapper-inner {
        min-width: 767px;
    }
}

.pricing-plans__item__header {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

@media screen and (min-width: 767px) {
    .pricing-plans__item__header {
        position: sticky;
    }
}

@media screen and (max-width: 1399px) {
    .pricing-plans__wrapper {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-plans__wrapper {
        overflow-x: auto;
    }
}

.pricing-plans__wrapper .pricing-plans__item {
    background-color: #111512;
    border-radius: 0px 0px 12px 12px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pricing-plans__wrapper .pricing-plans__item__header {
    border-radius: 8px 8px 0px 0px;
    background: #111512;
    padding: 20px;
    height: calc(100% + 1px);
}



.pricing-plans__wrapper .pricing-plans__item__top {
    padding: 25px;
    border-radius: 8px;
    background-color: #202522;
}

.pricing-plans__wrapper .pricing-plans__item__top .title {
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-plans__wrapper .pricing-plans__item__top .desc {
    color: hsl(var(--text-mute));
    font-size: 0.875rem;
}

.pricing-plans__wrapper .pricing-plans__item__top .price {
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-plans__wrapper .pricing-plans__item__top .price span {
    font-size: .7rem;
    font-family: var(--body-font);
    color: hsl(var(--white)) !important;
    font-weight: 400;
    display: block;
}

.pricing-plans__wrapper .pricing-plans__item__content {
    margin-top: 35px;
}

.pricing-plans__wrapper .pricing-plans__item__body {
    padding: 30px 25px 40px 25px;
    margin-top: -3px;
    position: relative;
}

.pricing-plans__wrapper .pricing-plans__item__body .content {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pricing-plans__wrapper .pricing-plans__item__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

@media screen and (max-width: 767px) {
    .pricing-plans__wrapper .pricing-plans__item__list li {
        font-size: 0.875rem;
    }
}

.pricing-plans__wrapper .pricing-plans__item__list li:not(:last-child) {
    margin-bottom: 24px;
}

.pricing-plans__wrapper .pricing-plans__item__list li .check-circle {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pricing-plans__item__enterprice {
    background-color: hsl(var(--base)) !important;
}

.pricing-plans__item__enterprice .pricing-plans__item__list .content {
    color: hsl(var(--white));
}

.check-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: hsl(var(--gray-bg));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--body-color));
    border: 2px solid hsl(var(--border-color));
}

.check-circle i {
    font-size: 0.875rem;
}

.check--success {
    background-color: hsl(var(--success)/0.3);
    color: hsl(var(--success));
    border-color: hsl(var(--success));
}

.check--danger {
    background-color: hsl(var(--danger)/0.3);
    color: hsl(var(--danger));
    border-color: hsl(var(--danger));
}

.check--base {
    background-color: hsl(var(--base)/0.3);
    color: hsl(var(--base));
    border-color: hsl(var(--base));
}

.check--warning {
    background-color: hsl(var(--warning)/0.3);
    color: hsl(var(--warning));
    border-color: hsl(var(--warning));
}

.check--primary {
    background-color: hsl(var(--primary)/0.3);
    color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.check--white {
    background-color: hsl(var(--white)/0.2);
    color: hsl(var(--white));
    border-color: hsl(var(--white));
}




/* video section design start here */

.video-item {
    background-color: #202522;
    border-radius: 8px;
    height: 100%;
    border: 1px solid hsl(var(--base)/0.2);
    
}

.video-item__video {
    height: 230px;
    border-radius: 8px 8px 0px 0px;
    overflow: hidden;
}
@media screen and (max-width: 460px) {
    .video-item__video {
        height: 200px;
    }
}

.video-item iframe {
    width: 100%;
    height: 100%;
}

.video-item__title {
    padding: 0px 20px;
    padding-bottom: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
    color: hsl(var(--base));
}

.video-item__video .ytp-chrome-top.ytp-show-cards-title {
    display: none !important;
}