@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --default-font: "Open Sans", sans-serif;
  --heading-font: "Lato", sans-serif;
  --nav-font: "Lato", sans-serif;
}

:root { 
  /* Scroll Behavior */
  scroll-behavior: smooth;

  /* Color Palette */
  --background-color: #fafdff; 
  --default-color: #444444; 
  --heading-color: #222222;    
  --accent-color: #3498db;   
  --surface-color: #ffffff;  
  --contrast-color: #ffffff;  
  --white-color: #fff;       
  --black-color: #000;        
  --main-color: #385a94;        
  
  /* Navigation Colors */
  --nav-color: #444444;             
  --nav-hover-color: #3498db;              
  --nav-mobile-background-color: #ffffff;     
  --nav-dropdown-background-color: #ffffff;    
  --nav-dropdown-color: #444444;      
  --nav-dropdown-hover-color: #3498db;     

  /* Transitions */
  --transition: 0.3s ease; 
}


.light-background {
--background-color: #f4fafd;
--surface-color: #ffffff;
}
.dark-background {
--background-color: #060606;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #252525;
--contrast-color: #ffffff;
}
body {
color: var(--default-color);
background-color: var(--background-color);
font-family: var(--default-font);
}
p{
font-size: 16px;
font-family: var(--nav-font);
}
a {
color: var(--accent-color);
text-decoration: none;
transition: 0.3s;
}
a:hover {
color: color-mix(in srgb, var(--accent-color), transparent 25%);
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
font-family: var(--heading-font);
font-family: var(--heading-font);
}
.mrb-30 {
margin-bottom: 30px;
}
.mrr-10 {
margin-right: 10px;
}
.mrb-10 {
margin-bottom: 10px;
}
.mrb-20 {
margin-bottom: 20px;
}
#header{
display: flex;
flex-direction: column;
}
.header {
color: var(--default-color);
background-color: var(--background-color);
padding: 10px 0;
transition: all 0.5s;
z-index: 997;
}
.header .logo {
line-height: 1;
}
.header .logo img {
height:auto;
width:250px;
}
:focus-visible {
outline: 2px dashed var(--main-color);
}
.scrolled .header {
box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
.navmenu {
padding: 0;
}
.navmenu ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
justify-content: center;
}
.navmenu li {
position: relative;
text-transform: uppercase !important;
}
.navmenu a,
.navmenu a:focus {
color: #ffe8e8;
padding: 10px 13px;
font-size: 16px;
font-family: var(--nav-font);
font-weight: 400;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
transition: 0.3s;
}
.navmenu li:last-child a {
padding-right: 0;
}
.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
color: var(--nav-hover-color);
}
.navmenu .dropdown ul {
margin: 0;
padding: 10px 0;
/* background: var(--nav-dropdown-background-color); */
display: block;
position: absolute;
visibility: hidden;
left: 14px;
top: 130%;
opacity: 0;
transition: 0.3s;
border-radius: 4px;
z-index: 99;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown ul li {
min-width: 200px;
background-color: #f1f1f1;
}
.navmenu .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
color: var(--nav-dropdown-color);
}
.navmenu .dropdown ul a i {
font-size: 12px;
}
.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
color: #3498db;
}
.navmenu .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}
.navmenu .dropdown .dropdown ul {
top: 0;
left: -90%;
visibility: hidden;
}
.navmenu .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: -100%;
visibility: visible;
}
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
.mobile-nav-toggle {
color:#0e0e0e !important;
font-size:40px;
cursor: pointer;
transition: color 0.3s;
}
.navmenu {
padding: 0;
z-index: 9997;
}
.navmenu ul {
display: none;
list-style: none;
position: absolute;
inset: 60px 20px 20px 20px;
padding: 10px 0;
margin: 0;
border-radius: 6px;
background-color: var(--nav-mobile-background-color);
overflow-y: auto;
transition: 0.3s;
z-index: 9998;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu a,
.navmenu a:focus {
color: var(--nav-dropdown-color);
padding: 10px 20px;
font-family: var(--nav-font);
font-size: 17px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: 0.3s;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.navmenu a i:hover,
.navmenu a:focus i:hover {
background-color: var(--accent-color);
color: var(--contrast-color);
}
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
color: var(--nav-dropdown-hover-color);
}
.navmenu .active i,
.navmenu .active:focus i {
background-color: var(--accent-color);
color: var(--contrast-color);
transform: rotate(180deg);
}
.navmenu .dropdown ul {
position: static;
display: none;
z-index: 99;
padding: 10px 0;
margin: 10px 20px;
background-color: var(--nav-dropdown-background-color);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
box-shadow: none;
transition: all 0.5s ease-in-out;
}
.navmenu .dropdown ul ul {
background-color: rgba(33, 37, 41, 0.1);
}
.navmenu .dropdown>.dropdown-active {
display: block;
background-color: rgba(33, 37, 41, 0.03);
}
.mobile-nav-active {
overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
color: #fff;
position: absolute;
font-size: 32px;
top: 15px;
right: 15px;
margin-right: 0;
z-index: 9999;
}
.mobile-nav-active .navmenu {
position: fixed;
overflow: hidden;
inset: 0;
background: rgba(33, 37, 41, 0.8);
transition: 0.3s;
}
.mobile-nav-active .navmenu>ul {
display: block;
}
}
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 99999;
background-color: var(--accent-color);
width: 50px;
height: 50px;
bottom: 85px !important;
border-radius:50px;
transition: all 0.4s;
}
.scroll-top i {
font-size: 35px;
color: var(--contrast-color);
line-height: 0;
}
.scroll-top:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
color: var(--contrast-color);
}
.scroll-top.active {
visibility: visible;
opacity: 1;
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}
.breadcrumb-item a{
color:var(--main-color);
font-weight:500;
}
.breadcrumb-item.active {
font-weight: 500;
}
.page-title {
background: linear-gradient(90deg, #ccd7eb 5.64%, #e8ecf6, #ccd7eb);
border-radius: 8px;
color: var(--default-color);
padding: 15px;
position: relative;
}
.page-title .breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0 0 10px 0;
margin: 0;
font-size: 14px;
font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: color-mix(in srgb, var(--default-color), transparent 70%);
}
section,
.section {
color: var(--default-color);
background-color: var(--background-color);
padding: 60px 0;
scroll-margin-top: 90px;
overflow: clip;
}
@media (max-width: 1199px) {
section,
.section {
scroll-margin-top: 66px;
}
}
.section-title {
text-align: center;
padding-bottom: 60px;
position: relative;
}
.section-title h2 {
font-size: 32px;
font-weight: 700;
position: relative;
margin-bottom:25px;
}
.section-title h2:before,
.section-title h2:after {
content: "";
width: 50px;
height: 2px;
background: var(--accent-color);
display: inline-block;
}
.section-title h2:before {
margin: 0 15px 10px 0;
}
.section-title h2:after {
margin: 0 0 10px 15px;
}
.section-title p {
margin-bottom: 0;
}
@keyframes up-down {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
.clients {
padding:10px 0;
background-color: #fff;
border-left: none;
border-right: none;
}
.aos-init .row{
justify-content: center;
}
.clients .client-logo {
display: flex;
justify-content: space-between;
align-items: center;
overflow: hidden;
height: auto;
width: 150px;
}
.clients .client-logo img {
width: 100%;
max-width: 150px; 
height: 115px; 
padding: 10px; 
transition: 0.3s;
opacity:1; 
filter: grayscale(100); 
}
.clients .client-logo img:hover {
filter: none;
opacity: 1;
}
@media (max-width: 640px) {
.clients .client-logo img {
padding: 20px;
}
}
.services .service-item {
background-color: var(--surface-color);
box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
padding: 20px;
transition: all ease-in-out 0.4s;
height: 100%;
overflow: hidden;
z-index: 1;
border-radius: 12px;
}
.services .service-item:before {
content: "";
position: absolute;
background: color-mix(in srgb, var(--accent-color), transparent 96%);
right: -80px;
top: -80px;
width: 150px;
height: 150px;
border-radius: 50%;
transition: all 0.3s;
z-index: -1;
}
.services .service-item:after {
content: "";
position: absolute;
background: color-mix(in srgb, var(--accent-color), transparent 97%);
right: -140px;
top: -140px;
width: 250px;
height: 250px;
border-radius: 50%;
transition: all 0.3s;
z-index: -1;
}
.services .service-item i {
background: var(--accent-color);
color: var(--contrast-color);
font-size: 24px;
transition: 0.3s;
display: flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 50%;
border: 1px solid var(--white-color);
}
.services .service-item h4 {
font-weight: 600;
margin: 15px 0 0 0;
transition: 0.3s;
font-size: 20px;
}
.services .service-item h4 a {
color: var(--heading-color);
}
.services .service-item p {
line-height: 24px;
font-size: 14px;
margin: 10px 0 0 0;
}
.services .service-item:hover:before,
.services .service-item:hover:after {
background: var(--accent-color);
right: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 0px;
}
.services .service-item:hover h4 a,
.services .service-item:hover p,
.services .service-item:hover h4 {
color: var(--contrast-color);
}
#testimonials {
  background-color: #f2f4ff !important;
  padding: 60px 0;
  text-align: center;
}

