@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

body {
    font-family: "Rubik", sans-serif;

}

:root {
    --main-color: #273b91;
}

.mob-tr {
    display: none !important;
}

header.sticky-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1020
}

header.sticky-top {
    background-color: #f5f5f5;
}

header.scrolled {
    backdrop-filter: blur(10px);
    background-color: #131313bb !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

header {
    background-color: #f5f5f5;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 4px 30px rgb(0 0 0 / .1);
    font-family: "Rubik", sans-serif;
}

header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between
}

.logo {
    flex: 2;
    display: flex;
    align-items: center
}

.logo img {
    width: 200px
}

img.tr-logo {
    width: 250px !important;
}

.brd-hight {
    border-left: 2px solid #7c7c7c;
    height: 60px;
    padding-right: 3px;
    margin-left: 12px;
}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    margin-left: 30px;
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #273b91;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #00176b
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #273b91;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: #273b91;
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    left: 100%;
    top: 0
}

.prd-desc ul li {
    list-style: none !important;
    /* remove default bullets */
    position: relative;
    padding-left: 22px;
    /* space for custom bullet */
    margin-bottom: 6px;
    display: block;
}

/* Custom Bullet */
.prd-desc ul li::before {
    content: "•";
    /* bullet symbol */
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 28px;
    color: #5b5b5b;
    /* change bullet color */
    line-height: 1;
}

.prd-desc ul li {
    color: #5b5b5b;
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #273b91
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1024px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 425px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #1f2a72;
        left: 0;
        top: 40px;
        height: 90vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: #fff;
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .logo img {
        width: 190px;
    }

    .NavMenu {
        top: 102px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }
}

/* @media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
} */

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .NavMenu {
        top: 81px
    }
}

@media(max-width:375px) {

    .NavMenu {
        top: 80px !important;
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: max-content
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}


#carouselExample .carousel-inner {
    overflow: hidden;
}

#carouselExample .carousel-item img {
    width: 100%;
    height: auto;
    /* Continuous zoom using keyframes starting on page load */
    animation: zoomInOut 5s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

    /* 100% {
        transform: scale(1);
    } */
}

/* BTN ANIMATION */
.btn-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 1000px; */
    margin: 10px auto 0px;
}

/* Base button */
.btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
    overflow: hidden;
    /* keep hover effect inside */
    border: none;
    background: transparent;
    padding: 0;
    /* remove default button padding */
}

/* Button text */
.btn span {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #232b66;
    color: #232b66;
    transition: color 0.3s ease;
    z-index: 2;
}

/* Background animation */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: #232b66;
    transition: height 0.3s ease-out;
    z-index: 1;
}

/* Hover animation */
.btn:hover::before {
    height: 100%;
}

.btn:hover span {
    color: #fff;
}

/* small head */
.small-head {
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #1a191d;
    border: 1px solid #5B5B5B;
    padding: 2px 15px 3px;
    border-radius: 30px;
    background-color: rgb(237 241 255);
    margin-bottom: 15px;
}

