.tf-layout {
    padding: 60px 0;
    background: #fff;
}

.tf-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    font-family: 'VIC Medium' !important;
    align-items: start;
}

/* LEFT */
.tf-preview img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.tf-description {
    margin-top: 30px;
}

.tf-description h3 {
    margin-bottom: 10px;
}

.tf-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* RESOURCE CARDS */
.tf-resources {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tf-resource-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    background: #fafafa;
}

.tf-resource-card h4 {
    margin-bottom: 8px;
}

.tf-resource-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.tf-link {
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

/* RIGHT SIDEBAR */
.tf-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.tf-price-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
}

.tf-price {
    font-size: 24px;
    font-family: 'VIC SemiBold';
    margin: 15px 0;
}

.tf-price-card h4 {
    font-size: 20px;
    font-family: 'VIC SemiBold';
}

.tf-price span {
    font-size: 14px;
    color: #777;
}

.tf-price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tf-price-card li {
    padding: 6px 0;
    font-size: 14px;
    color: #7f7f7f;
}

i.fa-regular.fa-circle-check {
    color: #003e81;
}

.grey-month {
    color: #7f7f7f;
}



.tf-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 600;
}

.tf-btn.primary {
    background: #003E81;
    color: #fff;
    text-decoration: none;
}

a.tf-btn.primary:hover {
    background-color: #0254ac;
}

.tf-btn.outline {
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
}

a.tf-btn.outline:hover {
    background-color: black;
    color: white;
}

.tf-attributes {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.tf-attributes h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.tf-attributes-list li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.tf-attributes-list li:last-child {
    border-bottom: none;
}

.tf-muted {
    color: #777;
    text-align: right;
}

.tf-link {
    color: #2c7be5;
    text-decoration: none;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tf-container {
        grid-template-columns: 1fr;
    }

    .tf-resources {
        grid-template-columns: 1fr;
    }

    .tf-sidebar {
        position: static;
    }
}


/* =========================
   LAYOUT
========================= */
.theme-store-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    /* gap: 40px; */
    max-width: 1400px;
    width: 100%;
    margin: 50px auto 0;
}