.testimonial-item {
  margin: 0 auto;
  max-width: 700px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  text-align: center;
  padding-top:25px;
}

.testimonial-item h3 {
 ont-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;}

.testimonial-item .stars {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-item .stars i {
  color: #ffc107;
  font-size:14px;
}

.testimonial-item p {
  font-style: italic;
  margin: 20px 0 0;
  color: #555;
  text-align: center;
  line-height: 1.6;
  position: relative;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  font-size: 24px;
  color: #c1c1c1;
  vertical-align: middle;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color, #3a3a3a);
}

.swiper-pagination-bullet {
cursor: pointer;
      transition: background-color 0.3s, width 0.3s;
      height: 15px !important;
      width: 15px !important;
      border: 1px solid #0d6efd;
      background-color: transparent;
      border-radius: 50%;
      opacity: 1;
      margin: 0 4px;
}
.test .swiper-button-prev{
    left:200px;
}
.test .swiper-button-next{
    right:200px;
}

.swiper-pagination-bullet-active {
background-color: #0d6efd;
      width: 20px !important;
      border-radius: 11000px;
}

@media (max-width: 767px) {
.contact-info{
display: none;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-next:after{
 display:none;
}
.testimonials .testimonial-wrap {
padding-left: 0; 
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}
}
.chat-button {
position: fixed;
right: 1em;
bottom: 1em;
z-index: 9999;
width: 46px;
height: 46px;
opacity: 1;
transition: all 0.3s;
text-align: center;
/* filter: drop-shadow(0px 0px 3px #efefef); */
cursor: pointer;}
.chat-button{
width: 50px;
height: 50px;
object-fit: cover;
}
.overlay{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
transition: opacity 0.3s ease;
}
input, select, textarea {
width: 100%;
box-sizing: border-box;
margin-bottom: 10px;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
background: #F0F0F0;
}
.post_title {
margin-bottom: 15px;
font-size: clamp(1rem, 6vw, 2rem);
}
.main-banner-carousel {
scroll-behavior: smooth;
}
.main-banner-carousel .carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fff;
border: 1px solid #ddd;
z-index: 9;
}
.main-banner-carousel .w-100{
object-fit: cover;
position: relative;
height: calc(100vh - 255px);
}
.main-banner-carousel .carousel-caption{
z-index: 99;
}
.main-banner-carousel .carousel-indicators .active {
background-color: #0662ff;
}
#preloader {
position: fixed;
inset: 0; 
background-color: rgb(255, 255, 255); 
z-index: 99999; 
display: flex;
align-items: center;
justify-content: center;
}
#status {
width: 200px;
height: 200px;
background-image: url('https://tscbarcodeprinters.com/images/icon/preloader.gif');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
#navmenu {
background-color: #0e0e0e;     
transition: top 0.3s ease-in-out;
}
#navmenu.hidden {
top: -100px; 
}
.space-between{
justify-content: space-between;
}
.social a i{
font-size: 20px;
color: #0e0e0e;
}
.social a i:hover{
color: #00adef;
}
#navmenu ul{
justify-content: center;
min-height:60px;
height: 100%;
}
.main-menu{
display: flex;
justify-content: space-between;
align-items: center;
}
.affordable-price .row{
justify-content: center;
}
.affordable-price{
text-align: center;
justify-content: center;
align-items: center;
background: linear-gradient(1deg, #c4dbf9 5.64%, #deeafb, #f0f6fe);
}
.affordable-tag img{
width: 80px;
height: 80px;
object-fit: contain;
}
.affordable-tag p{
font-size: 16px;
font-weight: 500;
margin-bottom: 0;
}
/* Styling for the search results dropdown */
.search-results {
position: absolute;
top: 65px;
width: 550px;
background-color: #fafdff;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
max-height: 300px;
overflow-y: auto;
display: none; 
z-index: 99;
border-radius: 5px;
}
#search-btn .material-symbols-outlined{
color: #f1f1f1  ;
}
#search-btn i{
color: #f1f1f1;
}
.search-result-item {
display: flex;
align-items: center;
padding: 10px;
text-decoration: none;
color: #000;
border-bottom:1px solid #b6b6b6b6;
}
.search-result-item:hover {
background-color: #ced4da6b;
color: var(--black-color);
}
.search-result-item img {
width: auto;
height: 40px;
object-fit: cover;
margin-right: 10px;
}
#search{
width: 400px;
margin-bottom: 0;
border-radius: 0px 20px 20px 0px;
border: 1px solid #929292;
}
#search-btn{
border: 1px solid #3498db;
height: 38px;
background-color: #3498db;
border-radius: 20px 0px 0px 20px;
padding: 0 22px;
}
.search-results .no-results {
padding: 10px;
text-align: center;
color: #888;
}
.search-result-item.active {
background-color:var(--main-color);
color:var(--white-color);
}
.search-tag {
padding: 8px;
cursor: pointer;
background-color: #f1f1f1;
border: 1px solid #ccc;
margin: 4px;
border-radius: 4px;
transition: background-color 0.3s;
}
.search-tag:hover {
background-color: #e0e0e0;
}
.p-0{
padding: 0px;
}
.main-active {
background-color: #3498db;
color: #f1f1f1;     
}
.accordion{
--bs-accordion-btn-focus-box-shadow: none;
}
.ts-slider {
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
.main-slider {
width: 100%;
display: flex;
overflow: hidden;
}
.main-slider img {
width: 100% !important;
max-width: 100%;
height: 250px;
border-radius: 12px;
object-fit: cover;
transition: opacity 0.5s ease-in-out;
display: none;
border: 1px solid #ccc;
}
.main-slider img.active {
display: block;
}
.thumbnails {
display: flex;
justify-content: space-between;
margin-top: 10px;
gap:15px;
}
.thumbnails .thumb {
width: 95px;
height: 80px;
object-fit: cover;
cursor: pointer;
border-radius: 8px;
border: 1px solid #ccc;
flex: 1;
flex-basis: min-content;
}
.card {
--border-radius: 0.75rem;
--primary-color: #3498db;
--secondary-color: #0e0e0e;
width: 100%;
height: 100%;
padding: 1rem;
cursor: pointer;
border-radius: var(--border-radius);
box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
position: relative;
}
.card .card__arrow {
position: absolute;
background: var(--primary-color);
padding: 0.4rem;
border-top-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
bottom: 0;
right: 0;
width: 150px;
height: 45px;
transition: 0.2s;
display: flex;
justify-content: center;
align-items: center;
}
.card svg {
transition: 0.2s;
}
.card:hover .card__arrow {
background: #111;
}
.card__arrow{
color: #f1f1f1;
}
.card:hover .card__arrow svg {
transform: translateX(3px);
}
.card__title{
background: #c2410f1a;
padding: 10px 15px;
font-size: 1.2rem;
font-weight: 700;
}
.ellipse-2{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
text-align: justify;
-webkit-box-orient: vertical;
-webkit-line-clamp:2;
margin-top: 7px;
}
.description h5{
padding: 6px 10px;
font-size: 0.87rem;
border-radius: 7px;
border: 1px dashed #3498db;
color: #3498db;
display: inline-block;
background: #f0f9ff;
}
.specification{
border-bottom: 1px dashed #ccc;
padding-bottom: 5px;
}
.spec-ul ul li{
padding: 2px 0;
}
.left-aside{
margin-bottom:20px;
}
#search:focus {
outline: none;
}
.contact_right_item{
padding: 20px;
border-radius: 12px;
border: 1px solid #ccc;
background: #fff;
}
.btn-check:focus + .btn,
.btn:focus {
outline: none;
box-shadow: none;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.5;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
user-select: none;
font-size: 16px;
border-radius: 5px;
box-shadow: none;
overflow: hidden;
white-space: nowrap;
position: relative;
z-index: 0;
}
.btn:hover {
color: var(--white-color);
background-color:#0056b3;
}
.btn-six:hover {
color: var(--black-color);
}
.btn_theme,
.btn_theme_white,
.btn_theme_transparent {
transition: var(--transition);
box-shadow: none;
overflow: hidden;
white-space: nowrap;
position: relative;
z-index: 0;
border: none;
}
.btn_theme {
color: var(--white-color);
background-color: var(--main-color);
}
.btn_theme:before,
.btn_theme_white:before,
.btn_theme_transparent:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 580px;
height: 550px;
margin: auto;
background: var(--black-color);
border-radius: 50%;
z-index: -1;
transform-origin: top center;
transform: translateX(-50%) translateY(-5%) scale(.4);
transition: var(--transition);
}
.btn_theme:hover:before,
.btn_theme_white:hover:before,
.btn_theme_transparent:hover:before {
transform: translateX(-50%) translateY(0) scale(1);
transform-origin: bottom center;
-webkit-transform: translateX(-50%) translateY(0) scale(1);
}
.btn_theme_white {
color: var(--black-color);
background-color: var(--white-color);
border: 1px solid var(--white-color);
}
.btn_theme_transparent {
color: var(--white-color);
background-color: transparent;
border: 1px solid var(--white-color);
}
.btn_md {
padding: 12px 35px;
font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}
.btn_sm {
font-size: clamp(0.875rem, 0.9vw + 0.5rem, 1rem);
padding: 5px 18px;
}
.btn_navber {
color: var(--white-color);
border: 2px solid var(--main-color);
padding: 7px 10px;
transition: var(--transition); 
box-shadow: none;
overflow: hidden;
white-space: nowrap;
position: relative;
z-index: 0;
}
.btn_navber:before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 550px;
height: 550px;
margin: auto;
border-radius: 50%;
z-index: -1;
transform-origin: top center;
background: var(--main-color);
transform: translateX(-51%) translateY(27%) scale(.8);
transition: var(--transition);
}
.btn_navber:hover:before {
transform: translateX(-42%) translateY(-57%) scale(4);
transform-origin: bottom center;
}
.is-sticky .btn_navber {
border: 1px solid var(--white-color);
}
.is-sticky .btn-six {
border: 1px solid var(--white-color);
color: var(--white-color);
}
.footer-main-area {
background: #222935;
padding: 50px 0 0px;
}
.footer-bottom-area {
background: #303743;
padding: 20px 0;
}
.footer-widget {
margin-bottom: 40px;
display: inline-block;
}
.footer-widget-list {
padding-left: 0px;
li {
display: inherit;
margin-bottom: 10px;
a {
color: #a7a8b4;
position: relative;
padding-left: 25px;
&:before {
position: absolute;
content: '\f105';
left: 0px;
top: -3px;
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
&:hover {
color: #0056b3;
}
}
}
}
.widget-title {
position: relative;
&:after {
position: absolute;
content: "";
height: 4px;
width: 58px;
left: 0;
bottom: -15px;
background:linear-gradient(45deg, #0E90D5, #3032A2) !important;
border-radius: 6px;
}
}
.social-list {
padding-left: 0;
li {
display: inline;
float: left;
margin-right: 15px;
a {
background: #303743;
height: 42px;
width: 42px;
display: inline-block;
color: #fff;
text-align: center;
border-radius: 50%;
line-height: 42px;
font-size: 16px;
&:hover {
background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}
}
}
&.list-primary-color {
li {
a {
background: #0056b3;
}
}
}
&.list-flat {
li {
a {
border-radius: 0;
}
}
}
&.list-lg {
li {
a {
height: 48px;
width: 48px;
font-size: 18px;
line-height: 48px;
}
}
}
&.list-sm {
li {
margin-right: 10px;
height: 34px;
width: 34px;
font-size: 14px;
line-height: 34px;
a {
height: 34px;
width: 34px;
font-size: 14px;
line-height: 34px;
}
}
}
}
.text-light-gray {
color: #a7a8b4;
}
.our-service .d-flex h6{
font-weight: 500;
text-align: center;
}
.accordion-header a{
color: var(--bs-accordion-active-color);
}
.spec-ul ul{
list-style: none;
padding-left: 0px;
}
.spec-ul ul span{
padding-left:10px;
}
.spec-ul ul li i{
filter: invert(60%) sepia(15%) saturate(2164%) hue-rotate(165deg) brightness(87%) contrast(97%);
font-size: 15px;
line-height: 1.2;
}
.theme_nav_tab {
border-radius: 12px;
padding: 21px 0;
margin-bottom: 30px;
}
.theme_nav_tab_item .nav-tabs {
border-bottom: none;
justify-content: center;
}
.theme_nav_tab_item .nav-tabs .nav-item.show .nav-link,
.theme_nav_tab_item .nav-tabs .nav-link.active {
color: var(--white-color);
background-color: var(--main-color);
border-color: var(--main-color);
}
.theme_nav_tab_item .nav-tabs .nav-link {
margin-bottom: 0;
background: 0 0;
border: 1px solid var(--main-color);
color: var(--black-color);
padding: 8px 30px;
border-radius: 5px;
margin-right: 35px;
}
.theme_nav_tab_item .nav-tabs .nav-link:last-child {
margin-right: 0;
}
.theme_common_box_two {
border-radius: 11px;
overflow: hidden;
border: 1px solid #d2d2d275;
transition: var(--transition);
}
.theme_common_box_two:hover {
box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
}
.theme_two_box_img {
position: relative;
overflow: hidden;
}
.img_hover {
overflow: hidden;
}
.img_hover img {
transition: var(--transition);
width: 100%;
}
.img_hover:hover img {
transform: scale(1.2);
}
.theme_two_box_img img {
width: 100%;
height: 200px;
object-fit: cover;
}
.theme_two_box_img .discount_tab {
position: absolute;
right: 9px;
bottom: -17px;
background: #FFFFFF;
box-shadow: 4px 5px 12px rgb(0 0 0 / 10%);
width: 45px;
height: 45px;
text-align: center;
line-height: 45px;
border-radius: 50%;
color: var(--main-color);
font-size: 16px;
font-weight: 500;
}
.theme_two_box_content {
background: #fff;
padding: 20px 15px;
}
.theme_two_box_content .btn_navber{
width: 100%;
margin-top: 10px;
}
.theme_two_box_content h4 {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.theme_two_box_content h4 a {
color: var(--black-color);
font-size: 21px;
font-weight: 600;
}
.theme_two_box_content h4 a:hover {
color: var(--main-color);
}
.readmore{
text-align: center;
}
.main-heading{
font-weight: 700;
margin-bottom: 20px;
font-size: 2rem;
}
.scroll .section h5{
font-weight:600;
}
.text-justify{
text-align: justify;
}
.spy-nav{
position: sticky;
top: 133px;
}
.pdf-button img{
width:20px;
height:20px;
object-fit: cover;
}
.spy-nav ul li {
width: 100%;
text-align: center;
flex: 1;
flex-basis: min-content;
}
.spy-nav ul li a {
padding: 10px;
font-size: 14px;
display: inline-block;
color: #0e0e0e;
text-decoration: none;
background-color:#efeffe;
border-radius: 4px;
width: 100%;
transition: background-color 0.3s ease, color 0.3s ease;
}
.spy-nav ul li a.active {
background-color:var(--main-color);
color:var(--white-color)
}
.spy-nav ul {
padding: 0;
list-style: none;
}
/* .spy-nav ul li a:hover {
background-color:#9fb6da;
} */
.product-title{
font-size: 1.5rem;
text-transform: capitalize;
font-weight: 700;
position: relative;
color: #12263a;
margin: 1rem 0;
}
.product-link{
text-decoration: none;
text-transform: uppercase;
font-weight: 400;
font-size: 0.9rem;
display: inline-block;
margin-bottom: 0.5rem;
background: #1f2229;
color: #fff;
padding: 5px 10px;
border-radius: 17px;
transition: all 0.5s ease;
}
.product-link:hover{
opacity: 0.9;
}
.product-rating{
color: #ffc107;
}
.product-rating span{
font-weight: 600;
color: #252525;
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#Error_Message{
display: block;
padding: 10px;
padding-bottom: 0;
text-align: center;}
.blogs input, 
.blogs textarea{
background: var(--white-color);
}
.contact_rightbar{
position: sticky;
top: 145px;
}
.blogs label{
margin-bottom: 10px;
font-weight: 500;}
.img-ts .col-md-4 h4{
text-align: center;
padding:10px;
margin-bottom: 20px;
}
.back-bg{
background: #f3f3f3;
}
.three_heading_area::after {
  position: absolute;
  content: url(https://tscbarcodeprinters.com/images/icon/line.icon.png);
  bottom: 15px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(10%) saturate(3020%) hue-rotate(179deg) brightness(96%) contrast(92%);
}

.three_heading_area {
color: var(--main-color);
font-weight: 600;
position: relative;}

.c-banner{
width:100%;
height: 200px;
object-fit: cover;
}
#nav-tabContent .theme_two_box_content .btn_navber{
width:200px;
}
.mob-flex .accordion-button:not(.collapsed):first-child,
.main-active{
    background-color: #b6e4ff;}
    
.three_about_right{
    position: relative;
     padding-left: 20px; 
}

.three_about_right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #3498db; /* Deep base blue */
    background-image: linear-gradient(
        45deg,
        #3b82f6 25%,  
        transparent 25%,
        transparent 50%,
        #60a5fa 50%,       
        #3b82f6 75%,    
        transparent 75%,
        transparent
    );
    background-size: 10px 10px;
    }
    
    .client-review .col-md-4 {
    text-align: center;
    border-right: 1px dashed black;
    }
    .client-review .col-md-4:last-child {
    border-right: 0px solid black;}

    .client-review h3{
    line-height: 1.3;
    margin: 21px 0px;
    font-size: clamp(16px, 4vw, 25px);
    }
    
    .client-review i:before  {
    font-size: clamp(20px, 5vw, 35px);
    }


