@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
   --bodytext: #122445;     /*#142445 #2C3A5A*/
   --primary: #122445; /* #102F7C */
   --secondary: #D7070E;   
   --darkcolor: #122445;      /*#142445 #0A2747*/
   --lighttext: #707DA8;
   --white: #ffffff;
   --black: #000000;
   --darkBg: #142445;   
   --lightBg: #F8F8FE;
   --lightBg2: #DAE9FF;
   --lightBg3: #BECDF5;
   --extralightBlue: #DAE9FF;
   --border-color: #C4D0EB;
   --lite-border-color: #e5e5e5;   
   --font: 'Poppins', sans-serif; 

   --h1Title: #122445;
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);    
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--bodytext);
    background-color: var(--white);
    overflow-x: hidden;        
}
.text-white {
    color: var(--white) !important; 
}
.text-dark {
    color: var(--darkcolor) !important; 
}
.text-link {
    color: var(--primary) !important; 
    cursor: pointer;
}
.light-bg {
    background-color: var(--lightBg) !important;
}
.light-bg2 {
    background-color: var(--lightBg2) !important;
}
.light-bg3 {
    background-color: var(--lightBg3) !important;
}
.dark-bg {
    background: var(--darkBg) !important;
}


a {
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
.small_text {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}
.main_title {
    color: var(--secondary);
    font-size: 56px;
    line-height: 110%;
    font-weight: 600;    
}
p {
    margin: 0;    
    line-height: 150%;
    font-weight: 300;       
}
p ~ p {
    margin-top: 20px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6  {
    font-family: var(--font);
    margin: 0px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 120%;
}
h1, .h1 {    
    font-size: 72px;    
    line-height: 110%;
} 
h2, .h2 {    
    font-size: 45px;  
    line-height: 110%;  
} 
h3, .h3 {    
    font-size: 30px;  
    line-height: 110%;  
} 
h4, .h4 {    
    font-size: 22px;    
}
h5, .h5 {
    font-size: 20px;
}
h6, .h6 {
    font-size: 18px;
}

/* Font Weight */
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}

/* Form */
.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;        
    transition: all 0.2s ease 0s;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer; 
    display: inline-flex;
    align-items: center;
    gap: 15px;   
    border-radius: 50px;
}
.btn.btn-primary {
    background-color: var(--primary);       
}
.btn.btn-primary:hover {
    background-color: var(--secondary);      
    border-color: var(--secondary); 
}
.btn.btn-secondary {
    background-color: var(--secondary);       
}
.btn.btn-secondary:hover {
    background-color: var(--primary);      
    border-color: var(--primary);     
}
.btn.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
}
.btn.btn-outline:hover {
    background-color: var(--third-color);      
    border-color: var(--third-color); 
    color: var(--white) !important;
}
.btn.btn-default {
    color: var(--primary);
}
.btn.btn-primary svg, .btn.btn-secondary svg {
    fill: none;
    stroke: var(--white);
}

.form-group {
    margin-bottom: 20px;
}
.label-title {
    font-size: 16px;
    font-weight: 300;
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;    
    color: var(--darkcolor);
}
.form-control {
    padding: .60rem .85rem;
    border-color: var(--border-color);
}
textarea.form-control {
    min-height: 100px;
}


/****||Placeholder Color||*****/
::-webkit-input-placeholder {
    color: rgba(143, 155, 171, 0.6) !important;
 }
 
 :-ms-input-placeholder {
    color: rgba(143, 155, 171, 0.6) !important;
 }
 
 ::placeholder {
    color: rgba(143, 155, 171, 0.6) !important;
 }

 
/**||Prefix Class Name||**/
.justify-content-right, .justify-content-center, .justify-content-left, .align-center, .align-bottom, .align-left, .align-right, .align-top, .align-between, .justify-space-between{
    display: flex !important;
}
.align-right, .justify-content-right            { justify-content: flex-end !important;}
.align-justify-center, .justify-content-center  { justify-content: center !important;}
.align-left, .justify-content-left              { justify-content: flex-start !important;}
.align-between, .justify-space-between          { justify-content: space-between !important;}
.align-center     { align-items: center !important;}
.align-bottom     { align-items: flex-end !important;}
.align-top        { align-items: flex-start !important;}