@media (max-width: 900px) {
    .theme-store-layout {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .theme-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* =========================
   FILTER SIDEBAR
========================= */
.theme-filters h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-family: 'VIC Medium';
    font-weight: 700;

}

.theme-filters label {
    display: block;
    font-size: 14px;
    cursor: pointer;
    font-family: 'VIC Medium';
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;

}

/* =========================
   THEME GRID
========================= */
/* .theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
} */

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

/* Tablet */
@media (max-width: 1100px) {
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .theme-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   THEME CARD
========================= */

.theme-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.theme-card-link:hover .theme-card {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

a.theme-card-link:hover {
    text-decoration: none;
}

.theme-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 320px;
    height: fit-content;
}

.theme-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.theme-image img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.theme-content {
    padding: 16px;
}

.theme-content h3 {
    font-size: 14px;
    font-family: 'VIC Medium';
    margin: 0px;

}

.theme-price-wrap {
    line-height: 10px;
    width: 60%;
}

.theme-content p {
    font-size: 12px;
    line-height: 15px;
    color: #7f7f7f;
    font-family: 'VIC Medium';

}

p.theme-meta {
    margin: 5px 0px;
}

span.theme-trublu-title {
    color: #003e81;
}

/* Footer row */
.theme-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

/* Price */
.theme-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Description */
.theme-price-desc {
    font-size: 12px;
    color: #666;
    margin: 4px 0 0;
    line-height: 1.4;
    /* display: -webkit-box;
    -webkit-line-clamp: 1;      
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

/* Button */
.theme-buy-btn {
    padding: 8px 18px;
    border: 1px solid #003E81;
    color: #003E81;
    font-size: 13px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s ease;

}

.theme-buy-btn:hover {
    background: #003E81;
    color: #fff;
    text-decoration: none;
}

/* Rating row */
.theme-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 5px 0px;
}

/* Stars */
.theme-rating .stars {
    font-size: 16px;
    color: #f5a623;
    /* gold */
    letter-spacing: 1px;
}

/* Review count */
.rating-count {
    font-size: 11px;
    color: #777;
    font-family: 'VIC Medium';
}

p.theme-price-desc {
    margin: 0px;
}




/* video  */

.video-wrapper {
    position: relative;
    display: inline-block;
}


.sound-btn {
    position: absolute;
    bottom: 30px;
    right: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 18px;
}

.video-wrapper:hover .sound-btn {
    display: block;
}

/* end video */
.trublu_home_page {
    position: relative;
    background: #f5f5f5;
    overflow-x: unset;
}

footer {
    position: relative;
    z-index: 3;
}

.trublu_home_page,
.n_webp .bg_lazy_loaded.more_highlight_sec,
.n_webp .bg_lazy_loaded.report_section,
.n_webp .bg_lazy_loaded .door_container:before {
    background: #efefef url(../images/trublu/images/bg-noise.png);
    padding-bottom: 0px !important;
}

.more_highlight_sec,
.report_section,
.door_container:before {
    background: #efefef url(../images/trublu/images/bg-noise.png);
}

.trublu_home_page h1 {
    font: 82px/1 var(--primary-black);
    letter-spacing: -2px;
    margin-bottom: 30px;
    line-height: 0.95;
}

.i18n-ta-in .trublu_home_page h1 {
    font-size: 60px;
    line-height: 1.2;
}

.trublu_home_page h2 {
    font: 48px/1 var(--primary-bold);
    letter-spacing: -2px;
}

.trublu_home_page .trbh_scnd_text_wrap h2,
.trublu_home_page .intro_text,
.trublu_home_page h3 {
    font: 48px/1.1 var(--primary-bold);
    letter-spacing: -2px;
}


.trbh_side_text_wrap .title_label {
    text-transform: capitalize !important;
    font-size: 48px !important;
    font-family: 'VIC Bold' !important;
}

.trbh_side_text_wrap h3 {
    font-size: 18px !important;
    letter-spacing: 0px;

}

/* Full width image container */
.trbh_fullwidth_image {
    width: 100vw;
    /* full viewport width */
    margin-left: calc(-50vw + 50%);
    /* breaks out of container */
}

/* Image scaling */
.trbh_fullwidth_image img {
    width: 100%;
    height: auto;
    display: block;
}

.i18n-ta-in .trublu_home_page .trbh_scnd_text_wrap h2,
.i18n-ta-in .trublu_home_page .intro_text,
.i18n-ta-in .trublu_home_page h3 {
    font-size: 38px;
    line-height: 1.2;
}

.trublu_home_page .trbh_scnd_text_wrap h2 {
    margin-bottom: 50px;
    padding-left: 50px;
    /* max-width: 1025px; */
    width: 100%;
    color: #003e81;
    text-align: center;
    margin-top: 0;
}

.trublu_home_page .trbh_banner_section .intro_text {
    display: inline-block;
    font: 32px/1.2 var(--primary-medium);
    letter-spacing: -1px;
    margin: 0px auto 25px;
    width: max-content;
    /* background: linear-gradient(to left, #d81159 0%, #d81159 42.5%, #2d80da  50%, #d81159 57.5%, #d81159 100%); */
    background: linear-gradient(to left, #003e81 0%, #003e81 42.5%, #1ABC9C 50%, #003e81 57.5%, #003e81 100%);
    /* background: linear-gradient(to left, #e57627 0%, #e57627 42.5%, #facb8f 50%, #e57627 57.5%, #e57627 100%); */
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-position: 100% center;
    animation: loader 10s ease infinite reverse;
}

.trbz_animated.trbh_text_wrap .intro_text {
    animation: loader 10s ease infinite reverse;
}

@keyframes loader {
    0% {
        background-position: 100% center;
    }

    50% {
        background-position: 0% center;
    }

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

.trublu_home_page picture img.trblyte_loading {
    /* filter: blur(0px); */
}

.trublu_home_page p,
.trublu_home_page li,
.trublu_home_page a,
.trublu_home_page span {
    font-size: 18px;
    line-height: 1.4;
}

li.trbh_list_box a {
    color: white;
    text-decoration: none;
}

.trbh_box_link {
    display: block;
    color: inherit !important;
    text-decoration: none !important;
}

.trbh_box_link:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}


.trublu_home_page .zcta_btn,
.trublu_home_page .act-btn {
    padding: 20px 30px;
    border: 2px solid #003e81;
    background: #003e81;
    border-radius: 35px;
    box-sizing: border-box;
    color: #fff;
    font: 16px/1 var(--primary-bold);
    text-transform: uppercase;
    max-width: 265px;
    width: 100%;
    display: inline-block;
    margin: 0px 15px;
    position: relative;
    visibility: visible;
    opacity: 1;
    text-decoration: unset;
}

.trublu_home_page .zcta_btn:hover,
.trublu_home_page .act-btn:hover {
    border: 1px solid #1abc9c;
    background: #1abc9c;
    color: #f7f6fb;
    transition: all 0.7s;
}

.trublu_home_page .act-btn.buy_now_btn {
    background: #000;
    border: 2px solid #fff;
}

.body-umain .act-btn.buy_now_btn,
.body-umain .box_animation.active .act-btn.buy_now_btn {
    z-index: 0;
    opacity: 0;
    transform: translateX(0%);
    display: none;
    visibility: hidden;
    animation: none;
}

.body-umain .box_animation .act-btn.z_box_anim1,
.body-umain .box_animation.active .act-btn.z_box_anim {
    z-index: 1;
    transform: translateX(0%);
    animation: none;
}

.trbh_banner_section {
    position: relative;
    background: #003E81;
    background: linear-gradient(90deg, rgba(0, 62, 129, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 62, 129, 0.1) 100%);
    padding: 0px 0px 120px;
    color: #ffffff;
    width: 100%;
    min-height: 88vh;
    /* Fallback */
    min-height: 88svh;
    /* Mobile safe viewport */
    min-height: 88dvh;
    overflow: hidden;
}


.glow_effect {
    position: absolute;
    height: 800px;
    width: 800px;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.075;
    background: #88d3ff;
    display: none;
    background: radial-gradient(circle, #88d3ff 20%, transparent 70%, transparent 100%);
}

.ge1 {
    right: -400px;
    top: 5%;
    background: radial-gradient(circle, #e57627 20%, transparent 70%, transparent 100%);
}

.ge2 {
    top: -400px;
    left: -400px;
}

@keyframes glow_outer {
    0% {
        opacity: 0.05;
        width: 500px;
        height: 500px;
        left: calc(50% - 250px);
        top: -250px;
    }

    50% {
        opacity: 0.1;
        width: 750px;
        height: 750px;
        left: calc(50% - 375px);
        top: -375px;
    }

    100% {
        opacity: 0.05;
        width: 500px;
        height: 500px;
        left: calc(50% - 250px);
        top: -250px;
    }
}

.glow_effect:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    opacity: 1;
}

@keyframes glow_inner {
    0% {
        -webkit-backdrop-filter: blur(60px);
        backdrop-filter: blur(60px);
    }

    50% {
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
    }

    100% {
        -webkit-backdrop-filter: blur(60px);
        backdrop-filter: blur(60px);
    }
}

.trbh_text_wrap {
    max-width: 900px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

/* .trbh_mobile_store {
    padding: 60px 0px 60px;
    background: linear-gradient(90deg, rgba(0, 62, 129, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 62, 129, 0.2) 100%);
} */

/* .trbh_mobile_store {
    padding: 60px 0px 60px;
    background: url(../images/home/connect_platform_bg.png);
} */

.trbh_mobile_store {
    /* padding: 60px 0px 60px; */
    /* background: url(../images/home/connect_platform_bg.png); */
    /* background: linear-gradient(90deg, rgba(0, 62, 129, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 62, 129, 0.2) 100%); */
}

.trbh_banner_section .trbh_text_wrap {
    max-width: 1200px;
}

.trbh_banner_section p {
    max-width: 90%;
    margin: 0px auto;
    line-height: 1.4;
    color: #003E81;
}

.trbh_scnd_list li {
    font-family: 'VIC Medium';
    margin: 10px 16px;
    list-style: disc;
    font-size: 16px;
}

.trbh_scnd_text_subtitle {
    font-size: 18px;
    font-weight: 700;
    font-family: 'VIC Medium';
}

span.trbh_scnd_text_btn {
    font-family: 'VIC Medium';
    font-weight: 700;
    font-size: 14px;
    margin-top: 30px;
    padding: 14px 24px;
    background: #ffffff;
    color: #0a3d78;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 100%;
}

.trbh_lb1 a {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.trbh_scnd_list {
    margin-bottom: auto;
    /* pushes button to bottom */
}

.trbh_scnd_text_btn {
    align-self: center;
    /* centers button horizontally */
    margin-top: 30px;
    padding: 14px 26px;
    background: #ffffff;
    color: #0a3d78;
    font-weight: 700;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* .trbh_lb1 a:hover .trbh_scnd_text_btn {
    background: #1ABC9C;
    color: #ffffff;
} */

.trbh_lb2 a {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.trbh_scnd_list {
    margin-bottom: auto;
    /* pushes button to bottom */
}

.trbh_scnd_text_btn {
    align-self: center;
    /* centers button horizontally */
    margin-top: 30px;
    padding: 14px 26px;
    background: #ffffff;
    color: #0a3d78;
    font-weight: 700;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* .trbh_lb2 a:hover .trbh_scnd_text_btn {
    background: #1ABC9C;
    color: #ffffff;
} */

.trbh_lb3 a {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.trbh_scnd_list {
    margin-bottom: auto;
    /* pushes button to bottom */
}

.trbh_scnd_text_btn {
    align-self: center;
    /* centers button horizontally */
    margin-top: 30px;
    padding: 14px 26px;
    background: #ffffff;
    color: #0a3d78;
    font-weight: 700;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* .trbh_lb3 a:hover .trbh_scnd_text_btn {
    background: #1ABC9C;
    color: #ffffff;
} */



/* .pos-card:hover .pos-btn {
    background: #1ABC9C;
    color: #ffffff;
} */

p.txt_anim.txt_anim3 {
    font-size: 22px;
}

.trbh_cta_sec {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    /* center if you want centered */
}

.secondary-btn {
    background: transparent;
    border: 2px solid #1ABC9C;
    color: #1ABC9C;
}

.secondary-btn:hover {
    background: #1ABC9C;
    color: #fff;
}

.trbh_features_below {
    padding-top: 50px;
}

.trbh_features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* max-width: 1200px;
    margin: 0 auto 45px;
    padding: 0 20px; */
}

.feature_card {
    padding: 22px 24px;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    min-height: 90px;
    font-family: 'VIC Medium';
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    ttext-shadow: 1px 1px 14px #b1b1b1;
}

.trbh_feature_cta {
    display: flex;
    justify-content: center;
    /* 🔥 horizontal center */
    align-items: center;
    gap: 24px;
    margin: 40px auto 0;
    width: 100%;
}

.bg-green-1 {
    background-image: url("../images/home/box/bg-green-wave1.svg");
}

.bg-blue-1 {
    background-image: url("../images/home/box/bg-blue-wave-1.svg");
}

.bg-green-2 {
    background-image: url("../images/home/box/bg-green-wave2.svg");
}

.bg-blue-2 {
    background-image: url("../images/home/box/bg-blue-wave-2.svg");
}

.trbh_feature_cta a.btn-primary {
    padding: 20px;
    border-radius: 35px;
    font-family: 'VIC Medium';
    font-weight: 500;
    background-color: #003e81;

}

.trbh_feature_cta a.btn-primary:hover {
    text-decoration: none;
    background-color: transparent;
    color: #003e81;
    border: 1px solid #003e81;
}

.trbh_feature_cta a.btn-outline {
    padding: 20px;
    border-radius: 35px;
    font-family: 'VIC Medium';
    font-weight: 500;
    border: 1px solid #003e81;
    color: #003E81;
}

.trbh_feature_cta a.btn-outline:hover {
    text-decoration: none;
    background-color: #003e81;
    color: #fff;
    border: 1px solid #003e81;
}

.i18n-ta-in .trbh_text_wrap {
    max-width: 1120px;
}

.trbh_cta_sec {
    margin: 30px auto 0px;
}

.trbh_inr_sec {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0px auto;
    /* background: #003e81; */
    border-radius: 12px;
    /* padding-bottom: 120px; */
    transform-origin: center;
    top: 40px;
}

.n_webp .bg_lazy_loaded .trbh_inr_bg {
    background: #1a1a1a url(../images/trublu/images/trbh_home_trublu_banner_2x.jpg);
}

.trbh_inr_bg,
.s_webp .bg_lazy_loaded .trbh_inr_bg,
.n_webp .bg_lazy_loaded .trbh_inr_bg {
    background-size: cover;
    background-attachment: scroll;
}

.s_webp .bg_lazy_loaded .trbh_bnr_img_sec {
    background: url(../video/screen.png);
}

.n_webp .bg_lazy_loaded .trbh_bnr_img_sec {
    background: url(../images/trublu/images/trbh_home_trublu_banner_product_img_bg_2x.png);
}

.trbh_bnr_img_sec video {
    max-width: 100%;
    width: 100%;
    transition: all 0.8s linear;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 50px 50px 20px 40px;
    height: auto;
    object-fit: cover;
}

.trbh_bnr_img_sec {
    position: relative;
    /* max-width: 1160px; */
    width: 100%;
    text-align: center;
    margin: 0px auto;
    padding: 20px 0px 40px;
    margin-top: -85px;
    transform-origin: center;
    background: url(../images/trublu/images/trbh_home_trublu_banner_product_img_bg_lazy.png);
}

.trbh_bnr_img_sec,
.s_webp .bg_lazy_loaded .trbh_bnr_img_sec,
.n_webp .bg_lazy_loaded .trbh_bnr_img_sec {
    /* background-size: 1210px auto; */
    background-repeat: no-repeat;
    /* border: 1px solid #fff; */
    border-radius: 24px;
    text-align: center;
}

.trbh_scnd_text_wrap {
    max-width: 1450px;
    width: 100%;
    margin: 0px auto;
    padding: 100px 0px 120px;
}

.trbh_list_container {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.trbh_list_box {
    position: relative;
    padding: 50px;
    background: #003e81;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 0px 15px;
    max-width: 32%;
    width: 100%;
}

.trbh_list_box:hover {
    background: #1abc9c;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.trbh_list_box h3 {
    font: 36px/1.3 var(--primary-bold);
    margin-bottom: 10px;
    letter-spacing: 0;
}

.trbh_list_box p {
    max-width: 100%;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0px;
    font-family: 'VIC Medium';
}

.bg_lazy_loaded .app_link,
.bg_lazy_loaded .trbh_list_icon {
    background: url(../images/pos-icon.png);
    background-repeat: no-repeat;
}

.bg_lazy_loaded .trbh_icon1 {
    background-position: 2px -5px;
}

.bg_lazy_loaded .trbh_icon2 {
    background-position: -137px -5px;
}

.bg_lazy_loaded .trbh_icon3 {
    background-position: -71px -5px;
}

.trbh_list_icon {
    height: 70px;
    width: 70px;
    display: inline-block;
    margin-bottom: 10px;
}

.more_highlight_sec {
    position: relative;
    padding: 60px 0px;
    max-width: 1920px;
    width: 100%;
    margin: 0px auto;
    display: none;
}

.more_highlight_sec p {
    color: #ffffff
}

.trbh_mid_text_wrap {
    max-width: 800px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-bottom: 80px;
}

.more_highlight_sec .trbh_side_img_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    max-width: 1630px;
    width: 100%;
    margin: 0px -5% 0px auto;
}

.more_highlight_sec .trbh_side_img_sec.reverse {
    margin: 120px auto 0px -5%;
    padding-bottom: 0px;
}

.side_text_wrap {
    max-width: 430px;
    width: 100%;
}

.trublu_home_page .title_label {
    font: 20px/1.2 var(--primary-semibold);
    color: #1ABC9C !important;
    margin: 32px 0px 0px;
    text-transform: uppercase;
    display: block;
}

.trbh_text_wrap .title_label,
.scnr_container .title_label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scnr_container .title_label {
    justify-content: unset;
}

.trublu_home_page .title_label span {
    font: 10px / 1 var(--primary-semibold);
    color: #21be9f;
    /* background: #000; */
    border-radius: 8px;
    margin-left: 10px;
    /* padding: 6px 8.5px; */
    text-transform: capitalize;
    position: relative;
    left: -10px;
    top: -3px;

}

.side_text_wrap .intro_text {
    max-width: 70%;
}

.tab_img_sec {
    box-shadow: 0px 20px 40px 0px rgba(8, 33, 73, 0.1);
    border: 8px solid #000;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab_img_sec.overlay:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    /* background: #333; */
    opacity: 0.5;
    top: 0px;
    right: 0px;
    z-index: 1;
    border-radius: 22px;
}

.mouse_over {
    height: 20px;
    width: 18px;
    position: absolute;
    bottom: 8%;
    right: 22%;
    transition: all 1s linear;
    display: none;
}

.reverse .mouse_over {
    right: 17%;
    top: 5%;
    bottom: unset;
}

.popup_box {
    position: absolute;
    height: 195px;
    width: 320px;
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s linear;
    transform: scale(0.5) translate(200%, 100%);
    background: url(../images/trublu/images/trbh_home_trublu_out_of_stock_1_lazy.png);
}

.overlay .popup_box {
    transform: scale(1) translate(0%, 0%);
    opacity: 1;
}

.reverse .popup_box {
    width: 170px;
    height: 144px;
    top: 10%;
    right: 16.4%;
    transform: translate(0%, -32%);
    background: url(../images/trublu/images/trbh_home_trublu_vendor_manage_1_lazy.png);
}

.popup_box,
.bg_lazy_loaded .popup_box,
.bg_lazy_loaded .reverse .popup_box {
    background-size: cover;
}

.trbz_animate .mouse_over {
    transform: translate(40px, 40px);
}

.tab_img_sec.active .mouse_over {
    opacity: 0;
    animation: 0.5s click linear;
}

@keyframes click {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.trbh_mobile_store .trbh_text_wrap {
    position: absolute;
    /* top: 42%; */
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 14vh;
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.trbh_mobile_store .intro_text {
    max-width: 580px;
    width: 100%;
    margin: 0px auto 20px;
}

.trbh_fullwidth_video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    /* THIS is the key */
}

.mble_store_img_section {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    overflow: hidden;
    padding-bottom: 120px;
    margin: 60px auto 0px;
}

.mble_store_img_section ul {
    display: flex;
    align-items: baseline;
    position: absolute;
    height: 100%;
    left: 475px;
    top: 50px;
}

.mble_store_img_section ul li {
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    margin: 0px 30px;
    border: 8px solid #000;
    display: block;
    height: 585px;
    width: 288px;
    overflow: hidden;
    background: #fff;
}

.mble_store_img_section ul li picture {
    height: 100%;
    width: 100%;
}

.tab_img_sec picture,
.tab_img_sec img,
.tab_img_sec source,
.mble_store_img_section picture,
.mble_store_img_section img,
.mble_store_img_section source {
    border-radius: 22px;
}

.mble_store_img_section ul:last-child {
    left: 2215px;
}

.mble_store_img_section.trbz_animated ul {
    left: 0px;
    animation: rotation 30s linear infinite reverse;
}

.mble_store_img_section.trbz_animated ul:last-child {
    left: 1820px;
}

@keyframes rotation {
    0% {
        transform: translateX(-100%)
    }

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

.door_container {
    max-width: 380px;
    width: 100%;
    background: #000;
    height: 800px;
    position: relative;
    left: 0px;
}

.door_container:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 101%;
    background: #f5f5f5;
    transition: all 0.3s linear;
    transform-origin: 0% 100%;
    z-index: 1;
}

.door_container.active:before {
    transform: perspective(600px) scaleZ(0.5) rotateY(35deg);
}

.mble_store_img_section.trbz_animated .door_container:before {
    transform: perspective(600px) scaleZ(0.5) rotateY(35deg);
}

.door_container:after {
    content: "";
    position: absolute;
    right: -128px;
    bottom: -10px;
    height: 128px;
    width: 256px;
    background: #f5f5f5;
    transform-origin: 64% 66%;
    transform: rotate(-45deg);
}

.trbh_mobile_store_link {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 40px 0px 60px;
}

.bg_lazy_loaded .app_store {
    background-position: -489px -1px;
}

.bg_lazy_loaded .play_store {
    background-position: -279px -1px;
}

.app_link {
    height: 57px;
    width: 190px;
    display: inline-block;
    margin: 0px 15px;
}

.dark_section {
    position: relative;
    padding-top: 0px;

    background: url("../images/home/overlay_banner.png") repeat,
        /* Overlay PNG (repeated) */
        #003e81;
    /* Solid background color */
    display: none;
}

.trbhtime_is_money {
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    background: #e57627;
    padding: 80px 0px;
    border-radius: 24px;
    text-align: center;
    color: #fff;
}

.dark_bg {
    background: #0b0b0b;
    color: #fff;
}

.trbhtime_is_money p {
    max-width: 900px;
    width: 100%;
    margin: 0px auto;
}

.light_clr {
    color: #b4b4b4;
}

.ecommerce_sec {
    color: #fff;
    /* padding-top: 120px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1680px;
    width: 100%;
    margin: 0px auto;
}

.ecommerce_sec p {
    color: #ffffff;
}

.ecommerce_sec .intro_text {
    max-width: 750px;
    width: 100%;
    margin: 0px auto 15px;
}

.trbh_mac_img {
    position: relative;
    /* margin-top: 40px; */
    padding-bottom: 20px;
}

.trbh_mac_img picture {
    position: relative;
    display: block;
    transform-origin: 50% 100%;
}


/* .trbh_mac_img:after {
    content: "";
    position: absolute;
    left: 0;
    top: 98.6%;
    width: 100%;
    height: 40px;
    z-index: 2;
    background: url(../images/trublu/images/trbh_home_trublu_online_store_stripe_lazy.png);
} */

.n_webp .bg_lazy_loaded .trbh_mac_img:after {
    background: url(../images/trublu/images/trbh_home_trublu_online_store_stripe_2x.png);
}

.trbh_mac_img:after,
.s_webp .bg_lazy_loaded .trbh_mac_img:after,
.n_webp .bg_lazy_loaded .trbh_mac_img:after {
    background-size: 1189px auto;
    background-repeat: no-repeat;
}

.trbh_mac_img picture:after,
.trbh_mac_img picture:before {
    content: "";
    position: absolute;
    right: -12%;
    top: 28%;
    height: 300px;
    width: 300px;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.trbh_mac_img picture:after {
    transition: all 0.3s ease;
}

.trbh_mac_img picture:before {
    right: unset;
    top: 38%;
    left: -10%;
}

.trbh_mac_img picture:after,
.trbh_mac_img picture:before {
    transition: all .3s ease;
}

.trbh_mac_img picture:after,
.trbh_mac_img picture:after {
    transform: scale(0.5) translate(-100%, 25%);
    opacity: 0;
}

.trbh_mac_img picture:before,
.trbh_mac_img picture:before {
    transform: scale(0.5) translate(100%, 25%);
    opacity: 0;
}

.tab_img_sec.overlay .popup_box,
.trbh_mac_img picture.active1:after,
.trbh_mac_img picture.active2:before {
    transform: scale(1) translate(0%, 0%);
    opacity: 1;
}

.trbh_mac_img picture:after {
    background: url(../images/home/acustone_ecommerce_2.jpg);
    width: 35%;
}

.trbh_mac_img picture:before {
    background: url(../images/home/acustone_ecommerce_3.jpg);
    width: 35%;
    height: 44%;
}

.trbh_mac_img picture:after,
.trbh_mac_img picture:before,
.bg_lazy_loaded .trbh_mac_img picture:after,
.bg_lazy_loaded .trbh_mac_img picture:before {
    background-size: cover;
}

.report_section {
    position: relative;
    padding: 160px 0px 120px;
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    background-color: #f7f7f7;
}

.report_sec_bg {
    position: absolute;
    right: -12%;
    top: 160px;
    height: calc(100% - 288px);
    width: 55%;
    z-index: 0;
    background: url(../images/home/report1.png);
}

.n_webp .bg_lazy_loaded .report_sec_bg {
    background: url(../images/trublu/images/trbh_home_trublu_reports_bg_2x.jpg);
}

.report_sec_bg,
.s_webp .bg_lazy_loaded .report_sec_bg,
.n_webp .bg_lazy_loaded .report_sec_bg {
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
}

.report_inner_container {
    max-width: 1200px;
    width: 100%;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.report_text_wrap {
    max-width: 520px;
    width: 100%;
    padding: 60px 0px 20px;
}

.report_img_section {
    display: flex;
    flex-wrap: wrap;
    margin: 0px 0px 0px -20px;
}

.report_img_section .report_img {
    box-shadow: 0px 14px 30px 0px rgba(38, 52, 73, 0.14);
    margin: 20px;
    border-radius: 12px;
    display: flex;
}

.trbh_bnr_img_sec picture,
.trbh_bnr_img_sec img,
.trbh_bnr_img_sec source,
.report_img_section .report_img img {
    border-radius: 12px;
    margin-top: -14px;
}

.side_text_wrap p,
.report_img_section .report_img:last-child {
    margin-bottom: 0px;
}

.trbz_animated.box_anim1 {
    -webkit-animation: slide-up 0.4s ease-in-out;
    animation: slide-up 0.4s ease-in-out;
}

.trbz_animated.box_anim2 {
    -webkit-animation: slide-up 0.6s ease-in-out;
    animation: slide-up 0.6s ease-in-out;
}

.trbz_animated.box_anim3 {
    -webkit-animation: slide-up 0.8s ease-in-out;
    animation: slide-up 0.8s ease-in-out;
}

.trbz_animated.box_anim4 {
    -webkit-animation: slide-up 1s ease-in-out;
    animation: slide-up 1s ease-in-out;
}

.trbz_animated.box_anim5 {
    -webkit-animation: slide-up 1.2s ease-in-out;
    animation: slide-up 0.8s ease-in-out;
}

@-webkit-keyframes slide-up {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slide-up {
    0% {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

.btm_cta_sec {
    position: relative;
    background: #161717;
    color: #fff;
    padding: 120px 0px;
    z-index: 4;
}

.btm_inr_container {
    max-width: 1000px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

.btm_cta_sec p {
    color: #c1c1c1;
    margin-bottom: 40px;
}

.btm_cta_sec p.btm_description {
    margin: 90px auto 0px;
    font-size: 14px;
    max-width: 900px;
    color: #c1c1c1;
}

.exp_sec_container {
    position: relative;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
}

.exp_sec {
    position: relative;
    background: linear-gradient(to right, #000 50%, #fff 50%, #fff 100%);
    z-index: 0;
}

.exp_sec.top_fold.frst_container,
.exp_sec.second_fold.second_container {
    max-width: 100%;
    width: 100%;
    transition: all 0.5s ease;
    margin: 0px auto;
}

.reverse .side_text_wrap .intro_text,
.exp_sec.top_fold.frst_container.active,
.exp_sec.second_fold.second_container.active {
    max-width: 100%;
}

.fixed_section {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    width: 100%;
}

.fixed_section.fixed {
    position: fixed;
    z-index: 1;
    opacity: 1;
}

.fixed_section.before {
    opacity: 1;
    z-index: 2;
    bottom: 0px;
    top: unset;
}

.exp_sec.second_fold {
    z-index: 2;
    background: linear-gradient(to left, #000 50%, #fff 50%, #fff 100%);
}

.exp_sec.second_fold.fixed {
    z-index: 3;
}

.trbh_experience_sec {
    max-width: 100%;
    width: 100%;
    padding: 0px;
    position: relative;
    background: linear-gradient(to right, #000 50%, #fff 50%, #fff 100%);
}

.trbh_experience_sec:before {
    content: "";
    position: absolute;
    background: linear-gradient(to left, #000 50%, #fff 50%, #fff 100%);
    height: 50%;
    width: 100%;
    bottom: 0px;
    left: 0px;
}

.trbh_exp_inr_container {
    max-width: 1440px;
    width: 100%;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.exp_list_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.exp_list_container li {
    max-width: 50%;
    width: 100%;
    padding: 120px 0px;
    min-height: 540px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.exp_list_container li h3 {
    font: 36px/1.1 var(--primary-bold);
    margin-bottom: 20px;
    max-width: 350px;
    letter-spacing: 0;
}

.exp_list_container li p {
    color: #333333;
    margin-bottom: 0px;
}

.exp_list_container li h2 {
    max-width: 350px;
    width: 100%;
    margin: 0px auto;
}

.exp_list_container li div {
    max-width: 460px;
    width: 100%;
    margin: 0px auto;
}

.exp_list_container li h2,
.exp_list_container li h2 span {
    font: 56px/1.07 var(--primary-bold);
    color: #fff;
}

.i18n-ta-in .trublu_home_page h2,
.i18n-ta-in .exp_list_container li h2,
.i18n-ta-in .exp_list_container li h2 span {
    font-size: 46px;
}

.exp_list_container li h2 span {
    color: #e57627;
}

.trublu_home_page .trbhtime_is_money .title_label,
.top_fold .exp_list_container li:first-child,
.top_fold .exp_list_container li:first-child p,
.second_fold .exp_list_container li:last-child p,
.second_fold .exp_list_container li:last-child,
.trublu_home_page .trbh_side_text_wrap .title_label {
    color: #fff;
}

.trublu_home_page picture.mobile_img {
    display: none;
}

/* .scnr_anim_sec { */
/* position: relative; */
/* background: #003e81; */
/* background: url(../images/home/trublu_banner_2.jpg); */
/* } */


.scnr_anim_sec {
    position: relative;

    /* Multiple backgrounds: top → bottom */
    background:
        url("../images/home/overlay_banner.png") repeat,
        /* Overlay PNG (repeated) */
        #003e81;
    /* Solid background color */
}

.trbh_side_text_wrap p {
    font-size: 16px;
    margin-left: 55px;
    /* aligns text under heading text, not icon */
    margin-bottom: 22px;
    color: #e6f0ff;
    line-height: 1.6;
}

/* .trbh_side_text_wrap h3 {

    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
} */

/* .trbh_side_text_wrap h3 i {
    

    min-width: 22px;
    font-size: 18px;
    color: #1ABC9C;

} */

.trbh_side_text_wrap h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
}

.trbh_side_text_wrap h3 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.trbh_side_text_wrap p {
    margin-left: 45px;
    /* aligns text under heading */
    margin-bottom: 22px;
}



.scnr_anim_sec:after {
    display: none;
    content: "";
    position: absolute;
    background: #1a1a1a;
    width: 100%;
    height: 120px;
    z-index: 0;
    bottom: 0px;
}

.s_webp .bg_lazy_loaded .scnr_outer_container_bg {
    background: url(../images/home/shoe_store.jpg);
    background-position-x: center;

}

.n_webp .bg_lazy_loaded .scnr_outer_container_bg {
    background: url(../images/trublu/images/trbh_home_trublu_mobile_scan_bg_2x.jpg);
}

.scnr_outer_container_bg,
.s_webp .bg_lazy_loaded .scnr_outer_container_bg,
.n_webp .bg_lazy_loaded .scnr_outer_container_bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.scnr_outer_container {
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding: 120px 0px;
}

.scnr_container {
    position: relative;
    max-width: 1360px;
    width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.trbh_side_text_wrap {
    max-width: 570px;
    width: 100%;
    color: #fff;
}

/* Initial hidden state */
.trbh_side_text_wrap h3,
.trbh_side_text_wrap p,
.trbh_side_text_wrap .trbh_inr_link {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
}

/* When visible */
.trbh_side_text_wrap .animate {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger effect */
.trbh_side_text_wrap h3.animate {
    transition-delay: 0.1s;
    margin-bottom: 0px;
}

.trbh_side_text_wrap p.animate {
    transition-delay: 0.2s;
}

.trbh_side_text_wrap .trbh_inr_link.animate {
    transition-delay: 0.3s;
}


.trbh_side_text_wrap .trbh_mobile_store_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 395px;
    width: 100%;
    margin-bottom: 0px;
}

.i18n-en-ae .trbh_side_text_wrap .trbh_mobile_store_link,
.i18n-ar-ae .trbh_side_text_wrap .trbh_mobile_store_link {
    display: none;
}

.trbh_side_text_wrap .app_link {
    margin: 0px;
}

.scnr_outer_container_bg {
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    left: 50%;
    top: 0px;
    max-width: 925px;
    background: url(../images/home/shoe_store.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position-x: center;

}

.scnr_anim {
    position: relative;
    max-width: 50%;
    width: 100%;
}

.scnr_scrn {
    border: 5px solid #000;
    border-radius: 42px;
    display: inline-flex;
}

.scanner_section {
    display: inline-flex;
    /*margin: auto;*/
    margin-top: 20px;
    position: relative;
    transform: translate(-286.5px, 0px);
}

.scanner_inners_sec {
    position: relative;
    width: 297px;
    height: 623px;
    border: 10px solid #000;
    border-radius: 30px;
    transition: all 1s linear;
    background-color: #000;
}

.scanner_inners_sec.freeze {
    position: absolute;
    z-index: 0;
    opacity: 0;
}

.scanner_inners_sec.freeze:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: #333;
    z-index: 2;
    opacity: 0.5;
    border-radius: 20px;
    display: none;
}

.sec_1 {
    background: #000 url(../images/trublu/images/trbh-home-trublu-check-out-1-lazy.html);
}

.sec_2.active:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50%;
    height: 603px;
    z-index: 0;
    border-right: 5px solid #fff;
    transition: all 1s linear;
    animation: scanning 3s ease-in-out;
    border-radius: 20px 0px 0px 20px;
}

@keyframes scanning {
    0% {
        width: 0%;
    }

    35% {
        width: 100%;
    }

    75% {
        width: 0%;
    }

    100% {
        width: 50%;
    }
}

.bg_lazy_loaded .sec_1,
.bg_lazy_loaded .sec_2,
.bg_lazy_loaded .sec_3 {
    background-repeat: no-repeat;
}

.sec_3:after {
    content: "";
    position: absolute;
    left: 0px;
    height: 34px;
    width: 277px;
    bottom: 313px;
    transition: all 2s ease;
    opacity: 0;
    background: url(../images/trublu/images/trbh-home-trublu-check-out-4-lazy.png);
}

.sec_3.active:after {
    bottom: 343px;
    opacity: 1;
}


/* anim new */

.txt_anim,
.bx_anim {
    transition: all 0.3s linear;
}

.zn_animate .txt_anim,
.txt_anm.active .txt_anim {
    opacity: 0;
    transform: perspective(100px) scaleZ(0.5) rotateX(10deg) translateY(-30px);
}

.zn_animate .bx_anim {
    opacity: 0;
    transform: perspective(100px) scaleZ(0.5) rotateX(-10deg) translateY(30px);
}

.txt_anim1 {
    transition-delay: 0s;
}

.txt_anim2 {
    transition-delay: 0.3s;
}

.txt_anim3 {
    transition-delay: 0.6s;
}

.txt_anim4 {
    transition-delay: 0.9s;
}


/* anim new */

@keyframes movebtnone {
    0% {
        transform: translateX(57.25%);
    }

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

.contact_fixed {
    position: fixed;
    top: 450px;
    right: -58px;
    z-index: 5;
    cursor: pointer
}

.contanct_but_fix {
    display: inline-block;
    font: 16px/1.6px var(--primary-semibold);
    text-decoration: none;
    background: #000;
    padding: 22px;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 0 0 43px 0 rgba(69, 98, 127, 0.35);
    transform: rotate(270deg);
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cntct_box {
    position: fixed;
    right: -7px;
    top: 150px;
    max-width: 215px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: all 0.3s linear;
    opacity: 0;
    z-index: 5;
}

.cntct_box.fixed {
    transform: translateX(0%);
    opacity: 1;
}

.cntct_box p.cntct_heading {
    font: 20px/1.4 var(--primary-semibold);
    margin-bottom: 10px;
}

.cntct_box p.cntct_desc {
    font: 16px/1.4 var(--primary-regular);
    margin-bottom: 10px;
}

.cntct_box a.cntct_link {
    font: 16px/1.2 var(--primary-bold);
    text-decoration: underline;
    color: #000;
}

.n_webp .bg_lazy_loaded .cntct_close {
    background-image: url('../images/trublu/images/trublu-signup-icons.png');
}

.s_webp .bg_lazy_loaded .cntct_close,
.n_webp .bg_lazy_loaded .cntct_close {
    background-repeat: no-repeat;
    background-position: -421px -82px;
    background-size: 611px auto;
}

.cntct_close {
    position: absolute;
    content: "";
    top: 12px;
    right: 17px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.brand_sec {
    position: relative;
    padding-top: 120px;
    text-align: center;
    max-width: 1450px;
    width: 100%;
    margin: 0px auto;
}

.brand_sec .brand_title {
    display: block;
    font: 26px/1.2 var(--primary-regular);
    margin-bottom: 20px;
}

.brand_outer {
    position: relative;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.brand_outer:after,
.brand_outer:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 300px;
    /* background: linear-gradient(to left, #1a1a1a 0%, transparent 100%); */
    right: 0;
    z-index: 1;
}

.brand_outer:after {
    left: 0;
    right: unset;
    transform: rotate(180deg);
}

.brand_inr {
    /* display: flex; */
    margin: 0 auto;
}

.brand_list {
    background-color: #fff;
    padding: 15px 23px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.bl {
    display: inline-block;
    margin: 0px 35px;
    min-height: 88px;
    border-radius: 15px;
}

.n_webp .bg_lazy_loaded .bl {
    background: url(../images/trublu/images/trbh-home-trublu-customers-logo-sprite.png);
}

.s_webp .bg_lazy_loaded .bl {
    background: url(../images/client-logo.png);
}

.n_webp .bg_lazy_loaded .bl,
.s_webp .bg_lazy_loaded .bl {
    background-size: 2050px auto;
}

.s_webp .bg_lazy_loaded .bl1,
.n_webp .bg_lazy_loaded .bl1 {
    background-position: -45px -19px;
}

.bl1 {
    background-position: -45px -19px;
    width: 112px;
}

.s_webp .bg_lazy_loaded .bl2,
.n_webp .bg_lazy_loaded .bl2 {
    background-position: -227px -19px;
}

.bl2 {
    background-position: -227px -19px;
    width: 120px;
}

.s_webp .bg_lazy_loaded .bl3,
.n_webp .bg_lazy_loaded .bl3 {
    background-position: -417px -19px;
}

.bl3 {
    background-position: -417px -19px;
    width: 160px;
}

.s_webp .bg_lazy_loaded .bl4,
.n_webp .bg_lazy_loaded .bl4 {
    background-position: -648px -19px;
}

.bl4 {
    background-position: -648px -19px;
    width: 119px;
}

.s_webp .bg_lazy_loaded .bl5,
.n_webp .bg_lazy_loaded .bl5 {
    background-position: -834px -19px;
}

.bl5 {
    background-position: -834px -19px;
    width: 102px;
}

.s_webp .bg_lazy_loaded .bl6,
.n_webp .bg_lazy_loaded .bl6 {
    background-position: -1004px -19px;
}

.bl6 {
    background-position: -1004px -19px;
    width: 93px;
}

.s_webp .bg_lazy_loaded .bl7,
.n_webp .bg_lazy_loaded .bl7 {
    background-position: -1165px -19px;
}

.bl7 {
    background-position: -1165px -19px;
    width: 61px;
}

.s_webp .bg_lazy_loaded .bl8,
.n_webp .bg_lazy_loaded .bl8 {
    background-position: -1294px -19px;
}

.bl8 {
    background-position: -1294px -19px;
    width: 99px;
}

.s_webp .bg_lazy_loaded .bl9,
.n_webp .bg_lazy_loaded .bl9 {
    background-position: -1461px -19px;
}

.bl9 {
    background-position: -1461px -19px;
    width: 76px;
}

.s_webp .bg_lazy_loaded .bl10,
.n_webp .bg_lazy_loaded .bl10 {
    background-position: -1606px -19px;
}

.bl10 {
    background-position: -1606px -19px;
    width: 116px;
}

.s_webp .bg_lazy_loaded .bl11,
.n_webp .bg_lazy_loaded .bl11 {
    background-position: -1791px -19px;
}

.bl11 {
    background-position: -1791px -19px;
    width: 100px;
}

.s_webp .bg_lazy_loaded .bl12,
.n_webp .bg_lazy_loaded .bl12 {
    background-position: -1960px -19px;
}

.bl12 {
    background-position: -1960px -19px;
    width: 44px;
}

@media (max-width: 768px) {
    .retail_inr .slick-arrow {
        top: 0px !important;
        height: 18px !important;
        width: 24px !important;
    }

    .retailer_section .slick-list {
        transform-origin: top center;
        align-items: flex-start;
    }
}

.retailer_section {
    position: relative;
    padding: 120px 0px;
}

.slick-prev {
    background: url(../images/left-arrow.png);
    width: 30px !important;
    height: 16px !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.slick-next {
    background: url(../images/left-arrow.png);
    width: 30px !important;
    height: 16px !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.i18n-en-us .retailer_section,
.i18n-en-ae .retailer_section {
    padding-bottom: 120px;
}

.retailer_section .report_text_wrap {
    max-width: 620px;
    padding-top: 0px;
}

.retail_inr {
    position: relative;
    max-width: 836px;
    width: 100%;
    margin: 0px auto;
}

.retail_slide_sec {
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 2;
}

.retail_slide {
    position: relative;
    display: flex;
    max-width: fit-content;
    width: 100%;
    height: fit-content;
    margin: 0px 15px;
}

.retail_slide:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0.75;
}

.retail_slide picture,
.retail_slide img {
    display: block;
    border-radius: 20px;
    max-width: -webkit-fill-available;
}


/* mobile responsive */

/* @media (max-width: 768px) {

    .retail_side_sec .slick-track {
        display: flex !important;
    }

    .retail_side_sec .retail_slide {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }

    .retail_side_sec .retail_slide picture,
    .retail_side_sec .retail_slide img {
        width: 100% !important;
        max-width: 100% !important;
        height: 220px;
        object-fit: cover;
    }

} */


/* bottom slider mobile */

@media (max-width: 768px) {

    .retail_slide {
        display: block !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .retail_slide img {
        width: 100% !important;
        height: 240px;
        object-fit: cover;
    }

    .trbh_fullwidth_video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    height: 30vh !important;
    /* THIS is the key */
}

.trbh_mobile_store .trbh_text_wrap {
    padding: 0;
}


}

.slick-current .rs_content h3 {
    margin-bottom: 0px;
}

.rs_content h3 {
    margin-bottom: 50px;
}

.rs_content {
    position: absolute;
    max-width: 100%;
    width: 100%;
    padding: 50px;
    left: 0px;
    bottom: 0px;
    box-sizing: border-box;
    z-index: 1;
    color: #fff;
    transition: all 0.3s linear;
    transform: translateY(97px);
}

.retail_inr .slick-slide.slick-active .rs_content {
    transform: translateY(0px);
}

.rs_content h3 {
    font-size: 32px;
    letter-spacing: 0px;
}

.rs_content p {
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(50px);
    transition-delay: 0.15s;
    transition: all 0.3s linear;
}

.retail_inr .slick-slide.slick-active .rs_content p {
    opacity: 1;
    transform: translateY(0px);
}

.slick-list,
.slick-track {
    display: flex;
}

.retail_inr .slick-list {
    overflow: visible;
    padding-top: 30px;
}

.retail_inr .slick-prev {
    left: unset;
    right: 10%;
}

.retail_inr .slick-next {
    right: 15px;
    transform: translate(0, -50%) rotateY(180deg);
}

.retail_inr .slick-slide {
    transition: all .3s linear;
    cursor: grap;
}

.retail_inr .slick-slide.slick-active {
    cursor: auto;
}

.retail_slide picture {
    position: relative;
}

.retail_slide picture:before,
.retail_slide picture:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    background: transparent;
    width: 100%;
    z-index: 0;
    opacity: 0.25;
    transition: all 0.3s linear;
    border-radius: 20px;
    transform-origin: top center;
}



.retail_slide picture:after {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(17, 17, 17, 0.4);
    z-index: 1;
    opacity: 1;
}

.retail_slide.slick-active picture:after,
.retail_slide.slick-active picture:before {
    opacity: 1;
    background: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.retail_inr .slick-arrow {
    top: -50px;
    height: 18px;
    width: 24px;
}

.retail_inr .slick-next:after,
.retail_inr .slick-next:before,
.retail_inr .slick-prev:after,
.retail_inr .slick-prev:before {
    display: none;
}

.testi_sec {
    position: relative;
    max-width: 100%;
    padding: 120px 0px;
    background: #f5f5f5;
}

.testi_sec_hdn {
    position: absolute;
    height: 100%;
    width: 0px;
    top: 35%;
    left: 0px;
}

.ztsr_testi_outer {
    background: #1f1f24;
    max-width: 1160px;
    width: 100%;
    margin: -14% auto 0px;
    padding: 80px 5%;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    transform-origin: top center;
}

.ztsr_testi_grp {
    position: relative;
    width: 89%;
}

.ztsr_testi_grp:after {
    position: absolute;
    content: "";
    top: 0;
    right: -13%;
    width: 127px;
    height: 95px;
}

.n_webp .bg_lazy_loaded .ztst_spkr_lft,
.n_webp .bg_lazy_loaded .ztsr_testi_icon {
    background-image: url('../images/trublu/images/trbh_home_trublu_customer_testi_sprite_2x.png');
}

.s_webp .bg_lazy_loaded .ztst_spkr_lft,
.n_webp .bg_lazy_loaded .ztst_spkr_lft,
.s_webp .bg_lazy_loaded .ztsr_testi_icon,
.n_webp .bg_lazy_loaded .ztsr_testi_icon {
    background-repeat: no-repeat;
    background-size: 537.5px auto;
}

.ztsr_testi_icon {
    display: inline-block;
    margin-bottom: 20px;
}

.s_webp .bg_lazy_loaded .ti1,
.n_webp .bg_lazy_loaded .ti1 {
    background-position: -19px -14px;
}

.ti1 {
    background-position: -19px -14px;
    width: 116px;
    height: 35.5px;
}

.s_webp .bg_lazy_loaded .ti3,
.n_webp .bg_lazy_loaded .ti3 {
    background-position: -162.5px -27px;
}

.ti3 {
    background-position: -162.5px -27px;
    width: 99.5px;
    height: 16.5px;
}

.s_webp .bg_lazy_loaded .ti2,
.n_webp .bg_lazy_loaded .ti2 {
    background-position: -295px -20px;
}

.ti2 {
    background-position: -295px -20px;
    width: 90px;
    height: 26.5px;
}

.s_webp .bg_lazy_loaded .ti4,
.n_webp .bg_lazy_loaded .ti4 {
    background-position: -416px -14px;
}

.ti4 {
    background-position: -416px -14px;
    width: 59px;
    height: 35.5px;
}

.ztsr_testi_grp .ztsr_testi_desc {
    font: 30px/1.4 var(--primary-semibold);
    width: 92%;
    color: #fff;
}

.ztsr_spkrgrp {
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 20px;
}

.ztst_spkr_lft {
    width: 115.5px;
    height: 115px;
    display: inline-block;
    margin-right: 25px;
}

.s_webp .bg_lazy_loaded .sp1,
.n_webp .bg_lazy_loaded .sp1 {
    background-position: -15.5px -68px;
}

.s_webp .bg_lazy_loaded .sp2,
.n_webp .bg_lazy_loaded .sp2 {
    background-position: -285.5px -68px;
}

.s_webp .bg_lazy_loaded .sp3,
.n_webp .bg_lazy_loaded .sp3 {
    background-position: -150.5px -68px;
}

.sp4 {
    display: none;
}

.ztsr_spkr_rht {
    display: flex;
    flex-direction: column;
}

.ztsr_testi_grp .ztsr_name {
    font: 20px/1.1 var(--primary-bold);
    padding-bottom: 10px;
    display: inline-block;
}

.ztsr_testi_grp .ztsr_desig {
    font: 20px/1.1 var(--primary-regular);
    color: #c3c5c8;
}

.slick-dots li {
    margin: 0 5px;
    background: #c3c5c8;
    width: 10px;
    height: 10px;
    border: 1px solid #c3c5c8;
}

.slick-dots li.slick-active {
    background: #003e81;
    width: 10px;
    height: 10px;
    border: 1px solid #003e81;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    position: absolute;
    text-align: right;
    margin: 0px;
}

.testi_sec h2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0px auto 50px;
}


/* video testi */

.vid_testi_sec {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0px auto;
    background: #fff;
    box-shadow: 0px 0px 80px 0px rgba(64, 64, 64, 0.1);
    border-radius: 30px;
    padding: 50px;
    box-sizing: border-box;
}

.vid_testi_inr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
}

.vid_testi_hdn {
    position: absolute;
    height: 100%;
    width: 0px;
    top: -10%;
    left: 0px;
}

.vid_wrapper,
.vid_wrapper .thump_vid {
    position: relative;
    border-radius: 30px;
    cursor: pointer;
}

.vid_wrapper .thump_vid {
    display: block;
}

.vid_wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.88));
    border-radius: 30px;
}

.vid_playbutton {
    width: 93px;
    height: 92px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    z-index: 4;
    background: no-repeat 0 -1px;
    transition: all ease 0.4s;
}

.vid_wrapper:hover .vid_playbutton {
    transform: translate(-50%, -50%) scale(1.15);
}

.vid_spkr {
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 3;
}

.vid_spkr .vid_spkr_name {
    font: 18px/1 var(--primary-bold);
    padding-bottom: 10px;
    display: block;
    color: #fff;
}

.vid_spkr .vid_spkr_desig {
    font: 15px/1 var(--primary-regular);
    color: #b0b0b0;
    display: block;
}

.vid_content_wrap {
    max-width: 550px;
    width: 100%;
}

.vid_content_wrap h3 {
    font-size: 36px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.i18n-ta-in .vid_content_wrap h3 {
    font-size: 34px;
}

.vid_content_wrap p {
    margin-bottom: 30px;
}

.vid_content_wrap .customer_link {
    font: 16px/1.2 var(--primary-bold);
    position: relative;
    display: inline-block;
    padding: 20px 35px;
    border-radius: 40px;
    color: #fff;
    background: #000;
}


/* video testi */


/* inr link */

.trublu_home_page a.trbh_inr_link {
    position: relative;
    border-radius: 35px;
    font: 16px/1.2 var(--primary-semibold);
    align-items: center;
    background: #ffffff;
    display: inline-flex;
    color: #003e81;
    padding: 15px 20px 15px 20px;
    margin-top: 25px;
}

.trublu_home_page a.trbh_inr_dk_link {
    color: #000;
    background: #fff;
}

.trublu_home_page a.trbh_inr_link:before,
.trublu_home_page a.trbh_inr_link:after {
    /* content: ""; */
    position: absolute;
}

.trublu_home_page a.trbh_inr_link:after {
    right: 8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
}

.trublu_home_page a.trbh_inr_dk_link:after {
    background: #000;
}

.trublu_home_page a.trbh_inr_link:before {
    right: 14px;
    height: 18px;
    width: 24px;
    z-index: 1;
    transition: all 0.3s linear;
}

.trublu_home_page a.trbh_inr_link:hover:before {
    transform: rotate(-45deg);
}

.bg_lazy_loaded a.trbh_inr_dk_link:before {
    background-position: -281px -81px;
}


/* inr link */

@media(max-width: 1920px) {
    .scnr_outer_container_bg {
        max-width: unset;
    }
}

@media(max-width: 1560px) {
    .trublu_home_page h1 {
        font-size: 78px;
    }

    .i18n-ta-in .trublu_home_page h1 {
        font-size: 56px;
    }

    .trbh_inr_sec {
        max-width: 1300px;
    }

    .trbh_banner_section .trbh_text_wrap {
        max-width: 1030px;
    }

    .tab_img_sec {
        max-width: calc(100% - 579px);
    }

    .popup_box {
        height: 30%;
        width: 35%;
        border-radius: 4px;
    }

    .reverse .popup_box {
        width: 18%;
        height: 21%;
    }

    .scnr_container {
        max-width: 1200px;
    }

    .trbh_side_text_wrap {
        max-width: 30%;
    }

    .trbh_side_text_wrap .app_link {
        margin-bottom: 20px;
    }
}

@media(max-width: 1380px) {
    .trublu_home_page h1 {
        font-size: 66px;
    }

    .i18n-ta-in .trublu_home_page h1 {
        font-size: 46px;
    }

    .trbh_inr_sec,
    .trbh_scnd_text_wrap {
        max-width: 95%;
    }

    .trbh_banner_section .trbh_text_wrap {
        max-width: 720px;
    }

    .i18n-ta-in .trbh_banner_section .trbh_text_wrap {
        max-width: 840px;
    }

    .more_highlight_sec .trbh_side_img_sec {
        margin: 0px -2.5% 0px auto;
    }

    .more_highlight_sec .trbh_side_img_sec.reverse {
        margin: 0px auto 0px -2.5%;
    }

    /* video testi */
    .vid_testi_sec {
        max-width: 90%;
        padding: 40px;
    }

    .vid_wrapper {
        max-width: 45%;
    }

    .vid_content_wrap {
        max-width: 50%;
    }

    /* video testi */
}

@media(max-width: 1280px) {
    .trublu_home_page h1 {
        font-size: 54px;
    }

    .trublu_home_page h1>span {
        font-size: 54px;
    }

    .i18n-ta-in .trublu_home_page h1 {
        font-size: 40px;
    }

    .i18n-ta-in .trbh_banner_section .trbh_text_wrap {
        max-width: 870px;
    }

    .trublu_home_page .trbh_scnd_text_wrap h2,
    .trublu_home_page .intro_text,
    .trublu_home_page h3 {
        font-size: 42px;
    }

    .i18n-ta-in .trublu_home_page .trbh_scnd_text_wrap h2,
    .i18n-ta-in .trublu_home_page .intro_text,
    .i18n-ta-in .trublu_home_page h3 {
        font-size: 32px;
    }

    .trbh_list_box h3,
    .exp_list_container li h3,
    .rs_content h3 {
        font-size: 30px;
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 28px;
    }

    .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span {
        font-size: 50px;
    }

    .i18n-ta-in .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span {
        font-size: 40px;
    }

    .trbh_bnr_img_sec,
    .s_webp .bg_lazy_loaded .trbh_bnr_img_sec,
    .n_webp .bg_lazy_loaded .trbh_bnr_img_sec {
        background: unset;
        border: 0px;
    }

    .trbh_bnr_img_sec {
        max-width: 95%;
        padding: 0px;
    }

    .trublu_home_page .trbh_scnd_text_wrap h2 {
        padding-left: 30px;
        box-sizing: border-box;
    }

    .trbhtime_is_money,
    .trbh_mac_img {
        max-width: 95%;
    }

    .trbh_list_box {
        padding: 30px;
    }

    .trbh_mac_img picture:after,
    .trbh_mac_img picture:before {
        display: none;
    }

    .s_webp .bg_lazy_loaded .trbh_mac_img:after,
    .n_webp .bg_lazy_loaded .trbh_mac_img:after {
        background-size: cover;
    }

    .report_inner_container,
    .trbh_exp_inr_container {
        max-width: 95%;
    }

    .report_text_wrap {
        max-width: 520px;
        width: 100%;
        padding: 60px 0px 20px;
    }

    .report_img_section {
        justify-content: space-between;
        margin: 0px;
    }

    .report_img_section .report_img {
        max-width: calc(50% - 15px);
        width: 100%;
        margin: 0px 0px 30px;
        display: flex;
    }

    .report_img_section .report_img:last-child {
        max-width: 100%;
    }

    .report_img_section .report_img img {
        width: 100%;
    }

    .report_sec_bg {
        display: none;
    }

    .exp_list_container {
        max-width: 100%;
        justify-content: center;
    }

    .exp_list_container li {
        max-width: 48%;
        padding: 30px;
    }

    .scnr_container {
        max-width: 95%;
    }

    .trbz_anim.z_box_anim1,
    .trbz_anim.z_box_anim2,
    .trbz_anim.z_box_anim3,
    .box_animation .z_box_anim1,
    .box_animation .z_box_anim2,
    .box_animation.active .z_box_anim1,
    .box_animation.active .z_box_anim2 {
        transform: translate(0);
        opacity: 1;
        animation: unset;
    }

    .trbh_bnr_img_sec video {
        border-radius: 18px;
        border: 8px solid rgba(255, 255, 255, 0.5);
        /* padding:36px 50px 20px 40px; */
        padding: 0px;
    }

    .brand_sec {
        max-width: 90%;
    }

    /* video testi */
    .vid_content_wrap h3 {
        font-size: 32px;
    }

    .i18n-ta-in .vid_content_wrap h3 {
        font-size: 28px;
    }

    /* video testi */
}

/* Remove padding when video plays (mobile only) */
@media (max-width:768px) {

    .trbh_bnr_img_sec.video-playing {
        padding: 0 !important;
    }

    .trbh_bnr_img_sec.video-playing video {
        margin: 0 !important;
    }

}

@media(max-width: 1180px) {
    .trublu_home_page h1 {
        font-size: 50px;
    }

    .i18n-ta-in .trublu_home_page h1 {
        font-size: 36px;
    }

    .trublu_home_page .trbh_scnd_text_wrap h2,
    .trublu_home_page .intro_text,
    .trublu_home_page h3 {
        font-size: 38px;
    }

    .i18n-ta-in .trublu_home_page .trbh_scnd_text_wrap h2,
    .i18n-ta-in .trublu_home_page .intro_text,
    .i18n-ta-in .trublu_home_page h3 {
        font-size: 28px;
    }

    .trbh_list_box h3,
    .exp_list_container li h3,
    .trublu_home_page .trbh_banner_section .intro_text,
    .rs_content h3,
    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 26px;
    }

    .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span {
        font-size: 46px;
    }

    .i18n-ta-in .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span {
        font-size: 36px;
    }

    .trublu_home_page p,
    .trublu_home_page li,
    .trublu_home_page a,
    .trublu_home_page span,
    .trublu_home_page .title_label {
        font-size: 18px;
    }

    .side_text_wrap {
        max-width: 40%;
    }

    .scnr_container .title_label {
        justify-content: center;
    }

    .tab_img_sec {
        max-width: calc(100% - 45%);
    }

    .s_webp .bg_lazy_loaded .trbh_mac_img:after,
    .n_webp .bg_lazy_loaded .trbh_mac_img:after {
        background-size: contain;
    }

    .report_img_section .report_img {
        margin: 15px 0px;
    }

    .i18n-ta-in .trbh_text_wrap,
    .trbh_text_wrap,
    .trbh_mobile_store .trbh_text_wrap,
    .trbh_mid_text_wrap,
    .report_text_wrap,
    .btm_inr_container {
        max-width: 90%;
    }

    .trbh_banner_section .trbh_text_wrap {
        max-width: 900px;
    }

    .trbh_banner_section p {
        max-width: 100%;
    }

    .trbh_text_wrap h1,
    .trbh_mobile_store .trbh_text_wrap .intro_text,
    .trbh_mid_text_wrap h2,
    .report_text_wrap .intro_text,
    .btm_inr_container .intro_text {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .mble_store_img_section ul {
        left: 325px;
        top: 45px;
    }

    .mble_store_img_section ul li {
        height: 505px;
        width: 255px;
        margin: 0px 15px;
    }

    .door_container {
        max-width: 250px;
        height: 725px;
    }

    .mble_store_img_section.trbz_animated ul:last-child {
        left: 1505px;
    }

    .mble_store_img_section ul:last-child {
        left: 1830px;
    }

    .trbh_experience_sec:after {
        display: none;
    }

    .scnr_container {
        max-width: 90%;
        flex-wrap: wrap;
    }

    .trbh_side_text_wrap,
    .scnr_anim {
        max-width: 100%;
        text-align: center;
    }

    .scnr_outer_container_bg {
        display: none;
    }

    .scanner_section {
        padding-top: 20px;
        transform: unset;
    }

    .scnr_anim_sec {
        margin-top: 0px;
        padding-bottom: 0px;
    }

    .scnr_outer_container {
        padding-bottom: 120px;
    }

    .exp_list_container li {
        max-width: 50%;
        padding: 0px;
    }

    .exp_list_container li div {
        max-width: 380px;
    }

    .trbh_side_text_wrap .trbh_mobile_store_link {
        margin: 40px auto 0px;
    }

    .brand_inr:last-child {
        display: none;
    }

    .brand_inr {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand_outer:after,
    .brand_outer:before {
        display: none;
    }

    .rs_content {
        padding: 40px;
        transform: translateY(87px);
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 26px;
    }

    /* video testi */
    .vid_content_wrap h3 {
        font-size: 28px;
    }

    .i18n-ta-in .vid_content_wrap h3 {
        font-size: 26px;
    }


}

@media(max-width: 992px) {
    .trublu_home_page h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .trublu_home_page h1>span {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .i18n-ta-in .trublu_home_page h1 {
        font-size: 32px;
    }

    .i18n-ta-in .trbh_banner_section .trbh_text_wrap {
        max-width: 90%;
    }

    .trublu_home_page .trbh_scnd_text_wrap h2,
    .trublu_home_page .intro_text,
    .trublu_home_page h3 {
        font-size: 34px;
    }

    .trbh_bnr_img_sec picture,
    .trbh_bnr_img_sec img,
    .trbh_bnr_img_sec source,
    .report_img_section .report_img img {
        border-radius: 6px;
    }

    .i18n-ta-in .trublu_home_page .trbh_scnd_text_wrap h2,
    .i18n-ta-in .trublu_home_page .intro_text,
    .i18n-ta-in .trublu_home_page h3 {
        font-size: 24px;
    }

    .trbh_list_box h3,
    .exp_list_container li h3,
    .rs_content h3,
    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 24px;
    }

    .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span {
        font-size: 34px;
    }

    .i18n-ta-in .trublu_home_page h2,
    .exp_list_container li h2,
    .exp_list_container li h2 span,
    .trublu_home_page h3 {
        font-size: 24px;
    }

    .trublu_home_page h3 {
        letter-spacing: -1px;
    }

    .brand_sec .brand_title {
        font-size: 22px;
    }

    .trbh_banner_section {
        padding: 50px 0px 60px;
    }

    .more_highlight_sec {
        padding: 120px 0px 60px;
    }

    .more_highlight_sec {
        padding: 60px 0px;
    }

    .trbh_inr_sec {
        max-width: 100%;
        border-radius: 0px;
        padding-bottom: 60px;
    }

    .trbh_inr_bg {
        border-radius: 0px;
    }

    .trbh_cta_sec {
        margin: 30px auto 40px;
    }

    .trublu_home_page .act-btn {
        padding: 15px 20px;
        margin: 0px 10px;
    }

    .trbh_scnd_text_wrap {
        max-width: 90%;
        padding-top: 60px;
        padding-bottom: 0px;
    }

    .trublu_home_page .trbh_scnd_text_wrap h2 {
        text-align: center;
        padding: 0px;
    }

    .trbh_list_box {
        max-width: 550px;
        margin: 0px 0px 20px;
    }

    .trbh_list_box:last-child {
        margin-bottom: 0px;
    }

    .trbh_list_container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trbh_mid_text_wrap {
        margin-bottom: 40px;
    }

    .more_highlight_sec .trbh_side_img_sec,
    .more_highlight_sec .trbh_side_img_sec.reverse {
        margin: 0px auto;
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .side_text_wrap {
        order: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .trublu_home_page .title_label {
        margin-bottom: 5px;
    }

    .side_text_wrap .intro_text {
        max-width: 100%;
    }

    .more_highlight_sec .trbh_side_img_sec,
    .mble_store_img_section {
        padding-bottom: 60px;
    }

    .mble_store_img_section {
        margin: 30px auto 0px;
    }

    .trbh_mobile_store_link {
        margin: 30px 0px 40px;
    }

    .tab_img_sec {
        order: 1;
        max-width: 100%;
    }

    .dark_section {
        padding: 0px;
    }

    .trbhtime_is_money {
        max-width: 100%;
        border-radius: 0px;
        padding: 60px 0px;
    }

    .scanner_section {
        padding-top: 20px;
    }

    .ecommerce_sec {
        padding-top: 60px;
    }

    .trbh_mac_img {
        max-width: 90%;
        margin-top: 20px;
    }

    .report_section {
        padding: 90px 0px 60px;
    }

    .report_img_section .report_img {
        margin: 0px 0px 30px;
    }

    .trbh_experience_sec {
        padding: 60px 0px 40px;
    }

    .report_inner_container,
    .trbh_exp_inr_container {
        max-width: 90%;
    }

    .exp_list_container li {
        margin: 0px 0px 20px;
        order: 1;
        min-height: unset;
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        max-width: 550px;
    }

    .btm_cta_sec {
        padding: 60px 0px;
    }

    .btm_cta_sec p {
        margin-bottom: 30px;
    }

    .exp_list_container {
        justify-content: center;
    }

    .exp_list_container li.heading {
        order: 0;
        text-align: center;
        padding: 0px;
        background: unset;
        padding-bottom: 20px;
    }

    .trbh_bnr_img_sec {
        max-width: 90%;
        margin-top: -40px;
    }

    .trbh_text_wrap h1,
    .trbh_mobile_store .trbh_text_wrap .intro_text,
    .trbh_mid_text_wrap h2,
    .report_text_wrap .intro_text,
    .btm_inr_container .intro_text {
        max-width: 100%;
    }

    .trbh_bnr_img_sec picture.desk_img {
        display: none;
    }

    .trublu_home_page picture.mobile_img {
        display: block;
    }

    .exp_sec.second_fold,
    .exp_sec.top_fold {
        background: unset;
    }

    .exp_list_container li h2 {
        color: #fff;
    }

    .exp_sec_container {
        background: #000;
        display: none;
        padding: 60px 0px;
    }

    .exp_list_container li div {
        max-width: 100%;
    }

    .exp_list_container li p,
    .exp_list_container li h3,
    .top_fold .exp_list_container li:first-child,
    .top_fold .exp_list_container li:first-child p,
    .second_fold .exp_list_container li:last-child p,
    .second_fold .exp_list_container li:last-child {
        color: #000;
    }

    .second_fold .exp_list_container li:last-child {
        margin-bottom: 0px;
    }

    .exp_inr_container {
        max-width: 90%;
        width: 100%;
        margin: 0px auto;
    }

    .exp_sec.top_fold.frst_container,
    .exp_sec.second_fold.second_container {
        max-width: 100%;
    }

    .trbh_bnr_vid {
        border-radius: 6px;
    }

    .scnr_outer_container {
        padding: 60px 0px;
    }

    .btm_cta_sec p.btm_description {
        margin: 60px auto 0px;
    }

    .trbh_bnr_img_sec video {
        border-radius: 9px;
        border: 4px solid rgba(255, 255, 255, 0.5);
    }

    .fixed_section,
    .fixed_section.fixed {
        display: none;
    }

    .brand_sec {
        padding-top: 60px;
    }

    .rs_content {
        padding: 30px;
        transform: translateY(77px);
    }

    .ztsr_testi_grp {
        max-width: 100%;
        width: 100%;
    }

    .ztsr_testi_grp .ztsr_name,
    .ztsr_testi_grp .ztsr_desig {
        font-size: 18px;
    }

    .ztsr_spkrgrp {
        padding-top: 10px;
    }

    .testi_sec h2 {
        margin-bottom: 30px;
    }

    .testi_sec {
        padding: 60px 0px;
    }

    .ztsr_testi_outer {
        max-width: 100%;
        padding: 40px 7.5%;
        margin: 0px auto;
    }

    .slick-dots {
        text-align: center;
        position: relative;
        margin: 10px 0px 0px;
    }

    .ztsr_testi_grp:after {
        transform: scale(0.5);
        right: 0%;
        transform-origin: top right;
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 24px;
    }

    .glow_effect {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, #88d3ff 20%, transparent 50%, transparent 100%);
    }

    .ge1 {
        display: none;
    }

    .ge2 {
        top: -250px;
        left: calc(50% - 250px);
    }

    .i18n-en-ae .retailer_section,
    .i18n-en-us .retailer_section {
        padding-bottom: 60px;
    }

    /* video testi */
    .vid_content_wrap h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .i18n-ta-in .vid_content_wrap h3 {
        font-size: 22px;
    }

    .vid_content_wrap p {
        margin-bottom: 25px;
    }

    .vid_testi_sec {
        padding: 30px;
    }

    .vid_playbutton {
        height: 46px;
        width: 46px;
        background-size: 46px auto;
    }

    .vid_testi_sec,
    .vid_wrapper:after,
    .vid_wrapper,
    .vid_wrapper .thump_vid {
        border-radius: 20px;
    }

    .vid_spkr {
        bottom: 25px;
        left: 35px;
    }

    /* video testi */
}

@media(max-width: 767px) {
    .trublu_home_page .trbh_banner_section .intro_text {
        letter-spacing: 0;
        font-size: 22px;
    }

    .trublu_home_page .title_label {
        font-size: 16px;
    }

    .app_link {
        margin: 0px 10px;
    }

    .tab_img_sec {
        border: 4px solid #000;
        border-radius: 20px;
    }

    .trbh_banner_section .trbh_text_wrap {
        max-width: 90%;
    }

    .tab_img_sec.overlay:after {
        border-radius: 16px;
    }

    .tab_img_sec picture,
    .tab_img_sec img,
    .tab_img_sec source {
        border-radius: 16px;
    }

    .trublu_home_page .act-btn {
        display: none;
    }

    .btm_inr_container .intro_text {
        margin-bottom: 0px;
    }

    .report_img_section .report_img {
        max-width: 100%;
        margin: 0px 0px 20px;
    }

    .door_container {
        max-width: 100px;
        height: 445px;
    }

    .mble_store_img_section.trbz_animated .door_container:before {
        transform: perspective(600px) scaleZ(0.5) rotateY(55deg);
    }

    .door_container:after {
        right: -45px;
        height: 50px;
        width: 100px;
    }

    .mble_store_img_section.trbz_animated ul:last-child {
        left: 1040px;
    }

    .mble_store_img_section ul:last-child {
        left: 1165px;
    }

    .mble_store_img_section ul {
        left: 125px;
        top: 35px;
    }

    .mble_store_img_section ul li {
        height: 322px;
        width: 162px;
        border-radius: 20px;
    }

    .mble_store_img_section picture,
    .mble_store_img_section img,
    .mble_store_img_section source {
        border-radius: 12px;
    }

    .btm_cta_sec p {
        margin-bottom: 0px;
    }

    .rs_content {
        padding: 25px;
        transform: translateY(0px);
    }

    .rs_content p {
        opacity: 1;
        transform: translateY(0px);
    }

    .tooltip_sec p {
        width: 290px;
    }

    .ztsr_testi_grp,
    .ztsr_testi_grp .ztsr_testi_desc {
        max-width: 100%;
        width: 100%;
    }

    .slick-dots {
        text-align: center;
        margin: 10px auto 0px;
    }

    .ztsr_testi_grp:after {
        right: 0%;
    }

    .ztst_spkr_lft {
        margin-right: 15px;
    }

    .ztsr_spkr_rht {
        max-width: calc(100% - 133px);
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 22px;
    }

    .ztsr_testi_outer {
        border-radius: 25px;
    }

    /* video testi */
    .vid_testi_sec {
        padding: 20px;
    }

    .vid_testi_inr {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .vid_wrapper {
        display: flex;
        justify-content: center;
        max-width: 570px;
        margin-bottom: 30px;
    }

    .vid_content_wrap {
        max-width: 100%;
    }

    .vid_spkr {
        left: unset;
    }

    .vid_testi_sec,
    .vid_wrapper::after,
    .vid_wrapper,
    .vid_wrapper .thump_vid {
        border-radius: 14px;
    }

    /* video testi */
}

@media(max-width: 560px) {
    .trublu_home_page .act-btn {
        margin: 0px 10px;
    }

    .app_link {
        height: 42px;
        width: 137px;
        margin: 0px 5px;
    }

    .bg_lazy_loaded .app_store {
        background-position: -852px -16px;
    }

    .bg_lazy_loaded .play_store {
        background-position: -698px -16px;
    }

    .sec_3:after {
        width: 100%;
    }

    .trublu_home_page .trbh_banner_section .intro_text {
        width: auto;
        max-width: 75%;
        text-align: center;
    }

    .contanct_but_fix,
    .cntct_box {
        display: none;
    }

    .trbh_side_text_wrap .trbh_mobile_store_link {
        max-width: 289px;
    }

    .ztsr_testi_grp:after {
        display: none;
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        font-size: 20px;
    }

    .retail_inr .slick-prev {
        right: 15%;
    }

    .ztsr_testi_grp .ztsr_testi_desc {
        padding-right: 10px;
    }

    .rs_content p {
        display: none;
    }

    .s_webp .bg_lazy_loaded .ztst_spkr_lft,
    .n_webp .bg_lazy_loaded .ztst_spkr_lft {
        background-repeat: no-repeat;
        background-size: 268.75px auto;
    }

    .s_webp .bg_lazy_loaded .sp1,
    .n_webp .bg_lazy_loaded .sp1 {
        background-position: -7.75px -34px;
    }

    .s_webp .bg_lazy_loaded .sp2,
    .n_webp .bg_lazy_loaded .sp2 {
        background-position: -142.75px -34px;
    }

    .s_webp .bg_lazy_loaded .sp3,
    .n_webp .bg_lazy_loaded .sp3 {
        background-position: -75.75px -34px;
    }

    .ztst_spkr_lft {
        width: 57.75px;
        height: 57.5px;
    }
}


/* ar fix */

.i18n-ar-ae .trublu_home_page .trbh_scnd_text_wrap h2 {
    padding-left: 0px;
    padding-right: 50px;
}

.i18n-ar-ae .trbh_banner_section .trbh_text_wrap,
.i18n-ar-ae .trublu_home_page h1,
.i18n-ar-ae .banner_sec p,
.i18n-ar-ae .trbh_cta_sec,
.i18n-ar-ae .trublu_home_page .zcta_btn,
.i18n-ar-ae .trublu_home_page .act-btn,
.i18n-ar-ae .trbh_mid_text_wrap h2,
.i18n-ar-ae .trbh_mid_text_wrap p,
.i18n-ar-ae .trbh_text_wrap h3,
.i18n-ar-ae .trbh_text_wrap p,
.i18n-ar-ae .exp_list_container li h2 {
    text-align: center;
}

.i18n-ar-ae .exp_sec,
.i18n-ar-ae .more_highlight_sec .trbh_side_img_sec,
.i18n-ar-ae .mble_store_img_section,
.i18n-ar-ae .scnr_outer_container,
.i18n-ar-ae .scnr_container,
.i18n-ar-ae .report_section .report_inner_container,
.i18n-ar-ae .retail_inr,
.i18n-ar-ae .exp_list_container,
.i18n-ar-ae .exp_list_container li h2,
.i18n-ar-ae .slick-track {
    direction: ltr;
}

.i18n-ar-ae .retail_inr .slick-prev {
    right: unset;
    left: 15px;
}

.i18n-ar-ae .retail_inr .slick-next {
    right: unset;
    left: 10%;
}

.i18n-ar-ae .retailer_section {
    padding-bottom: 120px;
}

.i18n-ar-ae .scnr_anim {
    text-align: left;
}

.i18n-ar-ae .trublu_home_page .title_label span {
    margin-left: 0px;
    margin-right: 10px;
}

@media(max-width: 1280px) {

    .i18n-ar-ae .report_text_wrap,
    .i18n-ar-ae .report_text_wrap span,
    .i18n-ar-ae .report_text_wrap h3,
    .i18n-ar-ae .report_text_wrap p {
        text-align: center;
    }

    .i18n-ar-ae .trublu_home_page .trbh_scnd_text_wrap h2 {
        padding-left: 0px;
        padding-right: 30px;
    }
}

@media(max-width: 1180px) {

    .i18n-ar-ae .trbh_side_text_wrap h3,
    .i18n-ar-ae .trbh_side_text_wrap p,
    .i18n-ar-ae .scnr_anim {
        text-align: center;
    }
}

@media(max-width: 992px) {
    .i18n-ar-ae .trublu_home_page .trbh_scnd_text_wrap h2 {
        padding: 0px;
    }

    .i18n-ar-ae .retailer_section {
        padding-bottom: 60px;
    }

    .i18n-ar-ae .rs_content,
    .i18n-ar-ae .rs_content h3,
    .i18n-ar-ae .rs_content p,
    .i18n-ar-ae .side_text_wrap,
    .i18n-ar-ae .exp_list_container li,
    .i18n-ar-ae .exp_list_container li h3,
    .i18n-ar-ae .exp_list_container li p,
    .i18n-ar-ae .side_text_wrap,
    .i18n-ar-ae .side_text_wrap span,
    .i18n-ar-ae .side_text_wrap h3,
    .i18n-ar-ae .side_text_wrap p,
    .i18n-ar-ae .trbh_list_box,
    .i18n-ar-ae .trbh_list_box span,
    .i18n-ar-ae .trbh_list_box p,
    .i18n-ar-ae .trbh_list_box h3 {
        text-align: center;
    }

    .i18n-ar-ae .exp_list_container li h3 {
        margin: 0px auto 20px;
    }
}

@media (max-width: 560px) {
    .i18n-ar-ae .retail_inr .slick-prev {
        right: unset;
        left: 0;
    }
}

@media (max-width: 450px) {
    .trublu_home_page a.trbh_inr_link {
        padding: 15px 20px;
    }

    .trublu_home_page a.trbh_inr_link:after,
    .trublu_home_page a.trbh_inr_link:before {
        display: none;
    }
}

/* Overlay background */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup box */
.popup-content {
    background: #fff;
    padding: 25px;
    width: 400px;
    max-width: 90%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Form styling */
#quoteForm label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-family: 'VIC Medium';

}

#quoteForm input,
#quoteForm textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'VIC Medium';

}

.submit-btn {
    background: #003e81;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    font-size: 16px;
    font-family: 'VIC Medium';

}

.submit-btn:hover {
    background: #002b5e;
}

.popup-content h2 {
    font-size: 38px;
    font-family: 'VIC Medium';
    color: #003e81;
    font-weight: 500;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    .trbh_list_container {
        display: block;
        padding: 0 15px;
    }

    .trbh_list_box {
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px;
        padding: 20px;
        /* 🔥 reduced from 50px */
        border-radius: 12px;
    }

    .trbh_list_box img {
        width: 60px;
        /* 🔥 control icon size */
        height: auto;
        margin-bottom: 10px;
    }

    .trbh_list_box h3 {
        font-size: 22px;
        /* 🔥 reduce heading */
    }

    .trbh_scnd_text_subtitle {
        font-size: 14px;
    }

    .trbh_scnd_list li {
        font-size: 13px;
        margin: 5px 0;
    }

    .trbh_scnd_text_btn {
        font-size: 13px;
        padding: 10px 16px;
    }

}

@media (max-width: 768px) {

    .trbh_list_container .slick-slide {
        padding: 0 10px;
    }

    .trbh_list_box {
        height: auto;
    }

}

@media (max-width: 768px) {

    .trbh_list_box {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background: #003e81;
    }

}



/* new responsive */

@media (max-width: 1280px) {
    .trbh_banner_section .trbh_text_wrap {
        max-width: 790px !important;
    }

    

    p.txt_anim.txt_anim3 {
        font-size: 18px;
    }

    .trbh_banner_section p {
        max-width: 100%;
    }

    .trbh_text_wrap {
        padding: 6rem 2rem;
    }

    .trublu_home_page h1 {
        margin-bottom: 20px;
    }

    .scnr_container .title_label {
        font-size: 30px !important;
    }


    .post_footer-right.post_ .post_footer-links a {
        font-size: 12px !important;
    }

    .post_footer-logo.post_ {
        width: 350px !important;
    }


}


@media (max-width: 1512px) {
    .trbh_banner_section .trbh_text_wrap {
        max-width: 1140px;
    }

    p.txt_anim.txt_anim3 {
        font-size: 18px;
    }

    .trbh_banner_section p {
        max-width: 100%;
    }

    .trbh_text_wrap {
        padding: 8rem 2rem;
    }

    .trublu_home_page h1 {
        margin-bottom: 20px;
    }

    .scnr_container .title_label {
        font-size: 30px !important;
    }


    .post_footer-right.post_ .post_footer-links a {
        font-size: 12px !important;
    }

    .post_footer-logo.post_ {
        width: 350px !important;
    }

    .trublu_home_page .title_label {
        margin: 65px 0px 0px;

    }

    .trbh_fullwidth_video video{
        height: 150vh;
    }

    .trbh_mobile_store .trbh_text_wrap{
        margin-top: 16vh;
    }
}