.about-section {
    max-width: 1300px;
    margin: auto;
    padding: 60px 15px;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #5b5b5b;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-box,
.about-box h1 {
    font-size: 50px;
    line-height: 60px;
    color: #3b4693;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
}

.about-box h3 {
    font-size: 46px;
    line-height: 46px;
    color: #3b4693;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: "Barlow Condensed", sans-serif;
}

/* .about-box span {
    color: #5b5b5b;
} */

.about-box img {
    max-height: 60px;
}

.about-section {
    background-image: url(../img/section-bg-shape-1.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 100px 0;
}

.product-section {
    background-color: #e8f1ff;
}

@media (max-width: 768px) {
    .about-box {
        font-size: 24px;
        line-height: 34px;
        flex-direction: column;
        text-align: center;
    }
}

.main-para p,
p {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400
}

/* counter */
.counter-section {
    padding: 100px 0;
    text-align: center;
}

.counter-box {
    margin: 10px auto;
}

.counter-box h2,
.counter-box p {
    font-size: 78px;
    line-height: 110px;
    font-weight: 700;
    color: #3b4693;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box h4 span:last-child {
    margin-left: 0px;
    font-size: 60px;
    color: #5b5b5b;
    font-weight: bold;
}

.counter-box h3 {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 500;
    color: #5b5b5b;
}



.blog-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    height: 270px;
    border-radius: 10px;
    background-size: cover;
    background-position: center bottom;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(2px);
    padding: 8px 10px;
    border-radius: 6px;
    max-width: 100%;
}

.blog-title {
    font-size: 22px;
    line-height: 32px;
    margin: 0;
    font-family: "Barlow Condensed", Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 205px;
    width: 100%;
    max-height: 115px;
    filter: grayscale(100%);
    transition: 0.3s;
    border: 5px solid #fff;
    filter: grayscale(0%);
    border-radius: 7px;
}

.swiper-slide img:hover {
    filter: grayscale(100%);
}

.bg-orange {
    background-color: #3b4693;
}

.head h4 {
    font-size: 50px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
}

.prd-head .fs-3 {
    color: #5b5b5b;
    /* font-family: "Barlow Condensed", sans-serif; */
    font-weight: 700;
    margin-bottom: 20px;
}

/* footer css */

.rs-footer-two {
    position: relative;
    z-index: 2;
}

.rs-footer-two .rs-footer-bg-thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #272f6e;
    top: 0;
    inset-inline-start: 0;
    opacity: 0.6;
    z-index: 1;
}

.rs-footer-two .rs-footer-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-end: 0;
    top: 0;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: cover;
}

.rs-footer-two .rs-footer-top {
    padding: 70px 0 80px;
}

.rs-footer-two .footer-2-col-1 {
    margin-inline-end: 30px;
}

.rs-footer-two .rs-footer-widget-title {
    color: #fff;
    margin-bottom: 25px;
}

.rs-footer-two .rs-footer-widget-description {
    color: #cbcccd;
    margin-bottom: 40px;
}

.rs-footer-two .rs-footer-stroke-text.has-theme-red {
    -webkit-text-stroke-color: #d3d3d3;
    stroke: #d3d3d3;
}

.rs-footer-two .rs-footer-stroke-text {
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #d3d3d3;
    stroke: #d3d3d3;
    font-size: 45px;
}

.rs-footer-widget-links ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.rs-footer-widget-links ul li {
    list-style: none;
    position: relative;
}

.rs-footer-widget-links ul li a {
    color: #cbcccd;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
}

.rs-footer-widget-links.has-theme-red ul li a:hover {
    color: #d3d3d3;
}

.rs-footer-widget-links ul li a:hover {
    color: #d3d3d3;
    padding-inline-start: 25px;
}

.rs-footer-widget-links ul li a {
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
}

.rs-footer-widget-links.has-theme-red ul li a:hover {
    color: #d3d3d3;
}

.rs-footer-widget-links.has-theme-red ul li a::before {
    color: #d3d3d3;
}

.rs-footer-widget-links ul li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.rs-footer-widget-links ul li a::before {
    content: "\f061";
    /* example FA arrow (arrow-right) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* required for solid icons */
    speak: none;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.rs-footer-two .rs-footer-widget-title {
    color: #fff;
    margin-bottom: 25px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.rs-footer-two .rs-footer-widget-address {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-address a:hover {
    color: #d3d3d3;
}

.rs-footer-two .rs-footer-widget-email a {
    color: #cbcccd;
}

.rs-footer-two .rs-footer-widget-meta p {
    color: #cbcccd;
    margin: 0;
}

.rs-footer-two .rs-footer-widget-number {
    margin-bottom: 30px;
}

.rs-footer-two .rs-footer-widget-number span a,
.rs-footer-widget-address a {
    color: #cbcccd;
    text-decoration: none;
}

.rs-footer-copyright.has-theme-red.text-center p {
    text-align: center !important;
}

.rs-theme-social {
    display: inline-flex;
    gap: 15px;
}

.rs-theme-social a {
    color: #3b4693;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    /* default purple */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Sliding gradient overlay */
.rs-theme-social a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00176b, #3b4693);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

.rs-theme-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.rs-theme-social a:hover::after {
    transform: translateX(0%);
}

.rs-theme-social a:hover i {
    transform: scale(1.3) rotate(-10deg);
    color: #fff;
}

.mob-head {
    display: none;
}

.inventory-text {
    line-height: 45px;
}

/* why choose us */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #3b4693;
    font-family: "Barlow Condensed", sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
}

.content-box h4 {
    color: #3b4693;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-box p {
    margin-bottom: 10px;
    color: #333;
}

.list-check {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.list-check li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}

.list-check li::before {
    content: "✔";
    /* FontAwesome check */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #3B4693;
    background: rgba(157, 80, 255, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, #323b86, #232b66);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight-box h4 {
    font-weight: 700;
}

.highlight-box .list-check li {
    color: #fff;
}

.highlight-box .list-check li::before {
    color: #3b4693;
    background: #fff;
}

.distributor-section {
    /* background-color: #e8f1ff; */
    border-bottom: 1px solid #272f6e66;
}

/* OUR PRESENCE SECTION */
.simple-presence-section {
    position: relative;
    padding: 80px 0;
    background: none;
    font-family: "Rubik", sans-serif;
    overflow: hidden;
}

/* Add background image inside a pseudo element behind the content */
.simple-presence-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/presence-bg.webp) center center / cover no-repeat;
    z-index: 0;
}

/* Apply overlay only on image, not content */
.simple-presence-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Content stays on top, clean and readable */
.simple-presence-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}


.simple-presence-section .sub-heading {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d6efd;
    /* Accent color */
    margin-bottom: 8px;
}

.simple-presence-section h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 16px;
}

