﻿/* Banner Section */
.ASIM_Anti_Spoofing_solution {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center !important;
    align-items: center !important;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../../../images/pages/solutions/asim-anti-spoofing/asim-anti-spoofing.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px 100px 0px;
    margin-top: -75px;
    height: 100vh;
}

    .ASIM_Anti_Spoofing_solution:before {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        /*background-color: var(--ma-tag-black);*/
        background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6), transparent);
        background-color: transparent;
        background-image: -webkit-linear-gradient(to right, #000, #000, transparent);
        background-image: -moz-linear-gradient(to right, #000, #000, transparent);
        background-image: -ms-linear-gradient(to right, #000, #000, transparent);
        background-image: -o-linear-gradient(to right, #000, #000, transparent);
        background-image: linear-gradient(to right, #000, #000, transparent);
        opacity: 1;
        z-index: 1;
    }

    .ASIM_Anti_Spoofing_solution > .container {
        position: relative;
        z-index: 10;
    }

/*----------------------------------------------------------------------------------*/
/*---------------------------------icon_product_menu--------------------------------*/
.page_title_section {
    color: var(--ma-white);
}

    .page_title_section > h1 {
        font-size: var(--ma-page-title);
        font-weight: bold;
        line-height: 25px;
        margin-bottom: 20px;
    }

.breadcrumb {
    font-size: var(--ma-body-text);
    color: var(--ma-white);
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center !important;
    align-items: center !important;
}

    .breadcrumb > li {
        padding: 0px 5px;
    }

        .breadcrumb > li > a {
            color: var(--ma-white);
        }

            .breadcrumb > li > a:hover,
            .breadcrumb > li > a:focus,
            .breadcrumb > li > a:active {
                color: var(--ma-white);
            }

        .breadcrumb > li > span {
            color: var(--ma-white);
        }

        .breadcrumb > li > strong {
            color: var(--ma-white);
        }

.page_title_section > p {
    font-size: var(--ma-body-text);
    margin-bottom: 20px;
}

.get_in_touch {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--ma-white);
    font-size: var(--ma-body-text);
    border-radius: 5px;
    background-color: var(--ma-white);
    color: var(--ma-type-primary);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

    .get_in_touch:hover,
    .get_in_touch:focus,
    .get_in_touch:active {
        background-color: transparent;
        color: var(--ma-white);
    }


p.list {
    position: relative;
    padding-left: 20px;
}

    p.list > i {
        position: absolute;
        left: 0px;
        height: 12px;
        width: 12px;
        top: 3px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

/*----------------------------------------------------------------------------------*/
/*---------------------------------section_title------------------------------------*/

.section_title {
    margin: 0px 0px 0px 0px;
    display: block;
}

    .section_title > h2 {
        font-size: var(--ma-page-title);
    }

    .section_title > p {
        font-size: var(--ma-body-text);
    }

/*----------------------------------------------------------------------------------*/


/* Overview Section */
.ASIM_overview_section {
    background-color: #fefefe;
    padding: 100px 0;
}

    .ASIM_overview_section h6 {
        color: var(--ma-type-primary);
        font-weight: normal;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    .ASIM_overview_section h2 {
        color: var(--ma-tag-black);
        font-size: var(--ma-page-title);
    }
    .ASIM_overview_section p {
        font-size: var(--ma-body-text);
    }

/* Challenges Section */
.challenges_section {
    border: 2px dashed var(--ma-red);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .challenges_section:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(220, 53, 69, 0.1);
    }

    .challenges_section h3 {
        font-size: var(--ma-pane-header);
        color: var(--ma-red);
        margin-bottom: 15px;
    }

    .challenges_section ul {
        list-style: none;
        margin-top: 20px;
        padding: 0;
        margin-bottom: 0;
    }

    .challenges_section li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
        font-size: var(--ma-body-text);
    }

        .challenges_section li::before {
            content: '\f057';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--ma-red);
        }

/* Protection Section */
.protection_section {
    border: 2px dashed var(--ma-success);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .protection_section:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
    }

    .protection_section h3 {
        color: var(--ma-success);
        font-size: var(--ma-pane-header);
        margin-bottom: 15px;
    }

    .protection_section ul {
        list-style: none;
        margin-top: 20px;
        padding: 0;
        margin-bottom: 0;
    }

    .protection_section li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
        font-size: var(--ma-body-text);
    }

        .protection_section li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--ma-success);
        }


/* ----------------------- Features Section -------------------------- */
.ASIM_features_section {
    background-color: #eeeeee;
    padding: 80px 0;
}

.ASIM_features_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    min-height:250px;


    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

    .ASIM_features_box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .ASIM_features_box i {
        font-size: 3rem;
        color: var(--ma-type-primary);
        margin-bottom: 20px;
    }

    .ASIM_features_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width:100%;
    }

    .ASIM_features_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }

