body
{
	font-family: "Poppins", sans-serif;
}

.navigation-hbsect
{
    position: relative;
    background-size: cover;	
	background-repeat: no-repeat;
}

nav 
{
	top: 0;
    width: 100%;
    z-index: 999;
    position: absolute;
    padding: 21px 0;
}

.nav-wrap 
{
    display: flex;
    height: 100px;
    justify-content: space-between;
}

.nav-wrap a img 
{
    height: 92px;
}

section.herobanner-sect 
{
    width: 100%;
    height: 100%;
    position: relative;
    /* background-image: url('../images/hb-bkg.png'); */
}

.nav-wrap ul 
{
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    column-gap: 40px;
    align-items: center;
}

.nav-wrap ul li a 
{
    color: #0A2E6C;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;	
}

.nav-wrap ul li a.active 
{
	color: #3d4b8c;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 3px solid #3d4b8c;
}

.craft-hb-sect 
{
    height: 700px;
    overflow: hidden;
	position: relative;
}

.logo-wrap
{
    padding: 10px;
    border-radius: 10px;	
	background-color: #fff;
}

.craft-hb-sect .item img 
{
    width: 100%;
    height: 100%;
	object-fit:cover;
	position: relative;
    top: 80px;	
}

section.craft-hb-sect .container-fluid 
{
    padding: 0;
    position: relative;
}

.craft-slider 
{
    position: relative;
}

/* .craft-slider .item:before 
{
    content: '';
    top: 0;
    left: 0;
	z-index:999;
    width: 100%;
    height: 100%;
	pointer-events: none;
    position: absolute;
    background-color: #000000b8;
} */

.nav-wrap ul li a 
{
    color: #fff;
}

.craft-slider .item 
{
    width: 100%;
    height: 100%;
}

.content-onBanner 
{
    color: #fff;
    left: 50%;
    bottom: 30px;
    position: absolute;
    z-index: 9999;
    transform: translateX(-50%);
    text-align: center;
}

.content-onBanner h2 
{
    margin-bottom: 16px;
}

section.about-sect 
{
    padding: 80px 0;
    margin-bottom: 80px;
}

.about-curved
{
	overflow: hidden;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #FFFFFF;
    border-radius: 50% 50% 0% 0%;
    width: fit-content;
    position: absolute;
    bottom: -110px;
    right: 0;
}

.about-left {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 50px;
}

.rotate-infinite 
{
    -webkit-animation: rotate-infinite 15s linear infinite;
    animation: rotate-infinite 15s linear infinite;
}

@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.rotate-wrap {
    position: absolute;
    top: -50px;
    left: -100px;
}

.about-right p {
	font-size: 17px;
    line-height: 34px;
    color: #333;
	text-align: justify;
}

h2.common-header {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 45px;
    text-align: left;
}

.mt20
{
	margin-top:20px;
}

.filled-btn 
{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    background-color: #3d4b8c;
	border-bottom:1px solid #3d4b8c;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
	display: inline-flex;
    width: fit-content;	
	transition: .5s all ease;
}

.outline-btn 
{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    background-color: unset;
	border-bottom:1px solid #3d4b8c;
    color: #3d4b8c;
    border-radius: 0px;
	padding-bottom:7px;
    text-decoration: none;
	display: inline-flex;
	 width: fit-content;
	transition: .5s all ease;
}

.filled-btn:hover
{
	color: #3d4b8c;
    background-color: unset;
	border:1px solid #3d4b8c;	
	transition: .5s all ease;
}
/* 
.outline-btn:hover
{
    color: #fff;
    background-color: #3d4b8c;
	border:1px solid #3d4b8c;	
	transition: .5s all ease;
} */

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.share-holder-sect {
    padding: 80px 0;
    background-color: #fdf9f2;
}

.common-header {
    text-align: center;
}

.marquee-wrapper {
	overflow: hidden;
    border-radius: 12px;
    padding: 25px 0;
    position: relative;
    padding-bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
}

.marquee-item {
	white-space: nowrap;
    margin: 0 7px;
    font-size: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
    min-width: 200px;
    border: 1px solid #c2c2c27d;
}

.marquee-item span {
    font-size: 18px;
    color: #333;
}

.marquee-item span {
  font-weight: bold;
      color: #333;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .marquee-item {
	font-size: 0.9rem;
	margin: 0 20px;
  }
}