/* Container */
.section {
    padding: 100px 0;      
}  

/* Title */
.titleDiv {
    margin-bottom: 30px;
}
.titleDiv.mb40 {
    margin-bottom: 40px;
}
.mainTitle {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;    
}
.mainTitle span {
    font-weight: 300;
}
h1.mainTitle {
    font-size: 60px; /*72*/
    color: var(--h1Title);    
}
h3.mainTitle {
    font-size: 36px;
}


/* Header */
.header {    
    position: fixed;
    left: 0;
    right: 0;
    z-index: 11;    
    padding: 15px 0;
    transition: all 0.3s ease-in 0s;
}
.header.fixed {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow:  0 0 20px rgba(0,0,0,0.1);
}
.header-row {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.logo {
    width: 170px;
}
.headBtn {
    margin-left: 20px;
}
.headBtn .btn {    
    border: 1px solid var(--white);
}

/* Banner */
.home-banner .carousel {
    height: 100%;
    position: relative;
}   
.home-banner .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 750px;    
}
.home-banner .carousel-item {
    height: 100%;  
}
.h-b_fill {
    background: #F2F7FE;
    background-position: left center;
    width: 100%;
    height: 100%;    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;    
}
.h-b_fill:before {
    position: absolute;
    z-index: 0;
    content: '';
    top: 0;
    right: calc(50% - 870px);
    width: 1200px;
    height: 100%;
    background: url('../images/banner-shap-bg.png') no-repeat 0px 0px;    
    mix-blend-mode: luminosity;    
    filter: grayscale(100%);
    background-size: 100%;
}
.h-b_caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;    
    padding: 0;
}
.h-b_item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;        
}
.h-b_center {
    position: relative;
    top: 50%;
    left: 50%;
    text-align: left;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    padding-top: 75px;
}
.bannnerBox {  
  max-width: 550px;  
  position: relative;
  z-index: 2;
  text-align: left;
}  
.bannnerBox h1 {
    margin: 0 0 35px 0;
    color: var(--primary);   
    color: var(--h1Title); 
}
.bannnerBox h1 span {
    display: block;
    margin-bottom: 10px;
}
.bannnerBox p {
    max-width: 500px;
    font-size: 22px;
    color: var(--bodytext);    
    margin-bottom: 35px;
}
.carousel-indicators {
    gap: 12px;
    max-width: 1230px;
    margin: 0 auto 15px;
    justify-content: flex-end;
    padding: 0 30px;
}
.carousel-indicators [data-bs-target] {
    width: 17px;
    height: 17px;
    background-color: #AEBBE5;
    border-radius: 50%;
    opacity: 1;
}
.carousel-indicators .active {
    background-color: #284092;
}
.bannnerProdImg {
    display: flex;
    align-items: center;
    min-height: 430px;
}

.home-banner .swiper-pagination-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1230px;
    width: 100%;
    margin: auto;    
}
.home-banner .swiper-pagination {
    left: 0;
    right: 0;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:15px;    
    max-width: 1230px;
    width: 100%;
    margin: 0 auto 20px;
    padding: 0 30px;
}
.home-banner .swiper-pagination-bullet {
    margin: 0 !important;
    width: 15px;
    height: 15px;
    opacity: 1;
    background-color: #AEBBE5;
}
.home-banner .swiper-pagination-bullet-active {    
    background-color: #284092;
}