.simple-presence-section p.lead {
    color: #2b2b2b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

section.simple-presence-section p.lead {
    font-weight: 400;
}

/* --- The Scrolling Ticker --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* This creates the fade-out effect on the edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 90s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 30px;
    font-size: 1.1rem;
    color: #495057;
    position: relative;
}

/* Adds a subtle dot separator */
.ticker-item:not(:last-child)::after {
    content: '•';
    color: #5b5b5b;
    opacity: 0.8;
    position: absolute;
    right: -5px;
}

/* product */
/* .prd-img {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
 
} */

.image-con {
    overflow: hidden !important;
    border-radius: 12px 12px 0 0;
    /* round top corners */
    padding: 20px;
}

.prd-section .col-lg-4.col-md-4 {
    border-right: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
}

.prd-section .col-lg-3 {
    border-right: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
}

.image-con img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Scale image on hover */
.prd-img:hover .image-con img {
    transform: scale(1.04);
}

.rtin-content {
    /* background-color: #fff; */
    border-radius: 0 0 12px 12px;
    padding: 15px 15px;
    text-align: center;
    /* margin-top: -18px; */
    /* remove negative margin */
}

/* Text Styling */
.rtin-content .cat-list span {
    color: #323b86;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.rtin-content h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    font-weight: 600;
}

.rtin-content h3 a {
    text-decoration: none;
    color: #5b5b5b;
    transition: color 0.3s ease;
}

.rtin-content h3 a:hover {
    color: #323b86;
}

/* Fade up animation on hover for text */



/* .rtin-content h3 a:hover {
    color: #d3d3d3;
} */

/* over */

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        /* Moves the content by half its width for a seamless loop */
        transform: translateX(-50%);
    }
}

.aboutSwiper img {
    max-width: 100% !important;
    max-height: 100% !important;
    filter: none !important;
}

.aboutSwiper {
    width: 100%;
    padding: 30px 0;
}