@media (max-width: 600px) 
{
	.marquee-item {
		font-size: 0.9rem;
		margin-right: 30px;
	}
}

.button-flex {
    display: flex;
    justify-content: center;
}

section.cluster-sect {
    padding: 80px 0;
}

.cluster-grid {
    display: grid;
    grid-template-columns: auto 40%;
    grid-column-gap: 50px;
}

.iframe {
    width: 100%;
    height: 450px;
}

.iframe iframe {
    width: 100%;
    height: 100%;
}

.cluster-grid .common-header {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cluster-grid .common-header h2 {
    margin-bottom: 25px;
}

.core-box-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 23px;
}

.core-box 
{
    text-align: left !important;	
    padding: 33px 20px;
    border-radius: 20px;
	background-color: #fff;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.core-box .box-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 25px;
}

.core-box span {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}

section.program-sect {
    padding: 80px 0;
    background-color: #f6f1e7;
}

.core-head-wrap.header-mb {
    text-align: center;
    margin-bottom: 45px;
}

section.products-sect {
    padding: 80px 0 0;
}

.services-box {
    height: 420px;
}

.services-box img {
    height: 100%;
    object-fit: cover;
}

.core-box {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.core-box a {
    margin-top: 10px;
}

.craft-hb-sect .container-fluid,
.craft-slider,
.craft-hb-sect .owl-stage,
.craft-hb-sect .owl-item,
.craft-hb-sect.item
{
	height:700px;
	overflow:hidden;
}

nav {
    padding: 0;
    background-color: #fff;
}

.nav-wrap ul li a {
    color: #000;
}

.craft-hb-sect .owl-item
{
	position:relative;
}

.craft-slider .item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000de 100%) 0 0 no-repeat padding-box;
    pointer-events: none;
}

.content-onBanner h2 {
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
}

.content-onBanner p {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
}

.nav-wrap ul li a {
    font-size: 18px;
}

.nav-wrap ul {
    column-gap: 35px;
}

.about-big img {
    border-radius: 10px;
}

.common-header h2, 
h2.common-header,
.common-heading
{
    font-weight: 700;
    font-size: 40px;
}

.zigzag-grid.zz-ti 
{
    display: grid;
    grid-template-columns: auto 60%;
	grid-column-gap: 75px;
	align-items: center;
}

.zigzag-grid.zz-it 
{
    display: grid;
    grid-template-columns: 60% auto;
    grid-column-gap: 75px;
	align-items: center;
}

.mb-80
{
	margin-bottom:80px;	
}

.zig-img img 
{
    width: 100%;
}

.zig-text p 
{
    text-align: justify;
}

/* .zig-text ul 
{
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
	margin-bottom: 0;
} */

.zz-title 
{
    display: flex;
    margin-bottom: 37px;
	font-size: 25px;
    line-height: 35px;
    font-weight: 600;	
}

section.keysolution-sect .common-heading 
{
    margin-bottom:0px;
}

.zig-img img {
    height: 100%;
    object-fit: cover;
	transition: .5s all ease;
}

.zig-img {
    height: 442px;
	overflow:hidden;
	transition: .5s all ease;
}

.zig-img:hover img
{
	transform:scale(1.1);
	transition: .5s all ease;
}

.zig-text a {
    margin-top: 35px;
}

section.keysolution-sect h2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px !important;
}

.zig-text p {
    margin-bottom: 0;
}

.footer-top
{
	padding-top: 80px;
    background: #302e2f;
}

.mb-50 {
    margin-bottom: 50px;
}

.product-wrapper .owl-nav, 
.product-wrapper .owl-dots
{
    display: none;
}

.footerGrid 
{
	display: grid;
    grid-template-columns: 28% 15% 15% auto;
    gap: 80px;
}

.tp-footer-logo img 
{
    width: 268px;
}

.tp-footer-call-title 
{
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #fff;
    display: block;
    font-size: 16px;
}

