body{
    font-family: poppins;
    margin: 0;
    padding: 0;
   
}
h2{
    font-size: 34px;
    font-weight: 500;
    text-transform: uppercase;
}
span{
    color: var(--pri-col);
    text-transform: uppercase;
    font-weight: 600;

}
p{
    font-size: 16px;
}
a{
    text-decoration: none;
}
:root {
  --primary-bg-color:#FCCE00;
  --primary-bg-black:#000;
  --pri-col: #FCCE00;
  --primary-color: #ffffff;
  --primary-grey: #f5f5f5;
  --color-black:#000;
  --color-white:#fff;
  --color-grey:#ccc;
}
.sidebar-open {
	overflow: hidden;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.sidebar-open .overlay {
	opacity: 1;
	visibility: visible;
}
.header {
	padding: 10px 0;
	background-color: var(--primary-bg-black);
	box-shadow: 3px 3px 3px #151515;
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.logo {
	color: var(--color-white);
	font-size: 36px;
	font-weight: 700;
}
.logo img{
    width: 120px;
}
.container {
	padding: 0 15px;
}
.row-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.nav-list {
	display: flex;
	align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    gap: 20px;
}
.nav-list li {
	padding: 0 10px;
    list-style-type: none;
}
.nav-list li a {
	color: var(--color-white);
	font-size: 18px;
	text-decoration: none;
	padding: 10px 0;
	position: relative;
	display: block;
}
.nav-list li a::after {
	content: "";
	background-color: var(--pri-col);
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.3s linear;
}
.nav-list li a:hover::after {
	width: 100%;
}
.nav-list li a:hover {
	color: var(--pri-col);
}
.nav-list li.active a::after {
	width: 100%;
}
.nav-list li.with-submenu {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.submenu-inner{
    padding: 5px 10px;
    width: max-content;
}
.nav-list li.with-submenu > a {
	margin-right: 10px;
}
.nav-list li.with-submenu::after {
	content: "";
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	right: 0;
	margin-bottom: 5px;
	transition: all 0.3s;
}
.nav-list li.with-submenu:hover::after {
	transform: rotate(225deg);
	margin-top: 10px;
    border-bottom: 2px solid var(--pri-col);
	border-right: 2px solid var(--pri-col);
}
.nav-list li.with-submenu .submenu {
	position: absolute;
	left: 50%;
	top: 100%;
	background: var(--primary-color);
	border-radius: 10px;
	transform: translateX(-50%);
	box-shadow: 2px 2px 1px 2px #ccc;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}
.nav-list li.with-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
}
.nav-list li.with-submenu .submenu li {
	padding: 0;
}
.nav-list li.with-submenu .submenu a {
	color: var(--color-black);
	display: block;
	padding: 8px 15px;
	transition: all 0.3s;
}

.nav-list li.with-submenu .submenu a:hover {
	background-color: var(--primary-bg-color);
}
/* .nav-list li.with-submenu .submenu a::after {
	display: none;
} */
.nav-list li.with-submenu > a {
	position: relative;
	z-index: 1;
}
.hamburger {
	display: none;
	z-index: 99;
}
.hamburger .line {
	width: 25px;
	height: 1.5px;
	background-color: var(--primary-color);
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
	width: 15px;
}
.hamburger:hover {
	cursor: pointer;
}
.hamburger.is-active .line {
	background-color: #311432;
}
.hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(6.5px) rotate(45deg);
	-ms-transform: translateY(6.5px) rotate(45deg);
	-o-transform: translateY(6.5px) rotate(45deg);
	transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-6.5px) rotate(-45deg);
	-ms-transform: translateY(-6.5px) rotate(-45deg);
	-o-transform: translateY(-6.5px) rotate(-45deg);
	transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 767px) {
	.header {
		padding: 10px 0;
	}
	.hamburger {
		display: block;
	}
	.nav-wrap {
		position: fixed;
		top: 0;
		right: -100%;
		transform: translateX(100%);
		background-color: #ffffff;
		transition: all 0.5s linear;
		max-width: 300px;
		width: 100%;
		height: 100%;
		box-shadow: 2px -5px 5px 3px #ccc;
		opacity: 0;
		visibility: hidden;
		z-index: 0;
	}
	.nav-wrap.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		right: 0;
		z-index: 9;
	}
	.nav-list {
		flex-direction: column;
		align-items: unset;
		opacity: 0;
		visibility: hidden;
		transition-delay: 0.5s;
		transition-duration: 1s;
		transition-property: all;
		padding: 10px;
	}
	.nav-wrap.is-open .nav-list {
		opacity: 1;
		visibility: visible;
	}
	.nav-list li {
		padding: 7px 10px;
	}
	.nav-list li a {
		color: #311432;
		text-align: left;
		display: inline-block;
		padding: 2px 0;
	}
	.nav-list li a::after {
		background-color: #311432;
	}
	.nav-list li.with-submenu {
		display: block;
	}
	.nav-list li.with-submenu::after {
		border-color: #311432;
		right: 10px;
		top: 12px;
	}
	.nav-list li.with-submenu:hover::after {
		transform: rotate(45deg);
		margin-top: 0;
	}
	.nav-list li.with-submenu.is-open::after {
		transform: rotate(225deg);
		margin-top: 5px;
	}
	.nav-list li.with-submenu .submenu {
		position: static;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border-radius: 0;
		border-top: 1px solid #ccc;
		display: none;
		transition: auto;
		margin: 10px 0;
	}
	.nav-list li.with-submenu .submenu li {
		padding: 7px 10px;
	}
	.nav-list li.with-submenu .submenu li:hover a {
		background-color: transparent;
	}
	.nav-list li.with-submenu .submenu li a {
		display: inline-block;
		padding: 2px 0;
	}
	.nav-list li.with-submenu .submenu li a::after {
		display: block;
	}
}

