/* ================================================
                    Import Fonts
=================================================== */
@font-face {
    font-family: 'Clash Grotesk';
    src: url('../fonts/ClashGrotesk-Variable.woff2') format('woff2'),
        url('../fonts/ClashGrotesk-Variable.woff') format('woff'),
        url('../fonts/ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-Variable.woff2') format('woff2'),
        url('../fonts/Archivo-Variable.woff') format('woff'),
        url('../fonts/Archivo-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* ================================================
                    Global Style
=================================================== */

* {
    margin: 0;
    padding: 0;
}

body {
    background: #e1e7eb;
    font-family: "Archivo", sans-serif;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.theme-btn {
    all: unset;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    padding: 14px 56px 14px 24px;
    border-radius: 30px;
    /* background: linear-gradient(45deg, #df3878, #8744cf, #1267a8); */
    background: linear-gradient(32.01deg, #ff3c7d 0, #007bcb 100%);
    cursor: pointer;
    text-align: left;
    /* text-shadow: 0px 0px 24px #000000; */
    min-width: 120px;
    display: inline-block;
    position: relative;
}

.theme-btn::after {
    position: absolute;
    content: '';
    top: 7px;
    right: 7px;
    bottom: 7px;
    background: url('../img/arrow.svg') no-repeat;
    background-size: contain;
    background-position: right;
    width: 100%;
}

.theme-btn-alt {
    all: unset;
    color: #26282a;
    font-size: 18px;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    padding: 14px 56px 14px 24px;
    border-radius: 30px;
    /* background: linear-gradient(45deg, #df3878, #8744cf, #1267a8); */
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    /* text-shadow: 0px 0px 24px #000000; */
    min-width: 110px;
    display: inline-block;
    position: relative;
}

.theme-btn-alt::after {
    position: absolute;
    content: '';
    top: 7px;
    right: 7px;
    bottom: 7px;
    background: url('../img/arrow-alt.svg') no-repeat;
    background-size: contain;
    background-position: right;
    width: 100%;
}

/* =================================================
                    Header Style
=================================================== */
header {
    top: 20px;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    padding: 8px 8px 8px 12px;
    border: 1px solid #ffffff;
    /* #e6ecef */
    border-radius: 12px;
    backdrop-filter: blur(7px);
    box-shadow: 0px 4px 12px rgba(90, 90, 90, 0.1);
}

.logo {
    overflow: hidden;
}

.logo a {
    all: unset;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo a span {
    color: #26282a;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    display: inline-block;
    text-wrap: nowrap;
}

.logo img {
    max-height: 38px;
}

.header-button {
    flex: 0 0 150px;
    text-align: right;
}

.header-button a {
    all: unset;
    color: #ffffff;
    font-size: 16px;
    background: #26282a;
    padding: 10px 28px;
    border-radius: 6px;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
}

/* =================================================
                    Hero Style
=================================================== */
.hero {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(0deg, transparent, #edeeef 40%, transparent);
}

.hero .container {
    position: relative;
}

.hero h1 {
    color: #26282a;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    text-wrap: pretty;
    margin-bottom: 14px;
}

.hero h1 .highlight {
    background: linear-gradient(to right, #dd2d71, #7F5CA4, #1377C5);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
    animation: gradientAnimation 4s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.hero p {
    color: #3e3d44;
    font-size: 1.1rem;
    font-size: clamp(1.1rem, 0.3571rem + 2.8571vw, 1.25rem);
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-wrap: pretty;
    word-spacing: 2px;
    margin: 0 14px;
    margin-bottom: 24px;
}

.hero .elem-one {
    position: absolute;
    top: 190px;
    left: 30px;
    opacity: 0.5;
}

.hero .elem-two {
    position: absolute;
    top: 190px;
    right: 30px;
    opacity: 0.5;
}

.hero-img {
    min-height: 400px;
    margin-top: 44px;
    position: relative;
}

.mobile {
    height: auto;
    max-width: 65%;
}

.recorder {
    position: absolute;
    top: 21%;
    left: 0;
    height: auto;
    max-width: 40%;
    z-index: 99;
}

.player {
    position: absolute;
    bottom: 14%;
    right: 0;
    height: auto;
    max-width: 42%;
    z-index: 99;
}

/* =================================================
                    Stats Style
=================================================== */
.stats {
    padding-right: 10px;
    padding-bottom: 60px;
    padding-left: 10px;
}

.stats-card {
    background: #ffffff;
    padding: 18px 20px 20px;
    border-radius: 14px;
}

.stats-card img {
    height: auto;
    width: 1rem;
    margin-bottom: 4px;
}

.stats-card h2 {
    color: #007bcb;
    font-size: 1.6rem;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1.25rem;
}

.stats-card h2 span {
    background: linear-gradient(32.01deg, #ff3c7d 0, #007bcb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-card p {
    color: #484848;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

/* =================================================
                    Features Style
=================================================== */
.features {
    padding: 70px 14px;
    background: #fafafa;
}

.features h2 {
    color: #26282a;
    font-size: 1.4rem;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    text-align: center;
    text-wrap: balance;
    line-height: 1.25;
    letter-spacing: 0.4px;
    margin-bottom: 2.4rem;
}

.feature {
    padding: 24px 24px 26px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0px 2px 12px rgba(90, 90, 90, 0.08);
    will-change: transform;
}

.feature span {
    background: linear-gradient(32.01deg, #ff3c7d 0, #007bcb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 100% 100%;
    color: transparent;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.75px;
    padding-right: 5px;

}

.feature h3 {
    color: #26282a;
    font-size: 1.3rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 1.4rem;
    letter-spacing: 0.5px;
}

.feature img {
    width: 100%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.025));
    border: 1px solid #efefef;
    border-radius: 14px;
}

.user-friendly {
    background: linear-gradient(145deg, #fff3f8, #edf7ff);
}

/* =================================================
                Business Detail Style
=================================================== */
.benefits {
    overflow: hidden;
}

.benefits>.container {
    padding-left: 0;
    padding-right: 0;
}

.business-detail {
    padding: 50px 30px;
    background: #ffffff;
}

.business-detail h3 {
    color: #26282a;
    font-size: 1.35rem;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.4px;
    margin-bottom: 1.4rem;
}

.business-elements {
    position: relative;
}

.business-img {
    width: 100%;
    border-radius: 10px;
    border-bottom-right-radius: 30px;
}

.business-elements .icon {
    background: linear-gradient(45deg, #ffbfd8, #acdbff);
    height: 54px;
    width: 54px;
    padding: 12px;
    border: 2px solid #ffffff;
    border-radius: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.icon.meeting {
    position: absolute;
    top: 14%;
    left: 0;
    transform: translateX(-50%);
}

.icon.hourglass {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -40%);
}

.icon.follow-up {
    position: absolute;
    bottom: 13%;
    left: 0;
    transform: translateX(-50%);
}

.business-elements .icon img {
    max-width: 100%;
}

/* =================================================
                Customer Support Style
=================================================== */
.customer-support {
    padding: 50px 0;
    background: #f7eded;
}

.customer-support h3 {
    color: #26282a;
    font-size: 1.35rem;
    font-family: "Clash Grotesk", sans-serif;
    text-align: center;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.4px;
    margin-bottom: 1.4rem;
    padding: 0 20px;
}

.customer-support img {
    width: 100%;
    padding: 0px 8px;
}

/* =================================================
                Agreement Style
=================================================== */

.agreement {
    padding: 50px 30px 60px;
    background: #ffffff;
}

.agreement h3 {
    color: #26282a;
    font-size: 1.35rem;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.4px;
    margin-bottom: 1.4rem;
}

.agreement-elements {
    position: relative;
}

.agreement-img {
    width: 100%;
    border-radius: 10px;
}

.agreement-elements .icon {
    background: linear-gradient(45deg, #ffbfd8, #acdbff);
    height: 54px;
    width: 54px;
    padding: 12px;
    border: 2px solid #ffffff;
    border-radius: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.icon.contract {
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-50%);
}

.icon.shield {
    position: absolute;
    bottom: 16%;
    right: 0;
    transform: translateX(50%);
}

.agreement-elements .icon img {
    max-width: 100%;
}

/* =================================================
                Call to Action Style
=================================================== */
.call-to-action {
    padding: 60px 10px;
    /* background: #080b1b; */
}

.cta-style-one {
    padding: 40px 28px;
    background: linear-gradient(32.01deg, #ff3c7d 0, #007bcb 100%);
    border-radius: 16px;
    position: relative;
}

.cta-style-one::after {
    position: absolute;
    content: '';
    top: 10%;
    right: 5%;
    height: 65px;
    width: 65px;
    background: url(../img/stars.svg) no-repeat;
    background-position: center center;
    background-size: contain;
    filter: brightness(0) invert(1);
    opacity: 0.25;
}

.cta-style-one h3 {
    color: #ffffff;
    font-size: 15px;
    background: rgba(8, 11, 27, 0.25);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Archivo';
    font-weight: 600;
    letter-spacing: 0.25px;
    margin-bottom: 1.25rem;
}

.cta-style-one h2 {
    color: #ffffff;
    font-size: 1.65rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 3.25rem;
}

/* =================================================
                    Responsive Style
=================================================== */
.testimonials {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.testimonials h2 {
    color: #26282a;
    font-size: 1.4rem;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.4px;
    text-wrap: balance;
    margin-bottom: 0;
}

.testimonials h2>img {
    height: 1.5rem;
    margin-bottom: 0.1rem;
}

.testimonial-slider {
    margin-top: 30px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.testimonials .swiper {
    width: 100%;
    height: 100%;
}

.testimonials .slider-nav {
    position: relative;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    background: #26282a;
    opacity: 1;
}

.testimonials .swiper-button-next:after,
.testimonials .swiper-button-prev:after {
    color: #ffffff;
    font-family: swiper-icons;
    font-size: 16px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.testimonials .swiper-button-next.swiper-button-disabled,
.testimonials .swiper-button-prev.swiper-button-disabled {
    opacity: 0.75;
    cursor: auto;
    pointer-events: none;
}

.testimonials .swiper-button-next,
.testimonials .swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-rtl .swiper-button-next {
    left: auto;
    right: 48px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    left: -1px;
    position: relative;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    right: -1px;
    position: relative;
}

.testimonials .swiper-slide {
    opacity: 0.6;
    transition: all 0.3s;
    transform: rotate(4deg) translateY(8%);
}

.testimonials .swiper-slide.swiper-slide-active {
    opacity: 1;
    transition: all 0.3s;
    transform: rotate(0deg) translateY(0);
}

.swiper-slide.swiper-slide-prev {
    opacity: 0.6;
    transition: all 0.3s;
    transform: rotate(-4deg) translateY(8%);
}

.testimonial {
    padding: 24px 20px;
    background: linear-gradient(45deg, #ffe9f1, #ddf0ff);
    border-radius: 16px;
    border: 1px solid #dfdfdf;
}

.testimonial p {
    color: #4c4b52;
    font-size: 15px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author>img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    border: 3px solid #ffffff;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-author h3 {
    color: #26282a;
    font-size: 14px;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin: 5px 0 0;
}

.testimonial-author ul {
    display: flex;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.testimonial-author ul img {
    height: 12px;
}

/* =================================================
                Call to Action Two Style
=================================================== */
.call-to-action-two {
    padding: 60px 20px 24px;
    background: linear-gradient(180deg, #edf5fb, #fbfbfb, #edf5fb);
}

.call-to-action-two h3 {
    color: #26282a;
    font-size: 16px;
    background: linear-gradient(45deg, #ffbfd8, #acdbff);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Archivo';
    font-weight: 600;
    letter-spacing: 0.25px;
    margin-bottom: 1.25rem;
}

.call-to-action-two h2 {
    color: #26282a;
    font-size: 1.65rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
}

.call-to-action-two .cta-img {
    position: relative;
    bottom: -24px;
    max-width: 100%;
}

/* =================================================
                Footer Style
=================================================== */
footer {
    background: #080b1b;
    padding: 50px 0 0;
}

.widget-area {
    padding: 0px 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 38px;
}

.footer-logo span {
    font-size: 1.25rem;
    color: #e4e4e4;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 500;
}

footer p {
    color: #b9b9b9;
    font-size: 16px;
    margin: 0;
}

footer h3 {
    color: #d7d7d7;
    font-size: 1.3rem;
    font-family: 'Clash Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    list-style: none;
}

footer a,
footer a:hover {
    background: linear-gradient(45deg, #df3878, #8744cf, #1267a8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}

address {
    margin: 0;
}

address p {
    margin-bottom: 1rem;
}

.copyright {
    color: #9c9c9c;
    font-size: 15px;
    padding: 14px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #352347;
}

/* =================================================
                    Responsive Style
=================================================== */
@media screen and (min-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero .elem-one {
        top: 194px;
    }

    .hero .elem-two {
        top: 194px;
    }
}

@media screen and (min-width: 412px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero .elem-one {
        top: 200px;
        left: 38px;
    }

    .hero .elem-two {
        top: 200px;
        right: 38px;
    }

    .business-detail h3,
    .customer-support h3,
    .agreement h3 {
        font-size: 1.4rem;
        text-wrap: balance;
    }

    .features h2,
    .testimonials h2 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 450px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .elem-one {
        top: 220px;
    }

    .hero .elem-two {
        top: 220px;
    }
}

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

    .g-5,
    .gy-5 {
        --bs-gutter-y: 2.4rem;
    }

    .benefits .gy-4 {
        --bs-gutter-y: 0;
    }

    .px-custom-0 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (min-width: 575.98px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .elem-one {
        top: 250px;
        left: 44px;
    }

    .hero .elem-two {
        top: 250px;
        right: 44px;
    }

    .header-button {
        flex: 0 0 50%;
    }

    .stats-card h2 {
        font-size: 2.2rem;
    }

    .stats-card p {
        font-size: 16px;
    }

    .features h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .feature span {
        font-size: 1.1rem;
    }

    .feature h3 {
        font-size: 1.4rem;
    }

    .benefits,
    .call-to-action,
    .testimonials {
        padding: 70px 0;
    }

    .benefits>.container,
    .customer-support>.container {
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
    }

    .business-detail,
    .agreement {
        border-radius: 14px;
        padding: 40px 30px;
        background: #ffffff;
        height: 100%;
        overflow: hidden;
    }

    .customer-support {
        border-radius: 14px;
        padding: 40px 0px;
        background: #ffffff;
        height: 100%;
        overflow: hidden;
    }

    .customer-support h3 {
        padding: 0px 15px;
    }

    .business-detail h3,
    .customer-support h3,
    .agreement h3 {
        font-size: 1.6rem;
    }

    .benefits .gy-4 {
        --bs-gutter-y: 2.4rem;
    }

    .call-to-action {
        background: #080b1b;
    }

    .cta-style-one h2,
    .call-to-action-two h2 {
        font-size: 2rem;
        text-wrap: balance;
    }

    .swiper-slide.swiper-slide-prev,
    .swiper-slide.swiper-slide-next {
        transform: none;
    }

    .testimonial-slider {
        padding: 0;
    }

    .testimonials .px-2 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .call-to-action-two {
        padding: 70px 0 24px;
    }
}

@media screen and (min-width: 767.98px) {
    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero .elem-one {
        left: 15%;
    }

    .hero .elem-two {
        right: 15%;
    }

    .mobile {
        height: auto;
        max-width: 350px;
    }

    .recorder {
        top: 20%;
    }

    .player {
        bottom: 12%;
    }

    .stats-card h2 {
        font-size: 2.4rem;
    }

    .stats-card p {
        font-size: 17px;
    }

    .features,
    .benefits,
    .call-to-action,
    .testimonials {
        padding: 80px 0px;
    }

    .features h2 {
        max-width: 70%;
        margin: 0 auto 50px;
    }

    .features h2,
    .testimonials h2 {
        font-size: 2.2rem;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .business-detail h3,
    .customer-support h3,
    .agreement h3 {
        font-size: 1.35rem;
    }

    .cta-style-one {
        padding: 50px 60px;
        text-align: center;
    }

    .cta-style-one h2 {
        font-size: 2.4rem;
        text-wrap: balance;
        margin-bottom: 1.8rem;
    }

    .testimonials .swiper-slide {
        opacity: 1;
        transform: none;
    }

    .call-to-action-two {
        padding: 80px 0;
        position: relative;
    }

    .call-to-action-two .cta-img {
        position: absolute;
        right: 80px;
        bottom: 0px;
        width: 350px;
    }

    footer {
        padding: 70px 0 0;
    }

    footer h3 {
        margin-top: 1.4rem;
    }
}

@media screen and (min-width: 992px) {
    header {
        top: 34px;
    }

    .hero {
        padding-top: 200px;
    }

    .stats {
        padding-left: 15%;
        padding-right: 15%;
        padding-bottom: 120px;
    }

    .features,
    .benefits,
    .call-to-action,
    .testimonials {
        padding: 100px 0px;
    }

    .features h2 {
        font-size: 2.4rem;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .features .row {
        flex-wrap: nowrap !important;
        overflow: hidden;
    }

    .feature {
        border-radius: 30px;
        box-shadow: 0px 2px 12px rgba(90, 90, 90, 0.08);
        border: 1px solid #dadada;
        overflow: hidden;
        position: relative;
        z-index: 0;
    }

    .feature h3 {
        width: 90%;
    }

    .feature img {
        border: 1px solid #dadada;
        border-radius: 20px;
    }

    .feature::before {
        position: absolute;
        top: 0;
        right: -15px;
        content: '';
        height: 60px;
        width: 120px;
        background: linear-gradient(45deg, #ff3c7d, #0da1fd);
        filter: blur(30px);
        opacity: 0.25;
        border-radius: 50px;
        z-index: -1;
    }

    .business-detail h3,
    .customer-support h3,
    .agreement h3 {
        font-size: 1.15rem;
    }

    .cta-style-one {
        padding: 70px;
        text-align: center;
    }

    .cta-style-one h2 {
        font-size: 2.8rem;
        max-width: 70%;
        margin: 0 auto 2rem;
    }

    .testimonials h2 {
        font-size: 2.6rem;
    }

    .testimonials h2>img {
        height: 2.4rem;
        margin-bottom: 0.2rem;
    }

    .call-to-action-two {
        padding: 100px 0;
    }

    .call-to-action-two h2 {
        font-size: 2.8rem;
    }

    .call-to-action-two .cta-img {
        right: 100px;
        width: 400px;
    }

    footer h3 {
        margin-top: 1.25rem;
    }

    .copyright {
        padding: 20px 0;
    }
}

@media screen and (min-width: 1199.98px) {
    .theme-btn {
        font-size: 20px;
        padding: 14px 56px 14px 30px;
        border-radius: 30px;
        width: 154px;
    }

    .navigation {
        padding: 12px 12px 12px 18px;
    }

    .logo a {
        gap: 14px;
    }

    .logo img {
        max-height: 44px;
    }

    .logo a span {
        font-size: 1.2rem;
    }


    .header-button a {
        font-size: 18px;
    }

    .navigation {
        box-shadow: none;
    }

    .hero {
        padding-top: 210px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .elem-one {
        top: 255px;
        left: 20%;
        transform: scale(1.5);
    }

    .hero .elem-two {
        top: 255px;
        right: 20%;
        transform: scale(1.5);
    }

    .stats-card h2 {
        font-size: 2.6rem;
    }

    .stats-card p {
        font-size: 16px;
    }

    .feature {
        box-shadow: none;
    }

    .call-to-action-two .theme-btn {
        width: 100px;
    }

    footer .col-lg-3:nth-child(2) {
        padding-left: 44px;
    }
}

@media screen and (min-width: 1399.98px) {
    .hero {
        padding-top: 220px;
    }

    .recorder {
        left: 8%;
    }

    .player {
        right: 8%;
    }
}