:root {

    /* Colors */
    --pri: #21336d;
    --sec: #f5821f;

    --acc-1: #21336d;
    --acc-2: #f5821f;

    --txt-1: #1a0707;
    --txt-2: #6b7280;

    --bg-1: #edf0fa;
    --bg-2: #fff4ec;

    --bdr: #edf1f7;
}

.banner-one__inner {
    position: relative;
    display: block;
    z-index: 1;
    padding: 70px 50px 70px;
}

h1.banner-one__title {
    max-width: 700px;
    margin: 0 0 25px;
    font-weight: 800;
    line-height: 0.95;
}

.banner-one__title .title-line-1,
.banner-one__title .title-line-2 {
    display: block;
    font-size: 48px;
}

.banner-one__title .title-line-1 {
    color: #21336c;
}

.banner-one__title .title-line-2 {
    color: #f5821f;
}

p.banner-one__subtitle {
    max-width: 660px;
    margin-bottom: 15px;
    font-size: 19px;
    line-height: 1.7;
}

p.banner-one__text {
    font-size: 16px;
    line-height: 27px;
}

p.banner-one__text span {
    color: var(--acc-2);
    font-weight: bolder;
}

h3.banner-one__text {
    max-width: 700px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.3;
    color: #21336c;
}

.banner-one__img-top-logo {
    margin-bottom: 20px;
    text-align: center;
}

.banner-one__img-box {
    position: absolute;
    right: 40px;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-one__img {
    position: relative;
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

.banner-one__img img {
    width: auto;
    max-width: 100%;
    height: 450px;
    animation: topBottom 3s ease-in-out infinite;
}

.banner-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    margin: auto;
}

.banner-one__app-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-one__app-buttons img {
    width: auto;
    height: 40px;
    display: block;
}

.compliance-feature-strip {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.compliance-feature-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: facileMarquee 25s linear infinite;
}

.compliance-feature-strip:hover .compliance-feature-track {
    animation-play-state: paused;
}

.feature-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    padding: 18px 28px;
    border-right: 1px solid #edf1f7;
}

.feature-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff4ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 22px;
    color: #f5821f;
}

.feature-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.feature-content h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #21336c;
}

.feature-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    color: #6b7280;
}

.fl-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fl-stat {
    width: 185px;
    padding: 5px;
    border-radius: 14px;
    background: #edf0fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fl-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #f58220;
}

.fl-stat-label {
    margin-top: 4px;
    font-size: 12px;
    color: #1a0707;
}

@keyframes facileMarquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.fl-industries-section {
    padding: 70px 0;
    background: #fff;
}

.fl-industries-head {
    max-width: 850px;
    margin: 0 auto 35px;
}

.fl-industries-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #21336c;
    margin-bottom: 10px;
}

.fl-industries-head p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
}

.fl-industries-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fl-industry-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.fl-industry-card-wrap {
    width: 210px;
    flex-shrink: 0;
}

.fl-industry-card {
    height: 170px;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all .35s ease;
}

/* Hover */
.fl-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(33, 51, 108, .12);
}

.fl-row-blue .fl-industry-card:hover {
    background: #eef4ff;
    border-color: #c7d8ff;
}

/* Orange Cards */
.fl-row-orange .fl-industry-card:hover {
    background: #fff4e8;
    border-color: #ffd3a6;
}

.fl-industry-img {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: all .35s ease;
}

.fl-industry-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .35s ease;
}

.fl-industry-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-align: center;
    line-height: 1.45;
    font-size: 15px;
    font-weight: 700;
    color: #21336c;
    transition: all .35s ease;
}

/* Icon Animation */
.fl-industry-card:hover .fl-industry-img {
    transform: scale(1.1);
}

/* White Text on Hover */
.fl-industry-card:hover h4 {
    color: #21336c;
}

/* Make icon white if your PNGs are transparent */
.fl-industry-card:hover .fl-industry-img img {
    filter: none;
}