/* Footer S */
.footer {
	background: var(--lightBg);
    font-size: 16px;
    font-weight: 300;
}
.foooterMain {
	padding: 40px 0 0 0;
    border-top: 1px solid var(--border-color);
}
.footerBox {
	 padding: 20px 0;	 
	 color: var(--darkcolor);
}
 .footerBox h5 {
	 margin-bottom: 20px;
     font-size: 16px;
     font-weight: 500;
	 color: var(--primary);	 
}
.footerLogo {
    margin-top: 15px;
	margin-bottom: 45px;
    max-width: 200px;
}
.followUs {
    display: flex;
    align-items: center;
    gap: 20px;
}
.followUs h5 {
    margin: 0 !important;
} 
.footerNav ul {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 display: flex;
	 flex-direction: column;
	 gap: 10px;
}
.footerNav ul li {
	 margin: 0;
	 padding: 0;
}
.footerNav ul li a {
	color: var(--darkcolor);	    
	text-decoration: none;
}
.footerNav ul li a:hover {
	 color: var(--secondary);
}
.footerAddList {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footerAddBox {
	display: flex;
	align-items: center;
	gap: 12px;     
}
.footerAddBox i {
	min-width: 24px;
}
.footerAddBox a {
	 color: inherit;
	 cursor: pointer;
}
.footerAddBox span {
    flex: 1;
}
.footerAddBox p {
	 margin: 0;
}
.footerCopyright {
	margin-top: 30px;
	padding: 25px 0 25px 0;
	border-top: 1px solid var(--border-color);
}
.footerCopyright a {
    color: var(--secondary);
}
.footerCopyright a:hover {
    opacity: 0.8;
}
.footercopy {	    
	color: var(--bodytext);	 
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px 20px;
}
.footercopy .copyright {
	 display: block;
}
.footercopy .footerCopyLink {
	 margin: 0;
	 padding: 0;
	 display: flex;
	 gap: 20px;
}
.footercopy .footerCopyLink li {
	 margin: 0;
	 padding: 0;
	 list-style: none;
}
.footercopy .footerCopyLink li a {
	 color: inherit;
}
.footercopy .footerCopyLink li a:hover {
	 color: var(--primary);
}
.footerSocial a, .social a {
    cursor: pointer;
    width: 35px;
    height: 35px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerSocial a:hover {
	background-color: var(--secondary);
}
.footerSocial a img {
    width: 20px;
}
.footerSocial, .social {
	 gap: 30px;
}
.footerSocial a, .social a {
	 cursor: pointer;
}
.social {
	 gap: 30px;
} 
/* Footer End */




.countdownsection, .client-section1, .world-sec, .best-price-bg {
    display: none !important;
}

/* About Sec */
.aboutHomeSec .titleDiv {
    margin-bottom: 20px;
    max-width: 600px;
}
.aboutHomeSec h4 {
    font-weight: 500;
}
.empDataBox {
    background: #EBF5F9;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}
.empDataBox h6 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--primary);
    line-height: 1.1;
}
.empDataBox small {
    font-size: 20px;
    font-weight: 300;
    color: var(--darkcolor);
    line-height: 1.5;
    display: block;
}

/* Featured Product */
.featuredExpBg {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}
.featuredShap {
    position: absolute;    
    display: block;
}
.featuredShap1 {
    top: 0;
    right: 3%;
    z-index: -1;
}
.featuredShap2 {
    bottom: 0;
    left: 10px;
    z-index: -1;
}
.featuredListing {
    justify-content: center;
}
.featuredBox {
    background: #EAF1FF; 
    border-radius: 20px;
    text-align: center;
    position: relative;    
    text-decoration: none;
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0px 2px 4px 0px #58688857;

}
.featuredBox .viewReadIcon {
    position: absolute;
    right: 20px;
    top: 20px;
}
.featuredBox .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding-top: 20px;
    background: var(--white);
}
.featuredBox .icon img {
    max-height: 90px;
}
.featuredBox .info {    
    padding: 20px 10px;  
}
.featuredBox .info h5 {
    line-height: 120%;
    font-size: 18px;
    font-weight: 600;    
    margin-bottom: 2px;
    color: var(--primary);
}
.featuredBox .info small {
    display: block;
    font-size: 13px;
    color: var(--lighttext);
}
.viewReadIcon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    background-color: rgb(215 7 14 / 14%);
    background-image: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.64062 12.5618L14.1535 8.22419" stroke="%23D7070E" stroke-width="1.23931" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.22656 6.63721L14.1518 8.22487L12.5641 14.1501" stroke="%23D7070E" stroke-width="1.23931" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.featuredViewBtn {
    margin-top: 50px;
    text-align: center;
}
.featuredViewBtn .btn:hover {
    border-color: rgba(255,255,255,0.5);
}

.expertiseCard {    
    background: rgb(63 69 118); 
    padding: 25px;  
    border-radius: 10px;
}
.expertiseCard h5 {
    line-height: 120%;
    font-size: 20px;
    font-weight: 600;    
    margin-bottom: 10px;
    color: var(--white);
}
.expertiseCard small {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    line-height: 150%;
}