.tp-footer-widget-title 
{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

footer ul 
{
    margin: 0px;
    padding: 0px;
}

.tp-footer-widget-content ul li 
{
    color: #c5c5c5;
    cursor: default;
    list-style: none;
    margin-bottom: 2px;	
}

.tp-footer-widget-content ul li a 
{
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #c5c5c5;
    padding-left: 0;
    position: relative;
    text-decoration: none;
}

.tp-footer-social svg 
{
    width: 15px;
    height: 15px;
}

.tp-footer-social svg path 
{
    fill: #fff;
}

.footer-botom 
{
    padding-top: 30px;
    background-color: #302e2f;
}

.tp-footer-copyright p 
{
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #4a4a4a;
}

.tp-footer-logo img {
    width: 140px;
    background-color: #fff;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-contact-info ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.footer-phone {
    display: flex;
    column-gap: 20px;
}

.footer-phone a:first-child {
    position: relative;
}

.footer-phone a:first-child:after {
    content: '';
    position: absolute;
    top: 6px;
    right: -11px;
    width: 2px;
    height: 17px;
    background-color: #c5c5c5;
}

.counter-cover p 
{
    margin-bottom: 0;
    font-size: 15px;
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.counter-box h2 
{
    margin-bottom: 12px;
}

.counter-box h2 span 
{
    font-weight: 700;
    font-size: 40px;
}

.counter-cover {
    font-size: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
    min-width: 200px;
    border: 1px solid #c2c2c27d;
}

section.inner-pagehb 
{
    padding: 80px;
    margin-top: 130px;
	overflow: hidden;
    position: relative;	
    background-size: cover;
    background-position: 10% 30%;
    background-repeat: no-repeat;	
    background-image: url('../images/inner-brd.jpg');
}

section.inner-pagehb:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a1;
}

.brd-wrap 
{
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.brd-wrap ul 
{
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
    display: flex;
    column-gap: 15px;
}

.brd-wrap ul a 
{
    text-decoration: none;
    color: #c2c2c2;
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 1px;
}

.big-image {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.big-image figure imge {
    width: 100%;
}

.big-image figure img {
    width: 100%;
    height: 100%;
	mix-blend-mode: multiply;
    object-fit: cover;
	transition: .5s all ease; 
}

.big-image figure {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    height: 240px;
}

section.gallery-sect {
    padding: 100px 0;
}

.about-page .about-sect .about-grid
{
    display: grid;
    grid-template-columns: 50% auto;
    grid-column-gap: 80px;
}

.about-page .about-sect .about-big
{
	height:350px;
}

.about-page .about-right h2 
{
    width: 70%;
}

.about-fullimg img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-fullimg 
{
    width: 100%;
}

.about-smallimg img 
{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 5px solid #fff;
}

.about-smallimg 
{
    gap: 20px;
    display: grid;
    margin-top: -60px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
}

.about-page .about-right h2 
{
    width: 70%;
}

.about-page .about-left 
{
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-fullimg 
{
    width: 100%;
    height: 350px;
}

.contact-grid 
{
    padding: 80px 0;
    display: grid;
    grid-template-columns: 40% auto;
    grid-column-gap: 50px;
}

.contact-left h2 
{
    width: 70%;
	margin-bottom: 20px;
}

.contact-left p {
    width: 70%;
}

.contact-right form 
{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-right form .form-group.span-full 
{
    grid-column: span 2;
}

.contact-right form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-right form .form-group label {
    margin-bottom: 5px;
}

.contact-right form .form-group input {
    border: none;
	padding: 0;
    border-bottom: 1px solid #c2c2c2;
}

.contact-right form .form-group input::placeholder
{
	font-size:14px;
}

.contact-right form .form-group textarea {
    height: 80px;
    display: flex;
    border: none;
    border-bottom: 1px solid #c2c2c2;
    resize: none;
}

.filled-btn 
{
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    background-color: #334483;
    border: 1px solid #334483;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 30px;
    display: inline-flex;
    width: fit-content;
    transition: .5s all ease;
}

.filled-btn:hover {
    color: #334483;
    background-color: unset;
    border: 1px solid #334483;
    transition: .5s all ease;
}

.contact-wrap iframe {
    width: 100%;
    height: 470px;
    margin-bottom: 80px;
}

#product .big-image figure {
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    height: 310px;
	background-color: #f5f3f6;
}

#product .big-image {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.big-image figure:hover img
{
	transform:scale(1.1);
	transition: .5s all ease;
}

section.catalog-pdf {
    background-color: #fdf9f2;
    padding: 50px;
}

.catg-pdf-wrap {
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.catg-text.common-heading h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
    width: 100%;
}

.catg-text.common-heading p {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    width: 70%;
}