/* ----------------------- Protection Capabilities Section ------------------------ */
.protection_capabilities_section {
    background-color: #ffffff;
    padding: 80px 0;
}

.protection_capabilities_feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

    .protection_capabilities_feature:hover {
        background: var(--ma-type-primary);
        color: white;
        transform: scale(1.05);
    }

        .protection_capabilities_feature:hover i {
            color: white;
        }

        .protection_capabilities_feature:hover h4,
        .protection_capabilities_feature:hover p {
            color: white;
        }

    .protection_capabilities_feature i {
        font-size: 2.5rem;
        color: var(--ma-type-primary);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .protection_capabilities_feature h4 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .protection_capabilities_feature p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }

/* ----------------------------- Use Cases Section -------------------------------- */
.use_cases_section {
    background-color: #eeeeee;
    padding: 80px 0px;
}

.use-case {
    background-color: transparent;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    border: 1px dashed var(--ma-type-primary);
}


    .use-case i {
        font-size: 3.5rem;
        color: var(--ma-type-primary);
    }

    .use-case h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .use-case p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }

/* ---------------------------------- Checklist Section - Updated with different colors -------------------------- */
.checklist_section {
    background-color: black;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    padding: 80px 0;
}

    .checklist_section .section_title h2 {
        color: white;
    }
    .checklist_section .section_title p {
        color: white;
    }

/*.checklist_step {
    padding: 20px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .checklist_step:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }


.step-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0.9;
}

.checklist_step h4 {
    font-size: var(--ma-pane-header);
    margin-bottom: 10px;
    color: var(--ma-tag-black);
    width: 100%;
}

.checklist_step p {
    width: 100%;
    color: var(--ma-tag-black);
    font-size: var(--ma-body-text);
    margin-bottom: 0px;
}*/


.checklist-card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
}

.image-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease;
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.info-section {
    display: flex;
    flex-direction: column;
}

.step-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #f97316;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h2 {
    font-size: 1.75rem;
    color: #0f172a;
    font-weight: bold;
}

.step-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.75;
}

.controls {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tab-button {
    position: relative;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: #64748b;
}

    .tab-button:hover {
        background: #e5e7eb;
    }

    .tab-button.active {
        background: #f97316;
        color: white;
        transform: scale(1.05);
        box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
    }

.tab-button-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
}

.tab-button-label {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    line-height: 1.2;
}

.check-icon {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #22c55e;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.tab-button.active .check-icon {
    display: flex;
}

.progress-bar {
    height: 0.25rem;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #f97316;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .image-section {
        height: 400px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .step-content {
        padding: 2rem 1.5rem;
    }

        .step-content h2 {
            font-size: 1.5rem;
        }

        .step-content p {
            font-size: 1rem;
        }
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}



/* -------------------------------- Implementation Section ------------------------------ */
.implementation_section {
    background-color: #eeeeee;
    padding: 80px 0;
}

.implementation_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    border: 1px dashed var(--ma-type-primary);
    text-align:center;
}

    .implementation_box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    .implementation_box i {
        font-size: 3rem;
        color: var(--ma-type-primary);
    }

    .implementation_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .implementation_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }




/* --------------------------------- Comparison Section ----------------------------------------- */
.comparison_section {
    background-color: #ffffff;
    padding: 80px 0;
}