/* Certification */
.certificationBg {
    overflow-x: hidden;
}
.certificationSlider .certificationSwiper {
    margin-left: -120px;
    margin-right: -120px;
}
.certificationSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
.certificationSlider .slick-slide{
    padding-left: 8px;
    padding-right: 8px;
}
.certyCardBox {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    max-width: 300px;    
    margin: 2px auto;
}
.certyCardBox .image {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;    
    border-bottom: 1px solid var(--border-color);
    padding-top: 10px;
    padding-bottom: 10px;
}
.certyCardBox .image img {
    /* max-width: 180px;
    max-height: 180px; */
    max-height: 180px;
}
.certyCardBox h6 {    
    margin: 0;
    padding: 12px 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.certificationSlider .slick-prev {
    right: 14%;
    left: auto;
}
.certificationSlider .slick-next {
    right: 10%;
}
.certificationSlider .slick-arrow {
    top: -60px;
}
.slick-arrow {    
    z-index: 1;
    font-size: 0;
    line-height: 0;
    position: absolute;
    /* top: -60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #D7070E;
    padding: 0;    
    cursor: pointer;
    color: transparent;    
    outline: none;
    background: transparent;
}
.slick-arrow::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;    
    background-image: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.4987 1.83301L1.83203 8.49967L8.4987 15.1663" stroke="%23D7070E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.1654 8.5H1.83203" stroke="%23D7070E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
    margin: auto;
}
.slick-next::before {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}


/* Inner Banner */
.innerBanner {
    padding-top: 85px;
	min-height: 400px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
    background-position: right center;
    background-color: var(--lightBg2);
}
.innerBannerBox {	 
	position: relative;
}
.innerBannerBox .btn {
    margin-top: 30px;
} 
.productDetailBanner, .contactrBanner {
    min-height: 300px;
}
.productDetailBanner .mainTitle {
    text-align: center;
}


/* About Pages S */
.aboutData {    
    max-width: 450px;
    width: 100%;
}
.aboutData h6 {
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: var(--secondary);
    line-height: 1.1;
}
.aboutData small {
    font-size: 16px;
    font-weight: 300;
    color: var(--darkcolor);
    line-height: 1.3;
    display: block;
}

/* History Section */
.historyBox {
    background: rgb(39 143 255 / 8%);
    display: flex;    
    align-items: center;
    padding: 15px;
    gap: 20px;
}
.historyBox .image {
    width: 30%;
}
.historyBox .info {
    flex: 1;
    padding: 0 30px 0 10px;
}
.historyBox .info h4 {
    margin: 0 0 10px 0;
    font-size: 26px;
    font-weight: 300;
    color: #C4D0EB;
}
.historyBox .info h3 {
    margin: 0 0 20px 0;
    font-weight: 600;
    color: #C4D0EB;
}
.historyBox .info p {
    color: #C4D0EB;
    line-height: 170%;
}
.historyBox .yearNo {
    font-size: 70px;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: -.01em;
    width: 65px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .6;
    z-index: 0;
}
.historyBox .yearNo span {
    transform: rotate(-90deg);
    display: block;
}

.sliderYearSec {
    padding-top: 35px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: -2px;
}
.slideYear {
    font-size: 26px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    display: table;
    padding: 10px 15px;
    cursor: pointer;
    margin: auto;
    border-bottom: 3px solid transparent;
}
.sliderYearSec .slick-slide.slick-current .slideYear {
    border-color: var(--secondary);
    color: var(--white);
}


.historySlider .slick-prev {
    left: -60px;
}
.historySlider .slick-next {
    right: -60px;
}
.historySlider .slick-prev, .historySlider .slick-next {
    z-index: 1;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.historySlider .slick-prev::before, .historySlider .slick-next::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 20px;
    height: 41px;
    background-image: url('data:image/svg+xml,<svg width="26" height="46" viewBox="0 0 26 46" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.25 43.501L2.75 23.001L23.25 2.50098" stroke="white" stroke-width="3.89432" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    margin: auto;
}
.historySlider .slick-next::before {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

/* Goal Sec */
.goalRow .info {
    padding-right: 50px;
}
.goalRow .image {
    margin-top: -85px;
    margin-bottom: -20px;
}
.list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list ul li {
    margin: 0;
    padding-left: 50px;
    position: relative;
    list-style: none;
    font-weight: 300;
}
.list ul li::before {
    content: "";
    background-color: var(--secondary);
    background-image: url('data:image/svg+xml,<svg width="18" height="13" viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 1L6 12L1 7" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.list.list2 ul li {padding-left: 30px;}
.list.list2 ul li::before{
    background-image: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2662_3176)"><path d="M16.5 8.31039V9.00039C16.4991 10.6177 15.9754 12.1914 15.007 13.4868C14.0386 14.7821 12.6775 15.7297 11.1265 16.1883C9.57557 16.6469 7.91794 16.5918 6.40085 16.0313C4.88376 15.4708 3.58849 14.435 2.70822 13.0782C1.82795 11.7214 1.40984 10.1164 1.51626 8.50262C1.62267 6.88881 2.24791 5.35263 3.29871 4.12319C4.34951 2.89375 5.76959 2.03692 7.34714 1.6805C8.9247 1.32407 10.5752 1.48714 12.0525 2.14539" fill="white"/><path d="M16.5 8.31039V9.00039C16.4991 10.6177 15.9754 12.1914 15.007 13.4868C14.0386 14.7821 12.6775 15.7297 11.1265 16.1883C9.57557 16.6469 7.91794 16.5918 6.40085 16.0313C4.88376 15.4708 3.58849 14.435 2.70822 13.0782C1.82795 11.7214 1.40984 10.1164 1.51626 8.50262C1.62267 6.88881 2.24791 5.35263 3.29871 4.12319C4.34951 2.89375 5.76959 2.03692 7.34714 1.6805C8.92469 1.32407 10.5752 1.48714 12.0525 2.14539" stroke="%23D7070E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M16.5 3L9 10.5075L6.75 8.2575" stroke="%23D7070E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_2662_3176"><rect width="18" height="18" fill="white"/></clipPath></defs></svg>');
    background-size: 18px;
    width: 18px;
    height: 24px;
    background-color: transparent;
}

/* Mission & Vision Section */
.missionVisionBox {
    background: var(--secondary);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    margin-bottom: -140px;
}
.missionVisionBox h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}   
.missionVisionBox p {
    color: var(--white);
}

/* Group */
.section.groupSec {
    padding-top: 240px;
}
.groupListing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.groupAboutListing .groupCard .image {
    border-radius: 20px;
}
.groupAboutListing .groupCard:nth-child(even) {
    flex-direction: row-reverse;
}
.groupAboutListing .groupCard:nth-child(even) .image{
    padding-right: 0;
    padding-left: 90px;
}
.groupAboutListing .groupCard:nth-child(even) .info{
    margin-left: auto;
    margin-right: -100px;
}

.groupCard {
    display: flex;
    align-items: flex-end;
}
.groupCard .image {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    /* padding-right: 125px; */    
    padding-right: 125px;    
    background-color: var(--white);
    min-height: 400px;    
    max-width: 100%;
    width: 50%;
    display: flex;
}
.groupCard .image .img {
    margin: auto;
    max-width: 300px;/*375*/
}
.groupCard .image .img img {
    max-height: 150px;
} 
.groupCard .image .imageBrandTitle {    
    margin: 0;    
    font-weight: 600;
    line-height: 120%;
}
.groupCard .info {
    margin-bottom: 40px;
    margin-left: -100px;    
    flex:1;
    padding: 40px;
    border-radius: 20px;        
    background: var(--lightBg3);
    position: relative;
}
.groupCard .info h4 {
    margin-bottom: 10px;   
    font-weight: 600;
}
.groupCard .info p {    
    margin-bottom: 0;
}
.groupCard .info p strong {    
    font-weight: 500;
}

/* Business Partners */
.businessBrandBox {
    background: var(--white);
    min-height: 180px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.businessBrandBox img {
    max-height: 110px;
}

/* Manufacturing Page S */
.unitListing .groupCard:nth-child(even) {
    flex-direction: row-reverse;
}
.unitListing .groupCard .image {
    padding: 0 !important;
    max-width: 600px;
    min-height: 380px;
    background-size: cover;
    background-position: center center;
}
.unitListing .groupCard:nth-child(even) .info {
    margin-left: auto;
    margin-right: -100px;
}

.capabilCard {
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    gap: 10px 40px;
    height: 100%;
}
.capabilCard .icon {
    min-width: 75px;    
    max-width: 75px;
}
.capabilCard .info {
    flex: 1;
}
.capabilCard .info h4 {
    margin-bottom: 10px;
    font-weight: 600;
}
.capabilCard .info p  ~ p {
    margin-top: 5px;
}


/* Products Page S */
.featuredProdPageSec {
    
}
.glanceSec {    
    border-bottom: 1px solid var(--border-color);
}
.glasInfo {
    max-width: 1000px;    
    width: 100%;
    margin: auto;
    text-align: center;
}
.glasInfoSlider {
    /* max-width: 1000px; */
    width: 100%;
    margin: auto;
    /* border: 1px solid var(--lightBg);
    border: 1px solid #eee; */
    max-width: 1000px;
}
.glasInfoSlider .swiperArrowGroup {
    margin: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(50% - 18px);    
    justify-content: space-between;
}
.glasInfoSlider .swiperArrowGroup .swiper-arrow {
    background-color: rgba(255,255,255,0.5);
}
.glasImage {   
    /* overflow: hidden;    */
    /* border-radius: 20px;  */
    /* min-height: 650px; */
    display: flex;
    background-color: red;
    align-items: center;
    border-radius: 20px;
}
.glasImage img {     
    width: 100%; 
    /* height: 600px; */
    object-fit: cover;
    /* padding: 50px 0; */
}
.glasInfoSlider .swiper-slide {
    border-radius: 20px;
    border: 1px solid var(--border-color);
}
.glasInfoSlider .swiper-slide:nth-child(1n) .glasImage {
    background-color: #ddc56b;
}
.glasInfoSlider .swiper-slide:nth-child(2n) .glasImage {
    background-color: #bc3881;
}
.glasInfoSlider .swiper-slide:nth-child(3n) .glasImage {
    background-color: #6c63ff;
}
.glasInfoSlider .swiper-slide:nth-child(4n) .glasImage {
    background-color: #53b4db;
}


.swiperArrowGroup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.swiperArrowGroup .swiper-arrow {  
    margin: 0;  
    z-index: 1;
    font-size: 0;
    line-height: 0;
    position: relative;    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #D7070E;
    padding: 0;    
    cursor: pointer;
    color: transparent;    
    outline: none;
    background: transparent;
    left: auto;
    right: auto;
}
.swiperArrowGroup .swiper-arrow::after {
    font-family: inherit;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;    
    background-image: url('data:image/svg+xml,<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.4987 1.83301L1.83203 8.49967L8.4987 15.1663" stroke="%23D7070E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.1654 8.5H1.83203" stroke="%23D7070E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
    margin: auto;
}
.swiperArrowGroup .swiper-button-next::after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}


/* Product Detail */

.productDetailSec {
    display: flex;
    background: #F5FAFF;
}
.productMenu {
    width: 300px;
    padding: 60px 20px;    
}
.productMenu .nav {
    gap: 5px;
}
.productMenu .nav .nav-link {
    font-size: 16px;
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 5px;
    justify-content: flex-start;
    text-align: left;
} 
.productMenu .nav .nav-link.active, .productMenu .nav .show>.nav-link {
    background: var(--primary);
    color: var(--white);
}

.productDetailSec .tab-content {
    flex: 1;
    padding: 60px 30px;
    background-color: var(--white);
    min-height: 725px;
}
.searchBox {
    position: relative;
}
.searchBox input{
    border-radius: 50px;
    height: 45px;
    padding-left: 20px;
    padding-right: 60px;
}
.searchBox .btn {
    border-radius: 50px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 45px;    
    z-index: 1;
    padding: 0;
    background-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.1669 19.0146C15.6515 19.0146 19.287 15.4329 19.287 11.0146C19.287 6.59637 15.6515 3.01465 11.1669 3.01465C6.68235 3.01465 3.04688 6.59637 3.04688 11.0146C3.04688 15.4329 6.68235 19.0146 11.1669 19.0146Z" stroke="%232C4495" stroke-width="1.94286" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.3176 21.0138L16.9023 16.6638" stroke="%232C4495" stroke-width="1.94286" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;        
    border: 0;
}

/* Table  */
.paginationDiv {
    gap: 5px 15px;
    font-weight: 300;
}
.paginationDiv select {
    width: 60px;
    padding-right: 1.75rem;
}
.table>:not(caption)>*>* {
    color: var(--bodytext);
    border-color: #EEEEEE;    
    font-size: 16px;
    padding: .60rem 0.75rem;
    line-height: 125%;
}
.table th {
    font-weight: 400;
    background: #E8EEFA !important;
    color: var(--darkcolor);
}
.table td {
    font-weight: 300;    
}
.table-group-divider {
    border-top: 0;
}
.table .prodCol-1 {
    width: 3%;
}
.table .prodCol-2 {
    width: 20%;
}
.table .prodCol-3 {
    width: 20%;
}
.table .prodCol-4 {
    width: 38%;
}
.table .prodCol-5 {
    width: 20%;
}

.featuredRelatedBg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.productSlider {
    /* margin-left: -8px;
    margin-right: -8px; */
}
.productSlider .slick-slide {
    padding-left: 8px;
    padding-right: 8px;
}
.productSlider .slick-prev {
    right: 60px;
    left: auto;
}
.productSlider .slick-next {
    right: 0;
}
.productSlider .slick-arrow {
    top: -60px;
    background-color: var(--white);
    border-color: var(--white);
}

.featuredRelatedBg .swiperArrowGroup  .swiper-arrow {    
    background-color: var(--white);
    border-color: var(--white);
}


/* Product Export */
.exportModal .modal-dialog {
    max-width: 550px;
}
.quoteModal .modal-dialog{
    max-width: 550px;    
}

.exportModal .modal-content {
    border-radius: 0;
}
.exportModal .modal-body {
    padding: 40px;
} 
.exportModal .modal-body .modal-header{
    padding: 0;
    border: 0;
    align-items: flex-start;
    margin-bottom: 25px;
} 
.exportModal .modal-body .modal-header p {
    font-size: 16px;
}
.downloadBtn .btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}
.globalCountries {
    display: flex;
    gap: 20px 40px;
}
.globalMap {
    flex: 1;
}
#chartdiv {
    width: 100%;
    height: 445px;
}
.globalMapMenu {
    width: 200px;
    /* max-height: 444px;
    overflow-y: auto;     */
}
.globalMapMenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px 7px;
}
.globalMapMenu ul li {
    margin: 0;
    padding: 0;
}
.globalMapMenu ul li a {
    padding: 2px 15px;
    border-radius: 50px;    
    color: #C91117 !important;
    background: rgb(235 149 152 / 16%);
    border: 1px solid #C91117;
    display: inline-block;
    cursor: default;
    font-size: 14px;
}
.customScroll::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #DBE4F9;
}
.customScroll::-webkit-scrollbar {
	width: 12px;
	background-color: #DBE4F9;
    border-radius: 10px;	
}
.customScroll::-webkit-scrollbar-thumb {
	border-radius: 10px;	
	background-color: #2C4495;
}
.regulatorySec p strong {
    font-weight: 500;
}
.expBox {
    padding: 10px;
    background: var(--white);
    border-radius: 10px;
    display: block;
}
.expBox .image {
    height: 268px;
    border-radius: 10px;
    overflow: hidden;
}
.expBox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        
}
.expBox h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 25px 0 15px;
}