/* =========================================================
   INDUSTRIES — RESPONSIVE
   Laptop       : 993px - 1199px
   Tablet       : 577px - 992px
   Mobile       : 391px - 576px
   Small Mobile : 390px and below
   ========================================================= */

/* ==========================================
   Desktop (1200px - 1399px)
   Layout: 6 + 5 + 6 + 4 = 21
========================================== */
@media (min-width: 1200px) and (max-width: 1399px) {

    .fl-industries-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .fl-industry-row {
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 18px;
    }

    .fl-industry-card-wrap {
        width: calc((100% - 90px) / 6);
        max-width: 180px;
        min-width: 0;
        flex: 0 0 calc((100% - 90px) / 6);
        padding: 0;
    }

    .fl-industry-card {
        width: 100%;
        height: 170px;
        padding: 22px 14px;
    }

    .fl-industry-img {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .fl-industry-card h4 {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* ==========================================
   Laptop (993px - 1199px)
========================================== */
@media (min-width: 993px) and (max-width: 1199px) {

    .fl-industries-grid {
        display: grid;
        grid-template-columns: repeat(60, minmax(0, 1fr));
        gap: 18px 0;
    }

    .fl-industry-row {
        display: contents;
    }

    .fl-industry-card-wrap {
        width: auto;
        max-width: none;
        min-width: 0;
        padding: 0 9px;
    }

    .fl-industry-card {
        width: 100%;
        height: 170px;
        padding: 20px 14px;
    }

    /* Row 1: 4 cards */
    .fl-industry-row:nth-child(1) .fl-industry-card-wrap:nth-child(-n+4) {
        grid-column: span 15;
    }

    /* Row 2: 5 cards */
    .fl-industry-row:nth-child(1) .fl-industry-card-wrap:nth-child(n+5),
    .fl-industry-row:nth-child(2) .fl-industry-card-wrap:nth-child(-n+3) {
        grid-column: span 12;
    }

    /* Row 3: 4 cards */
    .fl-industry-row:nth-child(2) .fl-industry-card-wrap:nth-child(n+4),
    .fl-industry-row:nth-child(3) .fl-industry-card-wrap:nth-child(-n+2) {
        grid-column: span 15;
    }

    /* Row 4: 5 cards */
    .fl-industry-row:nth-child(3) .fl-industry-card-wrap:nth-child(n+3),
    .fl-industry-row:nth-child(4) .fl-industry-card-wrap:nth-child(1) {
        grid-column: span 12;
    }

    /* Row 5: 3 cards */
    .fl-industry-row:nth-child(4) .fl-industry-card-wrap:nth-child(n+2) {
        grid-column: span 20;
    }

    .fl-industry-img {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .fl-industry-card h4 {
        font-size: 14px;
        line-height: 1.35;
    }
}

/* ==========================================
   Tablet (577px - 992px)
   Layout: 4 + 3 + 4 + 3 + 4 + 3 = 21
========================================== */
@media (min-width: 577px) and (max-width: 992px) {

    .fl-industries-grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 16px 0;
    }

    .fl-industry-row {
        display: contents;
    }

    .fl-industry-card-wrap {
        width: auto;
        max-width: none;
        min-width: 0;
        padding: 0 7px;
    }

    .fl-industry-card {
        width: 100%;
        height: 155px;
        padding: 16px 10px;
    }

    /* Row 1: Global cards 1–4 */
    .fl-industry-row:nth-child(1)
    .fl-industry-card-wrap:nth-child(-n+4) {
        grid-column: span 3;
    }

    /* Row 2: Global cards 5–7 */
    .fl-industry-row:nth-child(1)
    .fl-industry-card-wrap:nth-child(n+5),
    .fl-industry-row:nth-child(2)
    .fl-industry-card-wrap:nth-child(1) {
        grid-column: span 4;
    }

    /* Row 3: Global cards 8–11 */
    .fl-industry-row:nth-child(2)
    .fl-industry-card-wrap:nth-child(n+2) {
        grid-column: span 3;
    }

    /* Row 4: Global cards 12–14 */
    .fl-industry-row:nth-child(3)
    .fl-industry-card-wrap:nth-child(-n+3) {
        grid-column: span 4;
    }

    /* Row 5: Global cards 15–18 */
    .fl-industry-row:nth-child(3)
    .fl-industry-card-wrap:nth-child(n+4),
    .fl-industry-row:nth-child(4)
    .fl-industry-card-wrap:nth-child(1) {
        grid-column: span 3;
    }

    /* Row 6: Global cards 19–21 */
    .fl-industry-row:nth-child(4)
    .fl-industry-card-wrap:nth-child(n+2) {
        grid-column: span 4;
    }

    .fl-industry-img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .fl-industry-card h4 {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* ==========================================
   Mobile (391px - 576px)
========================================== */
@media (min-width: 391px) and (max-width: 576px) {

    .fl-industries-section {
        padding: 50px 0;
    }

    .fl-industries-head {
        margin-bottom: 28px;
    }

    .fl-industries-head h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .fl-industries-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .fl-industries-grid {
        gap: 16px;
    }

    .fl-industry-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .fl-industry-card-wrap {
        width: calc(50% - 8px);
        max-width: 150px;
    }

    .fl-industry-card,
    .fl-industry-card-inner,
    .fl-industry-front,
    .fl-industry-back {
        min-height: 120px;
    }

    .fl-industry-front,
    .fl-industry-back {
        padding: 12px 10px;
    }

    .fl-industry-img,
    .fl-industry-img img {
        width: 46px;
        height: 46px;
    }

    .fl-industry-card h4 {
        font-size: 12px;
        line-height: 1.3;
    }

    .fl-industry-back p {
        font-size: 11px;
        line-height: 1.35;
    }
}

/* ==========================================
   Small Mobile (390px and below)
========================================== */
@media (max-width: 390px) {

    .fl-stat {
        width: 100%;
    }

    .fl-industries-section {
        padding: 45px 0;
    }

    .fl-industries-head h2 {
        font-size: 28px;
    }

    .fl-industries-head p {
        font-size: 13px;
        line-height: 1.6;
    }

    .fl-industries-grid {
        gap: 14px;
    }

    .fl-industry-row {
        flex-wrap: wrap;
        gap: 14px;
    }

    .fl-industry-card-wrap {
        width: calc(50% - 7px);
        max-width: 140px;
    }

    .fl-industry-card,
    .fl-industry-card-inner,
    .fl-industry-front,
    .fl-industry-back {
        min-height: 116px;
    }

    .fl-industry-front,
    .fl-industry-back {
        padding: 10px 8px;
    }

    .fl-industry-img,
    .fl-industry-img img {
        width: 42px;
        height: 42px;
    }

    .fl-industry-card h4 {
        font-size: 11.5px;
        line-height: 1.25;
    }

    .fl-industry-back p {
        font-size: 10.5px;
        line-height: 1.3;
    }
}

/* =========================================================
   BANNER ONE — RESPONSIVE
   Desktop      : 1200px - 1399px
   Laptop       : 993px - 1199px
   Tablet       : 577px - 992px
   Mobile       : 391px - 576px
   Small Mobile : 390px and below
   ========================================================= */

/* =========================================================
   CUSTOMIZED : 1024px - 1199px
========================================================= */

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

    .banner-one .banner-one__inner {
        position: relative;
        padding: 50px 40px;
    }

    .banner-one .banner-one__content {
        width: 60%;
        max-width: 60%;
        flex: 0 0 60%;
        position: relative;
        z-index: 2;
    }

    .banner-one .banner-one__inner>.banner-one__img-box {
        display: flex !important;
        visibility: visible !important;
        position: absolute;
        width: 44%;
        max-width: 500px;
        right: 10px;
        top: 45%;
        z-index: 3;
        opacity: 1 !important;
        transform: translateY(-50%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .banner-one .banner-one__img {
        width: 110% !important;
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }

    .banner-one .banner-one__img picture {
        display: block;
        width: 100%;
        max-height: 565px;
    }

    .banner-one .banner-one__img img {
        display: block !important;
        visibility: visible !important;
        width: 100%;
        max-height: 565px;
        opacity: 1 !important;
        object-fit: contain;
    }

    .banner-one__img-top-logo,
    .banner-one__app-buttons,
    .banner-one__img-shape-1,
    .banner-one__img-shape-2,
    .banner-one__img-shape-3,
    .banner-one__img-shape-4,
    .banner-one__img-shape-5 {
        display: none !important;
    }

    .banner-one__img-box {
        flex-direction: column;
        gap: 10px;
    }

    .banner-one__img-top-logo {
        display: block !important;
        width: 170px;
        max-width: 100%;
    }

    .banner-one__img-top-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .banner-one__app-buttons {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .banner-one__app-buttons img {
        display: block;
        width: auto;
        max-height: 34px;
    }

    .banner-one .banner-one__img-box {
        flex-direction: column;
        gap: 10px;
    }

    .banner-one .banner-one__img-top-logo {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin: 0;
        width: 170px;
    }

    .banner-one .banner-one__app-buttons {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 4;
    }

    .banner-one .banner-one__app-buttons a {
        display: block;
        line-height: 0;
    }

    .banner-one .banner-one__app-buttons img {
        width: auto;
        max-height: 34px;
    }
}

/* ==========================================
   DESKTOP : 1200px - 1399px
========================================== */

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

    .thm-btn {
        width: 166px;
    }

    .fl-industry-row {
        flex-wrap: wrap;
    }

    .fl-industry-card-wrap {
        width: 190px;
    }


    /* ==========================================
       BANNER ONE
    ========================================== */

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

    .banner-one .container-fluid {
        padding-right: 45px;
        padding-left: 45px;
    }

    .banner-one__inner {
        position: relative;
        padding: 55px 0 30px;
    }

    .banner-one__content {
        position: relative;
        z-index: 2;
        width: 58%;
        max-width: 58%;
        flex: 0 0 58%;
    }

    .banner-one__title {
        margin: 0 0 16px;
        line-height: 1.05;
    }

    .banner-one__title .title-line-1,
    .banner-one__title .title-line-2 {
        display: block;
        font-size: 48px;
        line-height: 1.05;
    }

    .banner-one__subtitle {
        max-width: 700px;
        margin-bottom: 14px;
        font-size: 15px;
        line-height: 1.55;
    }

    .banner-one__text {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    h3.banner-one__text {
        margin: 16px 0 10px;
        font-size: 18px;
        line-height: 1.4;
    }

    .banner-one__content>.row {
        margin-right: -8px;
        margin-left: -8px;
    }

    .banner-one__content>.row>.col-lg-5 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        padding-right: 8px;
        padding-left: 8px;
    }

    .service-details__points-list li {
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .service-details__points-list li p {
        font-size: 13px;
        line-height: 1.45;
    }


    /* ==========================================
       COMPACT RIGHT IMAGE
    ========================================== */

    .banner-one__img-box {
        position: absolute;
        top: 40%;
        right: 20px;
        z-index: 1;
        width: 42%;
        max-width: 560px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
    }

    .banner-one__img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .banner-one__img>img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .banner-one__img-top-logo {
        width: 100%;
        max-width: 190px;
        margin-bottom: 12px;
    }

    .banner-one__img-top-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .banner-one__app-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .banner-one__app-buttons a {
        display: inline-flex;
    }

    .banner-one__app-buttons img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 38px;
    }


    /* ==========================================
       BUTTONS AND STATISTICS
    ========================================== */

    .banner-action-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .banner-one__btn-box {
        gap: 12px !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }

    .banner-one__btn .thm-btn {
        padding: 13px 16px;
        font-size: 13px;
    }

    .banner-action-stats {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px !important;
    }

    .fl-stat {
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
    }

    .fl-stat-num {
        font-size: 20px;
        line-height: 1.2;
    }

    .fl-stat-label {
        font-size: 10px;
        line-height: 1.3;
    }


    /* ==========================================
       FEATURE STRIP
    ========================================== */

    .compliance-feature-strip {
        position: relative;
        z-index: 3;
        width: 100%;
        margin-top: 22px;
        overflow: hidden;
    }

    .feature-item {
        min-width: 190px;
    }

    .feature-content h6 {
        font-size: 12px;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* =========================================================
   LAPTOP : 993px - 1199px
========================================================= */

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

    /* =========================
       BANNER ONE
    ========================= */

    .banner-one {
        overflow: hidden;
    }

    .banner-one__inner {
        padding: 50px 40px;
    }

    .banner-one__img-box {
        display: none !important;
    }

    .banner-one__content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
    }

    .banner-one__title {
        font-size: 48px;
        line-height: 1.08;
    }

    .banner-one__title .title-line-1,
    .banner-one__title .title-line-2 {
        display: block;
        font-size: 45px;
        line-height: 1.08;
    }

    .banner-one__subtitle,
    .banner-one__text {
        max-width: 100%;
    }

    .banner-action-row {
        gap: 25px;
    }

    .banner-action-stats {
        gap: 20px !important;
    }

    .compliance-feature-strip {
        margin-top: 20px;
    }


    /* =========================
       ABOUT ONE
    ========================= */

    .about-one {
        padding: 60px 40px !important;
    }

    .about-one .about-one__right {
        display: none !important;
    }

    .about-one .col-xl-6:first-child {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }


    /* =========================
       WHY CHOOSE ONE
    ========================= */

    .why-choose-one {
        padding: 60px 40px !important;
    }

    .why-choose-one .why-choose-one__right {
        display: none !important;
    }

    .why-choose-one .col-xl-6:first-child {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* =========================================================
   TABLET : 577px - 992px
========================================================= */

@media (min-width: 577px) and (max-width: 992px) {

    .banner-one {
        overflow: hidden;
    }

    .banner-one__img-box {
        display: none;
    }

    .banner-one__video-link {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 30px;
    }

    .banner-one__inner {
        padding: 60px 40px;
    }

    .banner-one__content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
    }

    .banner-one__title {
        font-size: 48px;
        line-height: 1.1;
        margin: 0 0 18px;
    }

    .banner-one__title .title-line-1,
    .banner-one__title .title-line-2 {
        display: block;
        font-size: 40px;
        line-height: 1.1;
    }

    .banner-one__title br,
    .banner-one__text br {
        display: none;
    }

    .banner-one__subtitle,
    .banner-one__text {
        max-width: 100%;
    }

    .banner-one__content>.row {
        row-gap: 0;
    }

    .banner-one__content>.row>.col-lg-5 {
        width: 50%;
        flex: 0 0 50%;
    }

    .service-details__points-list li {
        align-items: flex-start;
    }

    .banner-action-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .banner-one__btn-box {
        margin-bottom: 0 !important;
    }

    .banner-action-stats {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .compliance-feature-strip {
        margin-top: 25px;
        overflow: hidden;
    }

    .feature-item {
        min-width: 210px;
    }

    .banner-one__shape-1,
    .banner-one__shape-2,
    .banner-one__shape-3,
    .banner-one__shape-4,
    .banner-one__shape-6 {
        opacity: 0.35;
    }

    .about-one {
        padding: 60px 40px !important;
    }

    .about-one .about-one__right {
        display: none !important;
    }

    .about-one .col-xl-6:first-child {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .why-choose-one {
        padding: 60px 40px !important;
    }

    .why-choose-one .why-choose-one__right {
        display: none !important;
    }

    .why-choose-one .col-xl-6:first-child {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* =========================================================
   MOBILE : 391px - 576px
========================================================= */

@media (min-width: 391px) and (max-width: 576px) {

    .banner-one {
        overflow: hidden;
    }

    .banner-one__img-box {
        display: none;
    }

    .banner-one__video-link {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 25px;
    }

    .banner-one__inner {
        padding: 30px 0 25px;
    }

    .banner-one__content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
    }

    .banner-one__title {
        font-size: 36px;
        line-height: 1.12;
        margin: 0 0 15px;
    }

    .banner-one__title .title-line-1,
    .banner-one__title .title-line-2 {
        display: block;
        font-size: 36px;
        line-height: 1.12;
    }

    .banner-one__title br,
    .banner-one__text br,
    .banner-one__shape-5 {
        display: none;
    }

    .banner-one__subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .banner-one__text {
        font-size: 15px;
        line-height: 1.6;
    }

    h3.banner-one__text {
        margin-top: 20px;
    }

    .banner-one__content>.row {
        display: block;
    }

    .banner-one__content>.row>.col-lg-5 {
        width: 100%;
        max-width: 100%;
    }

    .service-details__points-list li {
        align-items: flex-start;
    }

    .service-details__points-list li p {
        font-size: 14px;
        line-height: 1.5;
    }

    .banner-action-row {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .banner-one__btn-box {
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px !important;
        margin-top: 25px !important;
        margin-bottom: 0 !important;
    }

    .banner-one__btn .thm-btn {
        padding: 13px 18px;
        font-size: 14px;
        width: 180px;
    }

    .banner-action-stats {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px !important;
    }

    .fl-stat-num {
        font-size: 22px;
    }

    .fl-stat-label {
        font-size: 11px;
        line-height: 1.35;
    }

    .compliance-feature-strip {
        margin-top: 25px;
        overflow: hidden;
    }

    .feature-item {
        min-width: 190px;
    }

    .banner-one__shape-1,
    .banner-one__shape-2,
    .banner-one__shape-3,
    .banner-one__shape-4,
    .banner-one__shape-6 {
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE : 390px AND BELOW
========================================================= */

@media (max-width: 390px) {

    .banner-one {
        overflow: hidden;
    }

    .banner-one__img-box {
        display: none;
    }

    .banner-one__video-link {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }

    .banner-one__inner {
        padding: 25px 0;
    }

    .banner-one__content {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
        z-index: 2;
    }

    .banner-one__title {
        font-size: 32px;
        line-height: 1.12;
        margin: 0 0 15px;
    }

    .banner-one__title .title-line-1,
    .banner-one__title .title-line-2 {
        display: block;
        font-size: 32px;
        line-height: 1.12;
    }

    .banner-one__title br,
    .banner-one__text br,
    .banner-one__shape-5 {
        display: none;
    }

    .banner-one__subtitle {
        font-size: 15px;
        line-height: 1.55;
    }

    .banner-one__text {
        font-size: 14px;
        line-height: 1.55;
    }

    h3.banner-one__text {
        margin-top: 18px;
    }

    .banner-one__content>.row {
        display: block;
    }

    .banner-one__content>.row>.col-lg-5 {
        width: 100%;
        max-width: 100%;
    }

    .service-details__points-list li {
        align-items: flex-start;
    }

    .service-details__points-list li p {
        font-size: 13px;
        line-height: 1.5;
    }

    .banner-action-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .banner-one__btn-box {
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px !important;
        margin-top: 22px !important;
        margin-bottom: 0 !important;
    }

    .banner-one__btn .thm-btn {
        padding: 13px 16px;
        font-size: 14px;
        width: 150px;
    }

    .banner-action-stats {
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px !important;
    }

    .fl-stat-num {
        font-size: 20px;
    }

    .fl-stat-label {
        font-size: 10px;
        line-height: 1.3;
    }

    .compliance-feature-strip {
        margin-top: 22px;
        overflow: hidden;
    }

    .feature-item {
        min-width: 175px;
    }

    .feature-icon {
        flex-shrink: 0;
    }

    .feature-content h6 {
        font-size: 13px;
    }

    .feature-content p {
        font-size: 11px;
    }

    .banner-one__shape-1,
    .banner-one__shape-2,
    .banner-one__shape-3,
    .banner-one__shape-4,
    .banner-one__shape-6 {
        display: none;
    }
}