/* home page css */
.hero-slider {
  width: 100%;
  height: 700px;
  display: flex;
  position: relative;
  z-index: 0;
  top: 95px;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(61 61 61 / 60%), rgb(0 0 0 / 46%));
  z-index: -1;
}

/* Slide Text */
.hero-style {
  height: 850px;
  transition: all 0.4s ease;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  max-width: 750px;
}

.hero-style .slide-title h2 {
  font-size: 58px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  /* text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6); */
}

.hero-style .slide-text p {
  font-size: 32px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.theme-btn,
.theme-btn-s2 {
  background-color: #ff6f61;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a2e;
}

.theme-btn:hover,
.theme-btn-s2:hover {
  background-color: #d4574e;
  color: #ffffff;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

.slide-btns a:first-child {
  margin-right: 10px;
}

/* Swiper Arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #f0f0f0;
  display: inline-block;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
.slide-title strong {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}
.phyloshpy{
    background-color: #F1F1F1;
    padding: 100px 0;
    position: relative;
}
.phylosophy-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}
.vision-mis{
    padding: 40px 30px;
        transition: all ease-in-out 0.4s;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;

}
.vision-mis img{
    width: 70px;
    padding-bottom: 20px;
}
.vision-mis p{
    color: #666;
    line-height: 28px;
    margin-bottom: 0;
}
.trans{
    background-color: var(--primary-color);
}

.yellow{
    background-color: var(--primary-bg-color);
        box-shadow: 10px 20px 40px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);  
        transform: scale(1.0444444444);
}
.yellow img{
    filter: invert(1);
}
.yellow h3{
    color: var(--color-white);
}
.yellow p{
    color: var(--color-white);
}
.grey{
    background-color:#d6d6d6;
}
.vision-mis:hover{
        box-shadow: 10px 20px 40px 0 rgba(0, 0, 0, 0.2);
        transition: all ease-in-out 0.4s;
}

.category{
    padding: 60px 0 60px;
}
.category-head{
    text-align: center;
}
.category-head p{
    margin-bottom: 0;
}

.masonry-grid {
    gap: 25px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: baseline;
    padding-top: 25px;
}

.grid-item {
    position: relative;
    margin-bottom: 15px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* 🔥 Hover Zoom Effect */
.grid-item:hover img {
    transform: scale(1.062);
}

/* Title overlay */
.grid-item h3 {
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 16px;
    color: #000;
    background: linear-gradient(#95949400, rgb(0 0 0 / 20%));
    z-index: 2;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}


.logo-sec{
    background-color: #000;
    padding: 100px 0;
}
.logo-section{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    align-items: center;
    text-align: center;
}
.logoss{
    border: 1px solid #575757;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    transition: all .5s ease-in-out;

}
.logoss:hover{
    border: 1px solid var(--pri-col);
    transition: all .5s ease-in-out;
    transform: translateY(-10px);
}
.about-sections {
    background-color: #F1F1F1;
    padding: 100px 0;
}
.about-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.about-text p{
    margin-bottom: 0;
    text-align: center;
    line-height: 28px;
}


.counter-wrapper{
  background: #fff;
  padding: 100px 0;

}


.count-icon{
  font-size: 48px;
}
.count {
    font-size: 50px;
    font-weight: 300;
    color: #000;
    padding-top: 15px;
}
.count span{
    font-size: 50px;
    font-weight: 300;
    color: #000;
}
.text-{
    font-size: 20px;
    color: #000;
}
.footer{
    padding: 60px 0 20px;
    background-color: #000;
}
.footer-grid {
    display: grid;
    grid-template-columns: 13% 13% 32% 13% 13%;
    gap: 50px;
}
.footer-logo{
    width: 100%;
}
.gallery-f{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    padding-bottom: 20px;
}

.gallery-f img{
    width: 100%;
}
.footer-sec h3{
    color: var(--pri-col);
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 15px;
    font-size: 20px;
}
.footer-sec a{
    text-decoration: none;
    color: #919191;
    font-size: 14px;
}
.footer-sec ul{
    padding-left: 0px;
    list-style-type: none;
}
.footer-sec li{
    padding-bottom: 10px;
}
.copyright{
    padding-top: 20px;
    text-align: center;
    color: #919191;
    margin-bottom: 0;
    border-top: 1px solid #7e7e7e;
}.footer-sec i{
    color: #919191;
    padding-right: 10px;
}



/* gallery */

.container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.container-grid .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}
.container-grid .card-image {
  background: #ffffff;
  /* display: block;
  padding-top: 70%;
  position: relative; */
  width: 100%;
}
.container-grid .card-image img {
  display: block;
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .container-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.main-gallery{
    padding: 100px 0;
    margin-top: 50px;
}

/* about us */
.about-section-bg{
    background: linear-gradient(180deg, rgb(61 61 61 / 60%), rgb(0 0 0 / 46%)), url(../images/about/About-Us-1-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    height: 55vh;
    background-size: cover;
    background-position: top;
        display: flex;
    justify-content: center;
    align-items: anchor-center;
    text-align: center;
    margin-top: 100px;
}
.about-main h1{
    color: var(--pri-col);
    font-size: 65px;
    font-weight: 700;
}
.about{
    padding: 60px 0;
}
.about span{
    color: var(--pri-col);
}
.about-sec-{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    align-items: center;
}
.about-sec-img img{
    width: 100%;
}
.about-content h2{
    font-size: 35px;
    padding-bottom: 20px;
}
.about-content p{
    color: #929292;
    line-height: 28px;
}
.globe{
    background-color: #000;
    padding: 80px 0;
    text-align: center;
}
.globe h2{
    color: var(--pri-col);
    padding-bottom: 15px;
    font-size: 32px;
}
.globe p{
    color: #fff;
}
.why-us{
    padding: 60px 0;
}
.why{
    text-align: center;
}

.why-choose-g{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    align-items: center;
}
.why-choose-g{
    padding: 50px 0 0;
}
.why-c-sec h3{
    font-size: 22px;
    padding: 20px 0 10px;
    margin-bottom: 0;
    font-weight: 400;
}
.why-c-sec p{

color: #929292;
line-height: 28px;
font-size: 16px;
}

/* export */

.export-section-bg{
    background: linear-gradient(180deg, rgb(61 61 61 / 60%), rgb(0 0 0 / 46%)), url(../images/export/export.jpg);
    background-position: center;
    background-repeat: no-repeat;
    height: 55vh;
    background-size: cover;
    background-position: top;
        display: flex;
    justify-content: center;
    align-items: anchor-center;
    text-align: center;
    margin-top: 100px;
}
.export-main h1{
    color: var(--pri-col);
    font-size: 65px;
    font-weight: 700;
}
.export{
    padding: 60px 0;
}
.about span{
    color: var(--pri-col);
}
.expor-sec{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    align-items: center;
    padding-bottom: 50px;
}
.about-sec-img img{
    width: 100%;
}
.about-content h2{
    font-size: 35px;
    padding-bottom: 20px;
}
.about-content p{
    color: #929292;
    line-height: 28px;
}
.export-layuut h2{
    text-align: center;
    font-size: 30px;
}
.expor-layuot-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    align-items: center;
    padding-top: 50px;
}
.exportss{
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.exportss p{
    color: #353535;
    padding-top: 10px;
    font-size: 16px;
}
.exportss img{
    padding-bottom: 15px;
}
.exportss h3{
    font-size: 25px;
}
.countries{
    padding: 80px 0;
    background-color: #000;
}
.countri-grid{
     display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}
.map{
    background-color: #f4f4f4;
    padding: 50px 0;
}
.map img{
    width: 100%;
}
.country img{
    width: 100%;
}
.country h4{
    text-align: center;
    color: #fff;
    padding-top: 15px;
    margin-bottom: 0;
}
.country{
       border: 1px solid #5a5a5a;
    padding: 10px;
     transition: all .3s ease-in-out;

}
.country:hover{

     border: 1px solid var(--pri-col);
     transition: all .3s ease-in-out;
     transform: translateY(-5px);


}

/* contact */

.contact-section-bg{
    background: linear-gradient(180deg, rgb(61 61 61 / 60%), rgb(0 0 0 / 46%)), url(../images/home/contact-helpdesk-customer-service-spaceship-graphic-concept.jpg);
    background-position: center;
    background-repeat: no-repeat;
    height: 55vh;
    background-size: cover;
    background-position: bottom;
        display: flex;
    justify-content: center;
    align-items: anchor-center;
    text-align: center;
    margin-top: 100px;
}
.contact-main h1{
    color: var(--pri-col);
    font-size: 65px;
    font-weight: 700;
}
.contact-detail{
    padding: 80px 0;
}
.contact-h{
    text-align: center;
}
.get-in-touch{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    padding-top: 40px;
    
}
.get-in-touch i{
    font-size: 35px;
}
.contacts{
    text-align: center;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.contacts h3{
    color: var(--pri-col);
    text-transform: uppercase;
    padding: 5px 0 15px;
}
.contacts a{
    text-decoration: none;
    color: #000;
    font-size: 15px;
}
/* SECTION */
.contact-section {
    padding: 0px 0 70px; 
}
.contact-s{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
/* LEFT FORM */
.contact-left {
    padding: 40px;
    background: #f7f7f7;
}

.contact-left input,
.contact-left textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    background: #fff;
}

.contact-left textarea {
    height: 120px;
    resize: none;
}

.contact-left button {
    padding: 12px 25px;
    border: 1px solid var(--pri-col);
    background: transparent;
    color: var(--pri-col);
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.contact-left button:hover {
    background: var(--pri-col);;
    color: #fff;
}

/* RIGHT IMAGE */
.contact-right {
    width: 100%
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-right img {
        height: 300px;
    }
}
.breadcrumb-container {
    color: #fff;
    font-size: 18px;
}

.breadcrumb-container a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-container span {
    margin: 0 8px;
    text-transform: capitalize;
}

.breadcrumb-container .active {
    opacity: 0.9;
}
#filters button {
    margin: 5px;
    padding: 8px 15px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #fff;
}

#filters button.active {
    background: #000;
    color: #fff;
}

/* product */

#productContainer{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    padding-top: 30px;
}
.our_product{
    padding: 50px 0 80px;
    background-color: #fff;
}
.product-item{
    border: 1px solid #c4c4c4;
    padding: 10px;
    text-decoration: none;
}
.product-item h4{
    margin-bottom: 0;
    text-decoration: none;
    color: #000;
    padding-top: 10px;
    font-size: 18px;
}

.product-item img{
    height: 30vh;
    object-fit: contain;
}
.related-product{
    padding-bottom: 50px;
}
.product-section-bg{
    /* background: linear-gradient(180deg, rgb(61 61 61 / 60%), rgb(0 0 0 / 46%)), url(../images/home/contact-helpdesk-customer-service-spaceship-graphic-concept.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    height: 25vh;
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
    text-align: center;
    margin-top: 100px;
    background: #ffffff;
    border-bottom: 1px solid #f5f5f5;

}
.product-section-bg .contact-main h1
{
        color: #000;
    font-size: 65px;
    font-weight: 700;
}
.product-section-bg .breadcrumb-container {
    color: #000;
    font-size: 18px;
}
.product-section-bg .breadcrumb-container a {
    color: #000;
    text-decoration: none;
}
.main-sec-imf{
    margin-top:50px; width:400px; overflow:hidden;
}