/* Contact Page */
.contactDetail {
    padding-bottom: 60px;
}
.contactCard {
    padding: 30px 30px;
    background: #EAF1FF;
    height: 100%;
}
.contactCard h4 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;    
}
.contactCard h4 img {
    width: 36px;
}
.contactCard p {    
    font-weight: 300;
    margin: 0;    
}
.contactCard p ~ p {
    margin-top: 5px;
}
.contactCard p strong {
    font-weight: 500;
    color: var(--darkcolor);    
}
.contactCard a {
    color: inherit;
}
.contactMapSec h3 {
    margin-bottom: 20px;
}
.contactFormSection {
    padding: 50px;
    background: #EAF1FF;
}
.mapBox {
    height: 639px;
}   
.mapBox iframe {    
    height: 100%;
    width: 100%;
    display: block;        
    border: 0;
}

/* Fluient Form */
.contactForm .fluentform .ff-el-group.ff_submit_btn_wrapper {
    margin-bottom: 0;
}
.contactForm .fluentform .ff-el-input--label {
    line-height: 1.2;
}
.contactForm .ff-default .ff-el-input--label label {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 300;    
    line-height: 1.2;    
    color: var(--darkcolor);
}
.contactForm .fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
    color: var(--primary);
}
.contactForm .ff-default .ff-el-form-control {
    font-family: var(--font);
    font-size: 16px;
    padding: 8px 15px;
    border-color: var(--border-color);
    border-radius: 4px;
}