.aboutSwiper .swiper-slide {
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.aboutSwiper .swiper-slide-active {
    transform: scale(1.05);
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
}

.aboutSwiper .card {
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.aboutSwiper img {
    transition: transform 0.8s ease;
}

.aboutSwiper .card:hover img {
    transform: scale(1.05);
}

/* ---- Custom Arrow Buttons ---- */
.about-prev,
.about-next {
    color: #fff;
    background: linear-gradient(135deg, #2f387c, #3B4693);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-prev:hover,
.about-next:hover {
    background: linear-gradient(135deg, #3B4693, #2f387c);
    transform: scale(1.1);
}

.about-prev::after,
.about-next::after {
    font-size: 18px;
    font-weight: bold;
}

.about-prev {
    left: 2px;
}

.about-next {
    right: 2px;
}

/* Optional: make arrows visible above slides */
.aboutSwiper .swiper-button-prev,
.aboutSwiper .swiper-button-next {
    z-index: 10;
}

/* about us page  */
/* Stats Section */
#stats {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 4rem 0;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #3B4693;
}

.stat-item p {
    font-size: 1.1rem;
    color: #1a253c;
    font-weight: 500;
    text-align: center;
}

/* Image-Text Section (Production & R&D) */
.img-text-section img {
    border-radius: 0.375rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
}

.img-text-section .content {
    padding: 2rem;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Key Features Section */
#features {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.feature-card {
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #3B4693;
    margin-bottom: 1rem;
}

/* Call to Action (CTA) Section */
.cta-section {
    background: linear-gradient(45deg, #3B4693, #003e9c);
    color: white;
    padding: 5rem 0;
    border-radius: 0.375rem;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
}

/* Custom Buttons */
.btn-primary {
    background-color: #0052cc;
    border-color: #0052cc;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    /* Modern pill shape */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #003e9c;
    border-color: #003e9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    background-color: #ffffff;
    border-color: #ffc107;
    color: #1a253c;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e6ac00;
    border-color: #e6ac00;
    color: #1a253c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

/* --- Hero Breadcrumb Section (Industrial Look) --- */
.breadcrumb-hero {
    position: relative;
    background: linear-gradient(rgba(26, 37, 60, 0.75),
            rgba(26, 37, 60, 0.85)),
        url('../img/breadcrumb.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 6rem 0;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.breadcrumb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgb(59 70 147 / 37%) 0%, rgb(59 70 147 / 60%) 100%);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* --- Modern Breadcrumb Styling --- */
.modern-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.modern-breadcrumb .breadcrumb {
    margin: 0;
    background: transparent;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: 0 0.5rem;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #e9e9e9;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item i {
    margin-right: 0.3rem;
    color: #ffffff;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* custom Row */
.custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 15px; */
}

.custom-col {
    flex: 1 1 calc(20% - 15px);
    /* 5 columns per row */
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.border-right {
    border-right: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
}

.prd-section .prd-brdr {
    border-right: 1px solid #b3b3b3;
}

.prd-section .brdr-btm {
    border-bottom: 1px solid #b3b3b3;

}

section.contact-section {
    padding: 60px 0;
}

.contact-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
    border-bottom: 2px solid #212529;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-title i {
    color: #3B4693;
    margin-right: 8px;
}

.contact-box a {
    color: #212529;
    text-decoration: none;
}

.contact-box a:hover {
    color: #3B4693;
}

.contact-box p {
    margin-bottom: 0;
}

.contact-section {
    background-image: url('../img/demo-data-analysis-title-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}


/* Enquiry Form Css */

.form-control-feedback {
    display: none;
  }
  
  .has-feedback label~.form-control-feedback {
    top: 0 !important;
  }
  
  .error {
    text-align: left !important;
    display: table !important;
  }
  
  .thnak4 {
    margin-top: 50px;
  }
  
  .has-feedback .form-control {
   
    padding: 20px;
  }
  
  .form-group {
    margin: 15px 0 !important;
  }
  
  .form-group input {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #3b4693;
    color: #000;
    font-weight: 500;
  }
  .has-feedback .form-control::placeholder{
    color: #000000;
  }
  .has-feedback .form-control{
    color: #000000;
  }
  .form-group textarea {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #3b4693;
    font-weight: 500;
  }
  
  .form-group select {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #3b4693;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #3b4693;
  }
  
  .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
  }
  
  .Submit-box {
    background-color: #3b4693;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #3b4693;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
    font-weight: 600;
  }
  
  .Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
  }
  
  .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-bottom: 2px solid #3b4693;
  }
  
  .input-group>.form-control,
  .input-group>.form-floating,
  .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .fill {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  .get {
    font-size: 32px;
    color: #3b4693;
    padding-bottom: 10px;
    text-align: center;
  }
  .page-part{
    padding: 50px 0;
  }
  
  
  /* Enquiry Form Css End*/



.img-big {
    display: none !important;
}

.img-small {
    display: block !important;
}

/* about us */
#core-values .section-subtitle {
    color: #6c757d;
    font-size: 16px;
    text-align: center;
}

.feature-card {
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #3B4693, #6a75d1) border-box;
    transition: all 0.4s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(#fdfdfd, #fdfdfd) padding-box,
        linear-gradient(135deg, #6a75d1, #3B4693) border-box;
}

.feature-card .icon i {
    font-size: 48px;
    color: #3B4693;
}

.feature-card .card-title {
    color: #3B4693;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.feature-card .card-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.visual-showcase {
    position: relative;
    /* padding: 2rem; */
}

.image-creative-frame {
    position: relative;
    padding: 20px;
}

.frame-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid #3B4693;
    z-index: 1;
}

.frame-decoration.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.frame-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
    border-color: #3B4693;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.creative-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image-container:hover .creative-main-image {
    transform: scale(1.05);
}

.about-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-main-title .highlight-blue {
    color: #3B4693;
    position: relative;
}


.about-subtitle {
    font-size: 20px;
    color: #6C757D;
    font-weight: 400;
}

.about-header-wrapper {
    text-align: center;
}

.about-creative-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    font-family: "Barlow Condensed", sans-serif;
    margin-bottom: 15px;
    position: relative;
    color: #3b4693;
}

.blue-highlight {
    color: #3B4693;
}

.circle-img-about {
    width: 85%;
    max-width: 500px;
}

.mission-vision {
    background-color: #dbe1ee;
}

.catalogue-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.catalogue-item {
    width: 300px;
    text-align: center;
}

.catalogue-item canvas {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.cat-item-2 {
    width: 400px;
    text-align: center;
}

.image-con h3 a {
    text-decoration: none;
    color: #5b5b5b;
    transition: color 0.3s ease;
}

.image-con h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    font-weight: 600;
}

.image-con .cat-list span {
    color: #323b86;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.whatsapp_btn {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 11;
}

.button {
    display: inline-block;
    position: relative;
}

.button.is-play {
    background-color: #24d267;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 44%;
    bottom: 40%;
}

.button.is-play .button-outer-circle {
    background: #24d267;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.button.is-play .button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
}

.button.is-play .button-icon .triangle {
    -webkit-animation: fadeIn 7s ease;
    animation: fadeIn 7s ease;
}

.button.is-play .button-icon .path {
    stroke-dasharray: 90;
    stroke-dashoffset: 0;
    -webkit-animation: triangleStroke 3s;
    animation: triangleStroke 3s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

.has-scale-animation {
    -webkit-animation: smallScale 3s infinite;
    animation: smallScale 3s infinite;
}

.has-delay-short {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangleStroke {
    from {
        stroke-dashoffset: 90;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes smallScale {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.is-play .fa {
    margin: -10px -4px !important;
    padding: 0 !important;
    font-size: 50px;
    color: #fff;
}

@media (max-width:768px) {
    .button.is-play {
        width: 50px;
        height: 50px;
    }

    .is-play .fa {
        font-size: 30px;
        margin: -1px !important;
        padding: 0 !important;
    }

    .whatsapp_btn {
        position: fixed;
        bottom: 18px;
        left: 10px;
        z-index: 11;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-col {
        flex: 1 1 calc(33.333% - 15px);
        /* 3 per row on tablets */
    }
}

@media (max-width: 576px) {
    .custom-col {
        flex: 1 1 100%;
        /* 1 per row on mobile */
    }
    .page-part {
        padding: 30px 0;
    }
    .get{
        font-size: 22px;
        padding-bottom: 5px;
        margin-bottom: 0;
    }
    .fill{
        font-size: 17px;
    }
}

@media (max-width: 450px){

    .get {
        font-size: 19px;
        padding-bottom: 2px;
    }
    .fill {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
    }
    .has-feedback .form-control {
        padding: 15px;
    }

}

@media (max-width: 400px){

    .get{
        font-size: 18px;
    }
    .fill{
        font-size: 15px;
    }
    .form-group input{
        font-weight: 400;
    }

}

/* over */
@media (min-width:1300px) and (max-width: 1340px) {
    .social-sidebar {
        padding: 200px 20px;
    }

    header.sticky-top.px-5 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .logo img {
        width: 150px;
    }

    .NavMenu li a {
        letter-spacing: 0;
    }

    .portfolio-multi-layout-4 .rtin-content {
        bottom: 15px;
        width: calc(100% - 15px);
        padding: 16px 16px 16px 16px;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 19px;
    }

    .portfolio-multi-layout-4 .read-more-btn {
        right: 7px;
        bottom: 34px;
        width: 50px;
        height: 50px;
        transform: translateY(30%);
        font-size: 18px;
    }

    .desktop-head .about-box {
        font-size: 48px;
        gap: 0px;
    }

    .about-img-wrap .about-img-1 {
        max-width: 280px;
        height: 368px;
    }

    .about-img-wrap .about-contact {
        grid-template-columns: 50px 1fr;
        grid-gap: 8px;
        max-width: 280px;
    }

    ul.NavMenu {
        justify-content: center;
    }

    .NavMenu li a {
        padding: 20px 12px;
    }

    .about-creative-title {
        font-size: 44px;
    }
}

@media (min-width:1341px) and (max-width: 1550px) {

    .about-img-wrap .about-img-1 {
        max-width: 280px;
        height: 368px;
    }

    .about-img-wrap .about-contact {
        grid-template-columns: 50px 1fr;
        grid-gap: 8px;
        max-width: 280px;
    }

    .social-sidebar {
        padding: 200px 20px;
    }

    header.sticky-top.px-5 {
        padding-right: 0 !important;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding-left: 35px !important;
    }

    .logo img {
        width: 165px;
    }

    .NavMenu li a {
        letter-spacing: 0;
    }

    .portfolio-multi-layout-4 .rtin-content {
        bottom: 15px;
        width: calc(100% - 15px);
        padding: 16px 16px 16px 16px;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 19px;
    }

    .portfolio-multi-layout-4 .read-more-btn {
        right: 7px;
        bottom: 34px;
        width: 50px;
        height: 50px;
        transform: translateY(30%);
        font-size: 18px;
    }
}

@media (max-width: 1024px) {

    .g-5,
    .gx-5 {
        --bs-gutter-x: 0 !important;
    }

    .breadcrumb-hero {
        padding: 4rem 0;
    }

    .page-title {
        font-size: 2.4rem;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .contact-head {
        display: none;
    }

    ul.NavMenu {
        margin: 0;
    }

    .mob-tr {
        display: block !important;
    }

    section#production {
        padding-top: 0 !important;
    }

    .rs-footer-copyright.has-theme-red.text-center p {
        text-align: center !important;
    }
}


@media (max-width: 768px) {

    .sml-tab-brd {
        border-right: 1px solid #b3b3b3 !important;
    }

    .simple-presence-section h2 {
        font-size: 2rem;
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .prd-head.mt-lg-6 {
        margin-top: 40px;
    }

    .row.my-5.py-5.prd-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .md-border-none {
        border-right: 0 !important;
    }

    .img-small {
        display: none !important;
    }

    .img-big {
        display: block !important;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumb-hero {
        padding: 4rem 0;
    }

    .modern-breadcrumb {
        padding: 0.5rem 1rem;
    }

    .custom-col {
        flex: 1 1 calc(30% - 15px);
        /* 2 per row on small screens */
    }

    .catalogue-container {
        flex-wrap: nowrap;
    }
}

@media only screen and (min-width: 428px) and (max-width: 900px) {
    .desktop-head {
        display: none !important;
    }

    .mob-head {
        display: block !important;
        justify-content: center !important;
    }

    .about-content.mt-2.mb-4.justify-content-start.gap-1 {
        justify-content: center !important;
    }

    header.sticky-top.px-5 {
        padding: 0 15px !important;
    }

    .logo img {
        width: 155px;
    }

    img.tr-logo {
        width: 185px !important;
    }

    .about-box h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .counter-box h2,
    .counter-box p {
        font-size: 60px;
        line-height: 70px;
    }

    .about-box h3 {
        font-size: 36px;
        line-height: 40px;
    }

    .ftr-logo img {
        width: 220px !important;
    }

    .NavMenu {
        width: 100%;
        top: 85px;
    }
section#production, section#about{
    padding-bottom: 0 !important;
}
.col-lg-7.content.animate-on-scroll.is-visible{
    padding-top: 0 !important;
}.mob-dir{
    flex-direction: column-reverse;
}
}

@media (max-width: 425px) {
    .mob-dir {
        flex-direction: column-reverse;
    }

    .prd-section .col-lg-3,
    .prd-section .col-lg-4.col-md-4 {
        border-right: 0 !important;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-head {
        display: none;
    }

    .social-sidebar {
        display: none;
    }

    .g-5,
    .gx-5 {
        --bs-gutter-x: 1rem !important;
    }

    header.sticky-top.px-5 {
        padding: 0 !important;
    }

    .NavMenu {
        margin-left: 0;
        top: 83px;
    }

    .about-box {
        font-size: 28px;
        /* line-height: 23px; */
    }

    .portfolio-multi-layout-4 .about-box {
        font-size: 38px;
        line-height: 15px;
        flex-direction: row;
    }

    .desktop-head {
        display: none;
    }

    .mob-head {
        display: block !important;
    }

    .head h4 {
        font-size: 32px;
    }

    .col-lg-4.mb-4.mb-lg-0.text-center.text-lg-start.head {
        margin-bottom: 5px !important;
    }

    img.w-100.p-3.bg-white.rounded-3.mb-4 {
        width: 200px !important;
    }

    .about-section {
        padding: 50px 0;
    }

    .counter-box h3 {
        margin-top: 0px;

    }

    .counter-box h4 {
        font-size: 50px;
        line-height: 55px;
    }

    .counter-box {
        margin: 22px auto;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding: 10px 15px !important;
    }

    .simple-presence-section {
        padding: 40px 0;
    }

    .mob-head .about-content.mt-4.mb-4.justify-content-start.gap-1 {
        flex-direction: column;
    }

    .mob-small {
        text-align: center;
    }

    .about-box.fw-bold.mob-head-1 {
        flex-direction: row;
        gap: 9px;
    }

    .mob-head-2 {
        display: none;
    }

    .about-box h3 {
        font-size: 34px;
        text-align: left;
    }

    p.section-subtitle {
        text-align: left;
    }

    section.distributor-section.py-5 .text-center {
        text-align: left !important;
    }

    .portfolio-multi-layout-4 .rtin-content h3 a {
        font-size: 20px;
    }

    .counter-box h2,
    .counter-box p {
        font-size: 50px;
        line-height: 60px;
    }

    .about-box,
    .about-box h1 {
        font-size: 36px;
        line-height: 45px;
    }

    .about-content.mt-4.mb-5 {
        margin: 15px 0 !important;
    }

    section.about-section.text-center .text-start {
        text-align: center !important;
    }

    .logo img {
        width: 140px;
    }

    .prd-img .rtin-content {
        transform: translateY(0);
        opacity: 1;
    }

    /* .rtin-content {
        margin-top: -40px;
    } */

    img.tr-logo {
        width: 185px !important;
    }

    section#production {
        padding-bottom: 0 !important;
    }

    .mob-pt-0 {
        padding-top: 0 !important;
    }

    .mob-pb-0 {
        padding-bottom: 0 !important;
    }

    .about-creative-title {
        font-size: 30px;
    }

    .catalogue-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    #production .content,
    #rd .content {
        padding: 1rem;
    }

    .about-content.mt-2.mb-4.justify-content-start.gap-1 {
        justify-content: center !important;
    }
}

@media (min-width:321px) and (max-width: 375px) {
    .NavMenu {
        width: 100%;
    }

    nav.container-fluid.align-items-center.py-2.px-5 {
        padding: 10px 15px !important;
    }

    .logo img {
        width: 115px;
    }

    img.tr-logo {
        width: 170px !important;
    }

    .prd-section .row .p-4 {
        padding: 1rem 0 !important;
    }
}

@media (min-width:376px) and (max-width: 399px) {
    .logo img {
        width: 100px !important;
    }

    img.tr-logo {
        width: 150px !important;
    }
}

@media (min-width:300px) and (max-width: 374px) {
    .logo img {
        width: 100px !important;
    }

    img.tr-logo {
        width: 140px !important;
    }

}

@media (max-width: 320px) {
    .NavMenu {
        width: 100%;
    }

    .brd-hight {
        border-left: 2px solid #7c7c7c;
        height: 60px;
        padding-right: 3px;
        margin-left: 5px;
    }

    .logo img {
        width: 90px;
    }

    img.tr-logo {
        width: 120px !important;
    }
}

/*  font-family: "Barlow Condensed", sans-serif; */
/* font-family: "Rubik", sans-serif; */