.comparison-table {
    margin-top: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

    .comparison-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .comparison-table th {
        padding: 20px;
        border: none;
    }

    .comparison-table td {
        font-size: var(--ma-body-text);
        padding: 20px;
        vertical-align: middle;
    }

    .comparison-table tbody tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    .comparison-table .check {
        color: var(--ma-success);
        font-size: 1.5rem;
    }

    .comparison-table .times {
        color: var(--ma-red);
        font-size: 1.5rem;
    }


/* ------------------------------------ Growing Risk Section with Icons -------------------------------- */
.biometric_fraud_section {
    background-color: #eeeeee;
    padding: 80px 0;
}


.biometric_fraud_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    border: 1px dashed var(--ma-red);
    text-align: center;
}

    .biometric_fraud_box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    .biometric_fraud_box i {
        font-size: 3rem;
        color: var(--ma-red);
    }

    .biometric_fraud_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .biometric_fraud_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }



/* AI Defense Section */
/*.AI_defense_section {
    padding: 80px 0;
}*/

/* ------------------------------------ Why ASIM Section ------------------------------------ */
.why_ASIM_section {
    background-color: #ffffff;
    padding: 80px 0;
}

.why_ASIM_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    border: 1px dashed var(--ma-type-primary);
    text-align: center;
}

    .why_ASIM_box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    .why_ASIM_box i {
        font-size: 3rem;
        color: var(--ma-type-primary);
    }

    .why_ASIM_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .why_ASIM_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }



/* ----------------------------- Trusted Value Section with Updated Card Design and 3 Points Each --------------------------- */
.delivering_trusted_value_section {
    background-color: #eeeeee;
    padding: 80px 0;
}


.trusted_value_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    border: 1px dashed var(--ma-type-primary);
}

    .trusted_value_box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    .trusted_value_box i {
        font-size: 3rem;
        color: var(--ma-type-primary);
        margin-right:20px;
        margin-bottom:20px;
    }

    .trusted_value_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width:100%;
    }

    .trusted_value_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }

.trusted_value_box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .trusted_value_box ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .trusted_value_box ul li::before {
        content: '\f058';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0;
        color: var(--ma-success);
        font-size: 1.1rem;
    }

    .trusted_value_box ul li:last-child {
        margin-bottom: 0;
    }




/* ------------------------------------- Download Guide Section ---------------------------------------- */
.download_guide_section {
    padding: 80px 0;
    text-align:center;
}
.download_your_guide_btn {
    background: var(--ma-type-primary);
    color: var(--ma-white);
}


    /* ---------------------------- Why Choose Mantra Section with Icons and Consistent Font Size ------------------------------- */
    .programs_and_partners_section {
        background-color: #ffffff;
        padding: 80px 0;
    }


.programs_and_partners_box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    border: 1px dashed var(--ma-type-primary);
}

    .programs_and_partners_box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    .programs_and_partners_box i {
        font-size: 3rem;
        color: var(--ma-type-primary);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .programs_and_partners_box h3 {
        font-size: var(--ma-pane-header);
        margin-bottom: 10px;
        color: var(--ma-tag-black);
        width: 100%;
    }

    .programs_and_partners_box p {
        width: 100%;
        color: var(--ma-tag-black);
        font-size: var(--ma-body-text);
        margin-bottom: 0px;
    }



/* ----------------------------------- FAQ Section ---------------------------------- */
.faq_section {
    background-color: #eeeeee;
    padding: 80px 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--ma-tag-black);
    transition: all 0.3s ease;
}

    .faq-question:hover {
        background-color: #f8f9fa;
        color: var(--ma-type-primary);
    }

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: var(--ma-gray-700);
    line-height: 1.8;
    display: none;
}

    .faq-answer p {
        font-size: var(--ma-body-text);
        margin-bottom:0px;
    }

    .faq-answer.active {
        display: block;
    }





/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    
}

/* Desktop (992px to 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    
}

/* Mobile (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    
}

/* Extra Small Mobile (below 375px) */
@media (max-width: 374px) {
    
}