.contactForm .ff-default .ff_btn_style {
    border-radius: 50px;
    font-weight: 400;
    padding: 12px 30px;
}
.contactForm .ff-default .ff_btn_style.btn.btn-primary {
    border-color: var(--primary);
    background-color: var(--primary);
}
.contactForm .ff-default .ff_btn_style.btn.btn-secondary {
    border-color: var(--secondary);
    background-color: var(--secondary);
}
.contactForm .fluentform {
    display: flex;
    flex-direction: column;
}
.contactForm .fluentform .ff_force_hide {
    display: block !important;    
    visibility: visible !important;
}
.contactForm .fluentform .frm-fluent-form {
    order: 2;
}
.contactForm .ff-message-success {  
    margin: 0 0 15px 0;  
    color: #0a3622 !important;
    background: #d1e7dd !important;
    border-color: #a3cfbb !important;
}
.contactForm .ff-errors-in-stack {
    margin: 0 0 15px 0;  
    border: 1px solid #f1aeb5 !important;    
    padding: 15px;
    position: relative;
    color: #0a3622 !important;
    background: #f8d7da !important;    
}
.contactForm .ff-el-is-error .text-danger {
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.5;
}
/* Contact Form Message End */

/* Export Modal Form S */
.contactForm #fluentform_3_success {
    padding: 40px 20px;
    text-align: center;
    background: var(--lightBg) !important;
    border: 0;
    box-shadow: none;
    margin: 10px 0 0 0;
}
.contactForm #fluentform_3_success p {
    font-size: 20px;
    color: var(--primary) !important;
}
.contactForm .fluentform_wrapper_3 .frm-fluent-form.ff_force_hide {
    display: none !important;
}
.contactForm #fluentform_3_success .btn.btn-secondary {
    margin: 20px auto 0;
}
/* Export Modal Form E */


.dt-layout-table {
    margin-top: 15px !important;   
    margin-bottom: 15px !important; 
}
div.dt-container div.dt-search label {    
    display: none !important;
}
div.dt-container div.dt-search input {
    margin: 0 !important;
    border-radius: 50px;
    width: 100% !important;
    display: block !important;
    min-width: 300px;
    padding-left: 40px;
}
div.dt-container div.dt-search input {    
    background-image: url('data:image/svg+xml,<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.1669 19.0146C15.6515 19.0146 19.287 15.4329 19.287 11.0146C19.287 6.59637 15.6515 3.01465 11.1669 3.01465C6.68235 3.01465 3.04688 6.59637 3.04688 11.0146C3.04688 15.4329 6.68235 19.0146 11.1669 19.0146Z" stroke="%232C4495" stroke-width="1.94286" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.3176 21.0138L16.9023 16.6638" stroke="%232C4495" stroke-width="1.94286" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: left 15px center;            
    background-size: 18px;
}
.dt-container div.dt-search label,
.dt-container div.dt-length label, .dt-info {
    font-weight: 300 !important;
    font-size: 15px;
}
table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: left !important;
}
.pagination {
    margin: 0 !important;
    display: flex;
    gap: 6px;
    --bs-pagination-disabled-color: rgba(33, 37, 41, 0.75);  
   --bs-pagination-disabled-bg: var(--lightBg);   
   --bs-pagination-color: var(--bodytext);
   --bs-pagination-active-bg: var(--secondary);
   --bs-pagination-active-border-color: var(--secondary); 
}
.pagination .page-link {
    border-radius: 50px !important;
    min-width: 40px;
    min-height: 40px;
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.pagination .active>.page-link, .pagination .page-link.active {  
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}