/*  --------------------------------------------------
    Generic CSS Setup
    -------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    margin: 0;
}

body{
	font-size: 15px;
    color: #35363a;
    font-family: "Lato", sans-serif;
    height: 100%;
    width: 100%;
}

img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

button:focus, input:focus, select:focus, textarea:focus, a:focus{
    outline: none;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Lato", sans-serif;
	font-weight: 400;
    transition: .25s;
}

h1{
	font-size: 45px;
	margin-bottom: 5px;
	font-weight: 700;
}
h1 span{
	color: #4b5da7;
}
h2{
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 25px;
}
h2 span{
	display: block;
}
h3{
	font-size: 20px;
	margin-bottom: 10px;
}
h4{
	font-size: 30px;
	font-weight: 300;
	margin-bottom: 15px;
}
h5{
	font-size: 15px;
	font-weight: 600;
}
h6{
	color: #838383;
	line-height: 1.5;
}
p{
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}
form, video, iframe{
	width: 100%;
}
input, select, textarea{
	font-size: 15px;
	display: block;
	width: 100%;
	padding-bottom: 20px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #cdcdce;
	outline: 0;
	margin-bottom: 35px;
}
textarea{
	padding: 0;
}
input[type="submit"]{
	width: 155px;
	height: 42px;
	display: inline-block;
	color: white;
	letter-spacing: 2px;
	padding: 9px 30px;
	border-radius: 3px;
	text-transform: uppercase;
	background-color: #4b5da7;
	text-decoration: none;
	transition: .25s;
	margin-bottom: 0;
	font-family: "Lato", sans-serif;
}
input[type="submit"]:hover{
	background-color: #3d4b85; !important;
}

::placeholder{
	color: #35363a;
}

select{
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image:
	linear-gradient(45deg, transparent 50%, #121220 50%),
	linear-gradient(135deg, #121220 50%, transparent 50%);
	background-position:
		calc(100% - 30px) calc(1em + 5px),
		calc(100% - 25px) calc(1em + 5px),
		calc(100% - 2.5em) 1.5em;
	background-size:
		5px 5px,
		5px 5px,
		1px 1.5em;
	background-repeat: no-repeat;
	cursor: pointer;
}

.input-row{
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
	margin-bottom: 50px;
}

.input-col{
	flex-basis: 33.33%;
	padding: 5px;
}

.fileHolder{
	width: 100%;
	height: 230px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #eff2f7;
	border-radius: 20px;
	margin-bottom: 22px;
}

.fileHolder i{
	font-size: 40px;
}

.fileHolder input[type="file"]{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.grecaptcha-badge {
    display: none;
}

/*  --------------------------------------------------
    Header & Navigation
    -------------------------------------------------- */
.the-header {
	position: relative;
	z-index: 20;  
	width: 100%;
    height: 60px;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
nav{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Lato", sans-serif;
    font-size: 0.85rem;
}
.nav-logo img{
	height: 45px;
	width: auto;
	object-fit: contain;
	image-rendering: auto;
}
.menu, .sub-menu{
	display: flex;
    align-items: center;
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}
.menu li{
	position: relative;
	margin-right: 30px;
	height: 50px;
	display: flex;
	align-items: center;
}
.menu li:last-child{
	margin-right: 0;
}
.menu a{
	color: #121220;
	text-transform: uppercase;
	text-decoration: none;
}
.menu a:hover{
	color: #4b5da7;
}
.item-parent{
	display: flex;
	align-items: center;
}
.menu i{
	padding: 0 5px;
	cursor: pointer;
	line-height: 1;
	font-size: 1.1rem;
}
.menu li:last-child i{
	padding: 0px;
}
.main-menu .sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 5px 0;
	min-width: 250px;
	background-color: white;
	box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.2);
	opacity: 0;
	visibility: hidden;
	margin-top: 10px;
	z-index: -1;
	transition: .5s;
}
.main-menu .sub-menu li{
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}
.main-menu .sub-menu li:first-child{
	display: block;
}
.main-menu .sub-menu li a{
	color: #121220 !important;
	height: auto;
	text-align: left;
	justify-content: flex-start;
	padding: 6px 14px;
}
.main-menu .sub-menu li a:hover{
	color: #4b5da7 !important;
}
.main-menu .sub-menu i{
	display: none;
}
@media only screen and (min-width: 1200px){
	.menu-item-has-children:hover .sub-menu{
		opacity: 1;
		visibility: visible;
		margin-top: 0;
		z-index: 100;
	}
}
.menu-item-has-children .sub-menu a{
	color: #121220;
	font-size: 14px;
	letter-spacing: 0;
	position: relative;
}
.btn-menu{
	cursor: pointer;
	display: none;
}
.extra img{
	height: 20px;
	width: auto;
}
.logo2{
	display: none;
}
.fixed-nav{
	position: fixed;
    top: 0;
    height: 60px;
    background-color: white;
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.1);
}
.hidden-nav{
    top: -80px;
}
.fixed-nav .logo1{
	display: block;
}
.fixed-nav .logo2{
	display: none;
}
.fixed-nav .nav-logo img{
	height: 40px;
}
.fixed-nav .menu a,
.fixed-nav .menu i{
	color: #121220 !important;
}
.fixed-nav .menu a:hover{
	color: #4b5da7 !important;
}
.fixed-nav .btn-menu{
	color: #121220 !important;
}
.fixed-nav .menu li{
	height: 50px;
}
.fixed-nav .sub-menu li{
	height: auto;
}
.nav-light .fixed-nav .extra img{
	filter: brightness(100%);
}
.mobile-menu{
	display: none;
}
.menu-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 200;
}

/*  --------------------------------------------------
    Footer
    -------------------------------------------------- */
footer{
	color: white;
	background-color: #242531;
	position: relative;
    z-index: 10;
}
footer img{
	width: 32px;
	height: 32px;
}
footer a, footer a:hover{
	color: white;
}
.footer-container{
	width: 1200px;
	margin: 0 auto;
	padding: 75px 0;
}
.footer-row{
	display: flex;
	margin: -20px -10px;
}
.footer-col{
	flex-basis: 75%;
	padding: 20px 10px;
}
.footer-col h3{
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.05rem;
}
.footer-col:last-child{
	flex: 1;
}
.footer-inner-row{
	display: flex;
	margin: -20px -30px;
}
.footer-inner-col{
	flex-basis: 33.33%;
	padding: 20px 30px;
	display: flex;
}
.footer-col:last-child .footer-inner-col{
	flex-basis: 100%;
	align-items: center;
}
.footer-info{
	padding-left: 20px;
}
.footer-info h5, .footer-info h5 a, .footer-info h5 a:hover{
	color: white;
	margin: 0;
}
.footer-info p, .footer-info a, .footer-info a:hover{
	color: #b7c3f1;
	line-height: 1.3;
}
.copyright{
	width: 1200px;
	margin: 0 auto;
	padding: 35px 0 65px 0px;
	border-top: 1px solid #2f3143;
}

/*  --------------------------------------------------
    Common
    -------------------------------------------------- */
.custom-container {
	width: 1200px;
	padding: 30px 0 10px 0px;
	margin: 0 auto 30px auto;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.no-banner {
	margin-bottom: 40px;
	padding: 50px 0px 20px 0px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.no-banner02 {
    padding-top: 0px;
}
.page-title {
	width: 1200px;
	margin: 0 auto;
}

.no-list{
	list-style: none;
	padding-inline-start: 0;
	margin-bottom: 0;
}
.freetxt {
	border-bottom: none;
}
.freetxt p, .freetxt ul, .freetxt ol{
	font-weight: 400;
	margin-bottom: 30px;
}
.margin-bottom {
	margin-bottom: 80px;
}
.imgHolder{
	overflow: hidden;
	position: relative;
}
.imgHolder img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.imgHolder:after{
	content: "";
	display: block;
	padding-bottom: 55%;
}
.banner-overlay, 
.img-overlay {
	position: relative;
	height: 100%;
}
.img-overlay:before{
	content: "";
	display: block;
	width: 100%;
	height: 50%;
    background: linear-gradient(0deg, rgba(18,18,32,0.5) 0%, rgba(18,18,32,0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.btn-link a{
	display: inline-block;
	color: white;
	letter-spacing: 0.05rem;
	padding: 8px 20px;
	border-radius: 0px;
	text-transform: uppercase;
	background-color: #4b5da7;
	text-decoration: none;
	transition: .25s;
	font-family: "Lato", sans-serif;
	border-radius: 3px;
}
.btn-link a:hover{
	background-color: #3d4b85;
}
.half-banner {
	position: relative;
	width: 1200px;
	height: 450px;
	margin: 0 auto;
	overflow: hidden;
	background-color: #000000;
}
.half-banner .banner-img {
	width: 100%;
	height: 100%;
}
.half-banner img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}
.half-banner h2{
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05rem;
}
.half-banner h4{
	margin-bottom: 35px;
}
.half-banner:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(-180deg, rgba(0,0,0,0.5) 0%, rgba(18,18,32,0) 30%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.half-banner .banner-caption {
	position: absolute;
	bottom: 12%;
	left: 5%;
	width: 50%;
	z-index: 1;
	padding: 0 5%;
	color: white;
	opacity: 0;
}


/*  --------------------------------------------------
    Slick Slider
    -------------------------------------------------- */
.slick-track{
	cursor: grab;
}
.slick-slide{
	position: relative;
	outline: 0px !important;
}
.slick-slide:focus{
	outline: 0px !important;
}
.slick-dots {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.slick-dots li{
	margin: 0 15px 0 0px;
	opacity: 0.3;
}
.slick-dots li.slick-active{
	opacity: 1;
}
.slick-dots button{
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	background-color: #4b5da7;
	font-size: 0px;
	line-height: 0;
	border-radius: 100px;
	border: none;
}
.slick-arrow{
	position: absolute;
	z-index: 10;
	bottom: 0;
	right: 0px;
	width: 35px;
	height: 35px;
	background-color: #e1e1e1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 3px;
	border: none;
	box-shadow: 2px 2px 10px -5px rgba(0,0,0,0.25);
	transition: .5s;
	cursor: pointer;
}
.slick-prev{
	right: 40px;
}
.slick-arrow img{
	height: 16px !important;
	object-fit: contain;
}
.slick-arrow:hover{
	opacity: 1;
}
.slick-disabled{
	opacity: 0.5 !important;
	cursor: default;
}
.slick-slide, .slick-slide:focus, .slick-active{
	outline: none !important;
}


/*  --------------------------------------------------
    Pop Up
    -------------------------------------------------- */
.popup {
    position: fixed;
    z-index: 251;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    animation-name: popUpFadeIn;
    animation-duration: 1s;
}
@keyframes popUpFadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.popup .btnClose {
    position: absolute;
    z-index: 3;
    right: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 1.0);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    overflow: hidden;
}
.popup .btnClose p{
    padding-top: 3px;
}
.popup .secContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    background-color: rgba(255, 255, 255, 1.0);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.popup .secContent .imgHolder {
	position: relative;
    width: 65%;
    overflow: hidden;
}
.popup .secContent .imgHolder:after {
	padding-bottom: 80%;
	display: block;
	content: "";
}
.popup .secContent .imgHolder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup .secContent .contentHolder {
    width: 35%;
    padding: 35px;
    box-sizing: border-box;
}
.popup .secContent .contentHolder h2{
    font-size: 1.5vw;
}
.popup .secContent .contentHolder p{
	margin-bottom: 30px;
    font-size: 1.2vw;
    line-height: 1.35;
}
.popup .secContent .contentHolder a{
	color: #4b5da7;
}
.popup .secContent .contentHolder ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.popup .secContent .contentHolder li{
    border-top: 1px solid rgba(229, 229, 229, 1.0);
    padding: 18px 0px 12px 0px;
    margin: 0;
    display: block;
}
.popup .secContent .contentHolder li a{
    font-size: 1vw;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}
.popup .secContent .contentHolder li a:after{
    content: ">";
    float: right;
}
.popup .secContent .contentHolder li a:hover {
    color: #ed2c24;
}


/*  --------------------------------------------------
    Home
    -------------------------------------------------- */
.full-banner {
	position: relative;
	width: 1200px;
	height: 400px;
	margin: 0 auto 70px auto;
	overflow: hidden;
	background-color: #000000;
}
.full-banner img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}
.full-banner h1{
	width: 55%;
	margin-bottom: 35px;
}
.full-banner h2{
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05rem;
}
.banner-overlay:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(-180deg, rgba(0,0,0,0.5) 0%, rgba(18,18,32,0) 30%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.banner-caption {
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 100%;
	z-index: 1;
	padding: 0 5%;
	color: white;
	opacity: 0;
}
.banner-slider .slick-arrow {
	z-index: 3;
	bottom: 10%;
	right: 5%;
	background-color: white;
	opacity: 0;
}
.banner-slider .slick-arrow img{
	width: auto;
	height: auto;
}
.banner-slider .slick-prev {
	right: calc(5% + 45px);
}
#home .sec-highlights {
	position: relative;
	width: 100%;
	padding: 50px 0px;
	background-color: #eeeeee;
	overflow-x: hidden;
}
#home .sec-highlights .titleHolder {
	width: 1200px;
	margin: 0 auto 30px auto;
}
#home .highlight-slider {
	width: 1200px;
	margin: 0 auto;
}
#home .highlight-slider .slick-slide {
	margin-bottom: 20px;
	padding: 3px 10px;
	height: auto;
}
#home .highlight-slider .item {
	position: relative;
	background-color: #ffffff;
	box-shadow: 2px 2px 10px -5px rgba(0,0,0,0.25);
	overflow: hidden;
	transition: .5s;
}
#home .highlight-slider .item a{
	width: 100%;
	display: flex;
	color: #35363a;
	justify-content: space-between;
	align-items: center;
	transition: .5s;
}
#home .highlight-slider .item a:hover {
	text-decoration: none;
}
#home .highlight-slider .item .thumb-holder {
	position: relative;
	width: 35%;
    overflow: hidden;
}
#home .highlight-slider .item .thumb-holder:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
#home .highlight-slider .item .thumb-holder img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	line-height: 0;
	transition: .5s;
}
#home .highlight-slider .item a:hover .thumb-holder img{
	width: 110%;
	height: 110%;
}
#home .highlight-slider .item .desc-holder {
	position: relative;
	width: 65%;
    padding: 30px;
}
#home .home-News {
	width: 1200px;
	margin: 50px auto;
}
#home .news-listing {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}
#home .news-listing li{
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#home .news-listing li:last-child{
	border-bottom: none;
}
#home .news-listing li a{
	padding: 10px 0px;
	display: flex;
	justify-content: space-between;
	color: #35363a;
}
#home .news-listing li a:hover{
	text-decoration: none;
	color: #4b5da7;
}
#home .news-listing li:first-child a{
	padding-top: 0;
}
#home .news-listing li .date{
	width: 15%;
	font-weight: 700;
}
#home .news-listing li .tag{
	width: 15%;
	padding: 0 10px;
	border: 1px solid #4b5da7;
	color: #4b5da7;
	border-radius: 3px;
	text-align: center;
}
#home .news-listing li .desc{
	width: 55%;
}
.homeSec2 {
	position: relative;
	background-color: #eeeeee;
}
.homeSec2 .bg-holder {
	position: absolute;
	z-index: 1;
	width: 100%;
	pointer-events: none;
}
.homeSec2 .bg-holder img{
	width: 100%;
	height: auto;
	display: block;
}
.home-products{
	position: relative;
	z-index: 2;
	width: 1200px;
	margin: 0 auto;
	padding: 50px 0px;
}
.home-products .btn-link {
	position: absolute;
	top: 50px;
	right: 0;
}
.home-products .btn-link a{
	padding: 8px 15px;
	background-color: #242531;
	font-size: 0.9rem;
}
.home-products .btn-link a:hover {
	background-color: #4b5da7;
}
.home-products .btn-link i{
	padding-left: 5px;
}
.titleHolder {
	margin-bottom: 30px;
}
.product-listing {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.product-item {
	position: relative;
	width: calc(25% - 12px);
	height: 100%;
	margin: 0 6px 12px 6px;
	padding-bottom: 80px;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	color: #35363a;
	text-decoration: none;
	box-shadow: 0 0 10px -5px rgba(0,0,0,0.2);
}
.product-item:hover{
	color: #4b5da7;
	text-decoration: none;
}
.product-img {
	position: relative;
	flex-basis: 100%;
    text-align: center;
    padding: 20px 20px;
}
.product-img .label {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	padding: 3px 10px;
	background-color: #4b5da7;
	border-bottom-left-radius: 10px;
	font-size: 0.7rem;
	color: #ffffff;
}
.product-img img{
	height: 180px;
	width: auto;
	object-fit: contain;
}
.product-desc {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	overflow: hidden;
	transition: .3s;
}
.product-item:hover .product-desc {
	transition: .3s;
}
.product-desc h3{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0;
}
.product-desc .learn-more {
	height: 0px;
	margin-top: 0px;
	padding: 0 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	opacity: 0;
	transition: .3s;
}
.product-item:hover .product-desc .learn-more {
	height: auto;
	margin-top: 10px;
	padding: 10px 15px;
	opacity: 1;
	transition: .3s;
}
.home-brands {
	position: relative;
	width: 1200px;
	margin: 50px auto;
}
.home-brands .btn-link {
	position: absolute;
	top: 0;
	right: 0;
}
.home-brands .btn-link a{
	padding: 8px 15px;
	background-color: #242531;
	font-size: 0.9rem;
}
.home-brands .btn-link a:hover {
	background-color: #4b5da7;
}
.home-brands .btn-link i{
	padding-left: 5px;
}
.home-brands .brand-listing {
	margin: 0 -5px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.home-brands .brand-item {
	width: calc(20% - 10px);
	margin: 5px;
	display: block;
}
.brand-box{
	height: 180px;
	padding: 20px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	transition: .2s;
}
.brand-item img{
	width: 100%;
	max-height: 180px;
	object-fit: contain;
}
.brand-item:hover .brand-box{
	transform: scale(1.15);
	box-shadow: 0 0 10px -5px rgba(0,0,0,0.3);;
}
.home-solutions {
	padding: 50px 0;
	background-color: #eeeeee;
}
.home-solutions .btn-link {
	position: absolute;
	top: 0px;
	right: 0;
}
.home-solutions .btn-link a{
	padding: 8px 15px;
	background-color: #242531;
	font-size: 0.9rem;
}
.home-solutions .btn-link a:hover {
	background-color: #4b5da7;
}
.home-solutions .btn-link i{
	padding-left: 5px;
}
.home-solutions .solution-wrapper {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.solution-listing {
	padding-bottom: 20px;
	margin-bottom: 0px;
}
.solution-listing .slick-list {
  margin: 0 -6px;
}
.solution-listing .slick-slide {
	height: auto;
	padding: 0 6px;
}
.solution-listing .item {
	background-color: #ffffff;
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
    flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	transition: .1s;
}
.solution-listing .item a:hover {
	text-decoration: none;
}
.solution-listing .item h3,
.solution-listing .item p{
	color: #35363a;
	text-transform: none;
}
.solution-listing .item h3 span{
	margin-bottom: 10px;
	font-size: 13px;
	text-transform: uppercase;
	color: #4b5da7;
	display: block;
}
.solution-listing .item .thumb-holder {
	position: relative;
	width: 100%;
    margin-bottom: 15px;
    background-color: #000000;
    overflow: hidden;
}
.solution-listing .item .thumb-holder:after {
	content: "";
	display: block;
	padding-bottom: 70%;
}
.solution-listing .item .thumb-holder img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	opacity: 0.9;
	transition: all 0.2s;
}
.solution-listing .item a:hover .thumb-holder img{
	width: 110%;
	height: 110%;
	opacity: 0.6;
}
.solution-listing .item .desc-holder {
	margin: 20px;
}
.solution-listing .item .solution-btn {
	width: 100%;
	padding: 20px;
	display: flex;
	align-items: center;
	border-top: 1px solid #35363a1f;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Lato", sans-serif;
}
.solution-listing .item .solution-btn p{
	text-transform: uppercase;
	color: #4b5da7;
}
.solution-listing .item .solution-btn img{
	height: 15px;
	margin: 0 0 0 8px;
}


/*  --------------------------------------------------
    CTA Section
    -------------------------------------------------- */
.cta{
	position: relative;
	padding: 30px 0px;
}
.cta-bg{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}
.cta-content{
	position: relative;
	z-index: 2;
	border-bottom: none;
}
.cta-box{
	width: 100%;
	position: relative;
}
.cta-box .row-holder {
	display: flex;
	justify-content: space-between;
}
.cta-box .col01 {
	width: 50%;
}
.cta-box .col02 {
	width: 45%;
}
.cta-box h3{
	margin-bottom: 30px;
	text-transform: uppercase;
}
.cta-box p{
	margin-bottom: 30px;
}
.cta-box input{
	margin-bottom: 20px;
}
.cta-box textarea {
	height: 90px;
}
.cta-box input[type="submit"]{
	/*padding: 9px 30px;
	height: 42px;
	border-radius: 3px;*/
}

/*  --------------------------------------------------
    Enquiry (Product Listing)
    -------------------------------------------------- */
.enquiryHolder {
	position: relative;
	z-index: 1;
	width: 1200px;
	margin: 0 auto;
	padding: 70px 0px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.enquiry-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.enquiry-col {
	flex-basis: 55%;
}
.enquiry-left {
	padding-right: 0;
	flex-basis: 40%;
}
.enquiry-right {
	padding-left: 0;
	display: flex;
}
.enquiry-form {
	width: 100%;
}


/*  --------------------------------------------------
    Product Details
    -------------------------------------------------- */
#product-listing .home-products {
	padding-bottom: 10px;
}
#product-details .custom-container {
	border-bottom: none;
}
.details-row {
	width: 1200px;
	margin: 0 auto 30px auto;
	display: flex;
	flex-wrap: wrap;
}
.details-left{
	position: relative;
	flex-basis: 55%;
	padding: 50px;
	background-color: #1b2235;
	color: white;
}
.details-content {
	position: relative;
	z-index: 1;
}
.details-content h3{
	margin-bottom: 20px;
	font-weight: 700;
}
.details-content p{
	margin-bottom: 25px;
}
.details-content .brand-listing {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.details-content .brand-listing li{
	padding: 10px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.details-content .brand-listing li a{
	display: flex;
	justify-content: space-between;
	color: #ffffff;
}
.details-right {
	position: relative;
	max-width: 50%;
	flex-basis: 45%;
	overflow: hidden;
}
.details-right:after {
	padding-bottom: 80%;
	display: block;
	content: "";
}
.details-right img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 101%;
	height: 101%;
	display: block;
	object-fit: cover;
	line-height: 0;
	object-position: left;
}
.related-product {
	margin-bottom: 70px;
}
.details-brand{
	padding-right: 10%;
}
.details-brand img{
	height: 100px;
	width: 300px;
}
.details-brand-img{
	height: 250px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.details-slider .slick-arrow{
	top: auto;
	bottom: 0;
}

.product-row{
	display: flex;
	flex-wrap: wrap;
	margin: -12px;
}

.product-row li{
	flex-basis: 33.33%;
	padding: 12px;
}

.product-row a, .product-row a:hover{
    display: block;
    width: 100%;
    color: #35363a;
    text-decoration: none;
}

.related-box{
	box-shadow: 0 0 10px -5px rgba(0,0,0,0.2);
	background-color: rgba(255, 255, 255, 1.0);
	display: flex;
	flex-wrap: wrap;
	padding: 45px 40px 60px;
	min-height: 470px;
	transition: .2s;
	position: relative;
	overflow: hidden;
}

.product-row a:hover .related-box{
	transform: scale(1.05);
}

.related-img{
	flex-basis: 100%;
	text-align: center;
	margin-bottom: 50px;
}

.related-img img{
    height: 300px;
    width: auto;
    object-fit: contain;
}

.related-desc h4{
	margin-bottom: 30px;
}

.related-desc p{
	margin-bottom: 30px;
}

.related-desc p:last-child{
	margin-bottom: 0px;
}

.related-desc img{
	height: 25px;
}

/*  --------------------------------------------------
    Brands
    -------------------------------------------------- */
#brands .custom-container {
	border-bottom: none;
}
.brands-listing{
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.brands-listing a{
	flex-basis: 25%;
	padding: 10px;
}

.brands-listing a:hover .brand-box{
	transform: scale(1.02);
}

/*  --------------------------------------------------
    Support
    -------------------------------------------------- */
.support-row{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	background-color: #e8e5e5;
}

.support-col{
	flex-basis: 50%;
	padding: 50px 5%;
}

.support-left{
	padding-right: 10%;
}

.support-right{
	max-width: 50%;
	background-color: white;
}

.support-left p{
	margin-bottom: 30px;
}

.support-left p:last-child{
	margin-bottom: 0;
}

.support-left a{
	color: #4b5da7;
}

.support-item{
	display: flex !important;
	align-items: flex-start;
}

.support-item img{
	height: 100px;
}

.support-txt{
	padding-left: 35px;
}

.support-slider{
	padding-bottom: 120px;
}

.support-slider .slick-arrow{
	top: auto;
	bottom: 0;
	background-color: #404040;
}

.support-slider .slick-arrow img{
	filter: brightness(1000%);
}

/*  --------------------------------------------------
    Contact
    -------------------------------------------------- */
.contact {
	padding-top: 80px;
	border-bottom: none;
}
.contact a{
	color: #35363a;
}

.contact-row{
	display: flex;
	flex-wrap: wrap;
}

.contact-col{
	flex-basis: 50%;
}

.contact-info{
	margin-bottom: 30px;
}

.contact-info:last-child{
	margin-bottom: 0px;
}

.location-row{
	display: flex;
	margin-top: 10px;
}

.location-row a{
	display: block;
	margin-right: 50px;
}

.location-row img{
	margin-bottom: 5px;
}

#contact iframe{
	width: 1200px;
	margin: 0 auto 70px auto;
	display: block;
}

/*  --------------------------------------------------
    Industry Solutions
    -------------------------------------------------- */
#ind-solutions .sec-listing {
	width: 1200px;
	margin: 0 auto 70px auto;
}
#ind-solutions .sec-listing .listing-row {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#ind-solutions .sec-listing .listing-row li{
	width: 32%;
	height: 100%;
	margin: 0 2% 50px 0px;
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
    flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	transition: .1s;
}
#ind-solutions .sec-listing .listing-row li:nth-child(3n){
	margin-right: 0;
}
#ind-solutions .sec-listing .listing-row li a:hover {
	text-decoration: none;
}
#ind-solutions .sec-listing .listing-row li h3,
#ind-solutions .sec-listing .listing-row li h4,
#ind-solutions .sec-listing .listing-row li p{
	color: #35363a;
	text-transform: none;
}
#ind-solutions .sec-listing .listing-row li h3 span,
#ind-solutions .sec-listing .listing-row li h4 span{
	margin-bottom: 10px;
	font-size: 13px;
	text-transform: uppercase;
	color: #4b5da7;
	display: block;
}
#ind-solutions .sec-listing .listing-row li .thumb-holder {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
    background-color: #000000;
}
#ind-solutions .sec-listing .listing-row li .thumb-holder:after {
    content: "";
    display: block;
    padding-bottom: 70%;
}
#ind-solutions .sec-listing .listing-row li .thumb-holder img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    opacity: 0.9;
}
#ind-solutions .sec-listing .listing-row li .desc-holder {
	margin-bottom: 20px;
}
#ind-solutions .sec-listing .listing-row li .solution-btn {
	width: 100%;
	padding-top: 20px;
	display: flex;
	border-top: 1px solid #35363a1f;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Lato", sans-serif;
}
#ind-solutions .sec-listing .listing-row li .solution-btn p{
	text-transform: uppercase;
	color: #4b5da7;
}
#ind-solutions .sec-listing .listing-row li .solution-btn img{
	height: 15px;
	margin: -3px 0 0 0px;
}
#ind-solutions .heading-container {
	margin: 0 0 30px 0px;
	padding: 70px 0 20px 0px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#ind-solutions .heading-container .page-title {
	width: 1200px;
	margin: 0 auto;
}
#ind-solutions .heading-container h1{
	font-size: 40px;
}
#ind-solutions .banner-holder {
	width: 1200px;
	margin: 0 auto 50px auto;
}
#ind-solutions .content-wrapper {
	width: 1200px;
	margin: 0 auto;
	padding: 0 0 50px 0px;
}
#ind-solutions .rel-products {
	padding: 100px 0;
	background-color: #e4e4e7;
}
#ind-solutions .rel-products .titleHolder {
	width: 1200px;
	margin: 0 auto;
}
#ind-solutions .rel-products .product-listing {
	width: 1200px;
	margin: 0 auto;
}
#ind-solutions .rel-products .product-item {
	background-color: #ffffff;
}
#ind-solutions .rel-products .product-box {
	padding-bottom: 30px;
}

#default-template .custom-container {
	width: 1200px;
	margin: 0 auto;
	padding: 150px 0 30px 0px;
}
#default-template .content-wrapper {
	width: 1200px;
	margin: 70px auto 70px auto;
}
#default-template .content-wrapper02 {
	width: 1200px;
	margin: 0 auto 70px auto;
}

/*  --------------------------------------------------
    Extra for Other Pages
    -------------------------------------------------- */
.kla-hero-title {
	color: #4b5da7 !important;
}
.kla-hero-title span {
	color: #0f8242 !important;
}
.kla-section-title {
	color: #4b5da7 !important;
	border-bottom-color: #0f8242 !important;
}
.kla-benefit-icon {
	color: #0f8242 !important;
}
.kla-benefit-title {
	color: #4b5da7 !important;
}
.kla-accreditation-box {
	background: #0f8242 !important;
}
.kla-feature-card {
	box-shadow: none !important;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.kla-feature-icon {
	color: #4b5da7 !important;
}
.kla-feature-title {
	color: #4b5da7 !important;
}

/*  --------------------------------------------------
    Ipad
    -------------------------------------------------- */
@media only screen and (max-width: 1200px){
	.menuHolder ul{
		display: none;
	}
	.btn-menu{
		font-size: 22px;
		display: block;
	}
	nav{
		width: 960px;
		justify-content: flex-start;
	}
	.nav-logo{
		margin-right: auto;
	}
	.nav-logo img{
		width: auto;
	}
	.extra{
		margin-right: 30px;
	}
	.main-menu ul{
		margin: 0;
		flex-direction: column;
	}
	.main-menu ul.menu{
		width: 100%;
	}
	.main-menu .sub-menu{
		position: relative;
		top: 0;
		left: 0;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background-color: transparent;
		display: none;
		min-width: auto;
		padding-left: 10px;
		margin-top: 0;
		z-index: 1;
	}
	.menu, .sub-menu{
		text-align: left;
		align-items: flex-start;
	}
	.main-menu a i{
		margin-bottom: 2px;
	}
	.main-menu li{
		height: auto;
	}
	.mobile-menu{
		display: block;
		position: fixed;
		top: 0;
		right: -300px;
		z-index: 1000;
		width: 300px;
		height: 100%;
		background-color: white;
		transition: right .5s;
	}
	.mobile-menu.show{
		right: 0;
	}
	.mobile-menu .main-menu{
		flex-direction: column;
		align-items: flex-start;
    	padding: 30px;
    	margin-top: 100px;
	    overflow-y: auto;
	    padding-bottom: 100px;
	    height: calc(100vh - 100px);
	    overflow-y: auto;
	}
	.main-menu li:first-child{
	   display: block;
	}
	.main-menu li{
		padding: 0;
		margin: 0;
		padding-bottom: 10px;
    	margin-bottom: 10px;
    	width: 100%;
    	border-bottom: 1px solid #e7e7e8;
    	flex-direction: column;
    	justify-content: center;
    	align-items: flex-start;
	}
	.mobile-menu ul li a{
		color: #242531 !important;
		font-size: 16px;
		font-weight: 600;
		text-align: left;
	    justify-content: flex-start;
	}
	.mobile-menu ul li a:hover{
		color: #44c45f;
		background-color: transparent;
	}
	.main-menu .sub-menu li a{
		color: #16223d !important;
		font-size: 18px;
		font-weight: 500;
		padding: 10px 0;
		text-transform: none;
	}
	.menu-item-has-children .sub-menu li:last-child{
		border-bottom: none;
	}
	.main-menu ul .current-menu-item a, .main-menu ul .current-menu-item i{
		color: #4b5da7 !important;
	}
	.main-menu ul .current-menu-item .sub-menu a{
		color: #242531 !important;
	}
	.main-menu i{
		display: block;
	}
	.close-menu{
		color: #16223d;
		position: absolute;
		top: 20px;
    	right: 20px;
    	font-size: 40px;
    	cursor: pointer;
	}

	/*footer*/
	.footer-container{
	    width: 960px;
	}
	.footer-row{
		flex-wrap: wrap;
	}
	.footer-col{
		flex-basis: 100%;
		margin-bottom: 20px;
	}
	.footer-col:last-child{
		margin-bottom: 0;
	}
	.copyright{
	    width: 960px;
	}

	.custom-container {
	    width: 960px;
	}
	.page-title {
	    width: 960px;
	}
	.half-banner {
	    width: 960px;
	    height: 60vh;
	}

	.popup .secContent {
	    width: 80%;
	}
	.popup .secContent .imgHolder {
	    width: 65%;
	}
	.popup .secContent .imgHolder:after {
		padding-bottom: 85%;
	}
	.popup .secContent .contentHolder {
	    width: 35%;
	    padding: 20px;
	}
	.popup .secContent .contentHolder h2{
		margin-bottom: 10px;
	    font-size: 20px;
	}
	.popup .secContent .contentHolder p{
	    font-size: 1rem;
	    line-height: 1.2;
	}
	.popup .secContent .contentHolder li{
	    padding: 15px 0px 9px 0px;
	}
	.popup .secContent .contentHolder li a{
	    font-size: 0.85rem;
	}

	/*home*/
	.full-banner, .full-banner img{
		width: 100%;
		height: 420px;
	}
	.full-banner h1{
		font-size: 35px;
	}
	.banner-caption {
		width: 960px;
		left: 50% !important;
		transform: translateX(-50%);
		margin: 0;
		padding: 0;
	}
	.banner-caption .btn-link a{
	    font-size: 15px;
	    padding: 15px 30px;
	}
	#home .sec-highlights .titleHolder {
		width: 960px;
	}
	#home .highlight-slider {
	    width: 960px;
	}
	#home .highlight-slider .item a{
		display: block;
	}
	#home .highlight-slider .item .thumb-holder {
		width: 100%;
	}
	#home .highlight-slider .item .thumb-holder:after {
		padding-bottom: 75%;
	}
	#home .highlight-slider .item .desc-holder {
		width: 100%;
	}
	#home .home-News {
	    width: 960px;
	}
	.home-products{
	    width: 960px;
	}
	.product-item {
		width: calc(33.33% - 12px);
	}
	.home-brands {
	    width: 960px;
	}
	.home-brands .brand-item {
	    width: calc(25% - 10px);
	}
	.brand-box{
	    height: 180px;
	}
	.home-solutions .solution-wrapper {
	    width: 960px;
	}

	.brands-listing a{
		flex-basis: 33.33%;
	}

	.details-row {
		width: 960px;
	}
	.details-left {
		padding: 35px;
	}
	.product-row li{
		flex-basis: 33.33%;
	}

	.support-row {
		width: 960px;
	}
	.support-item img {
		height: 70px;
	}

	#contact iframe{
	    width: 960px;
	}

	#ind-solutions .sec-listing {
	    width: 960px;
	    margin: 0 auto 70px auto;
	}
	#ind-solutions .heading-container .page-title {
	    width: 960px;
	}
	#ind-solutions .banner-holder {
	    width: 960px;
	}
	#ind-solutions .content-wrapper {
	    width: 960px;
	}
	#ind-solutions .rel-products {
	    padding: 70px 0;
	}
	#ind-solutions .rel-products .titleHolder {
	    width: 960px;
	}
	#ind-solutions .rel-products .product-listing {
	    width: 960px;
	}

	#default-template .custom-container {
	    width: 960px;
	    margin: 0 auto;
	    padding: 150px 0 30px 0px;
	}
	#default-template .content-wrapper {
	    width: 960px;
	    margin: 0 auto 50px auto;
	}
	#default-template .content-wrapper02 {
	    width: 960px;
	    margin: 0 auto 70px auto;
	}
}

/*  --------------------------------------------------
    iPad
    -------------------------------------------------- */
@media only screen and (max-width: 991px){
	h1{
		font-size: 40px;
	}
	nav{
	    width: 90%;
	}

	.footer-container{
	    width: 90%;
	}
	.footer-container{
		padding: 60px 0 50px;
	}
	.footer-inner-row{
		flex-wrap: wrap;
		margin: -20px 0;
	}
	.footer-inner-col{
		flex-basis: 100%;
		padding: 20px 0;
	}
	.copyright{
		width: 90%;
		padding: 30px 0;
	}

	.custom-container {
	    width: 90%;
	}
	.page-title {
		position: relative;
		width: 90%;
	}
	.half-banner {
		width: 90%;
		height: 400px;
	}
	.half-banner .banner-caption {
		bottom: 10%;
		left: 5%;
		width: 90%;
		padding: 0;
	}

	.full-banner {
	    width: 100%;
	    height: 420px;
	    margin-bottom: 0;
	}
	.full-banner img {
		height: 420px;
	}
	.banner-caption {
		width: 90%;
	}
	.full-banner h1{
		width: 75%;
		margin-bottom: 35px;
		font-size: 30px;
	}
	.full-banner h2{
		font-size: 18px;
	}
	#home .sec-highlights .titleHolder {
		width: 90%;
	}
	#home .highlight-slider {
	    width: 90%;
	}
	#home .home-News {
	    width: 90%;
	}
	#home .news-listing li .date{
		width: 25%;
	}
	#home .news-listing li .tag{
		width: 0%;
		display: none;
	}
	#home .news-listing li .desc{
		width: 70%;
	}
	.home-products{
		width: 90%;
	}
	.product-item {
		width: calc(50% - 12px);
	}
	.product-img img{
		height: 210px;
	}
	.home-brands {
	    width: 90%;
	}
	.home-brands .brand-item {
	    width: calc(33.33% - 10px);
	}
	.home-solutions {
		padding-bottom: 50px;
	}
	.home-solutions .solution-wrapper {
	    width: 90%;
	}
	.solution-listing .item {
		margin-bottom: 10px;
	}

	.popup .secContent {
	    width: 85%;
	    display: block;
	}
	.popup .secContent .imgHolder {
	    width: 100%;
	}
	.popup .secContent .imgHolder:after {
		padding-bottom: 60%;
	}
	.popup .secContent .contentHolder {
	    width: 100%;
	}

	.cta-box{
		width: 100%;
	}
	.cta-box .row-holder {
		display: block;
	}
	.cta-box .col01 {
		width: 100%;
		margin-bottom: 50px;
	}
	.cta-box .col02 {
		width: 100%;
	}
	.enquiryHolder {
	    width: 90%;
	    padding: 70px 0px;
	}
	.enquiry-col{
		flex-basis: 100%;
	}
	.enquiry-title{
		width: 100%;
	}
	.enquiry-img{
		display: none;
	}
	.enquiry-left{
		padding-bottom: 30px;
	}
	.enquiry, .enquiry-form{
		height: auto;
	}
	.enquiry .cta-bg{
		display: none;
	}

	.details-row {
		width: 90%;
	}
	.details-left {
		padding: 35px;
	}
	.details-left h2{
		font-size: 30px;
	}
	.details-left, .details-right{
		flex-basis: 100%;
		max-width: 100%;
	}
	.details-banner{
		height: 350px;
	}
	.product-row li{
		flex-basis: 50%;
	}
	.related-box{
		min-height: auto;
		padding: 25px 20px 30px;
	}

	.support-row {
		width: 90%;
	}
	.support-col{
		flex-basis: 100%;
		max-width: 100%;
	}

	#contact iframe{
		width: 90%;
	}
	.contact-col{
		flex-basis: 100%;
	}
	.contact-left{
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-bottom: 1px solid #eaebeb;
	}

	#ind-solutions .sec-listing {
		width: 90%;
	}
	#ind-solutions .sec-listing .listing-row {
	}
	#ind-solutions .sec-listing .listing-row li{
		width: 49%;
	}
	#ind-solutions .sec-listing .listing-row li:nth-child(3n) {
		margin-right: 2%;
	}
	#ind-solutions .sec-listing .listing-row li:nth-child(2n) {
		margin-right: 0;
	}
	#ind-solutions .heading-container .page-title {
		width: 90%;
	}
	#ind-solutions .heading-container h1{
		font-size: 35px;
	}
	#ind-solutions .banner-holder {
		width: 90%;
	}
	#ind-solutions .content-wrapper {
		width: 90%;
	}
	#ind-solutions .rel-products .titleHolder {
	    width: 90%;
	}
	#ind-solutions .rel-products .product-listing {
	    width: 90%;
	}

	#default-template .custom-container {
	    width: 90%;
	}
	#default-template .content-wrapper {
	    width: 90%;
	}
	#default-template .content-wrapper02 {
	    width: 90%;
	}
}

@media only screen and (max-width: 767px){
	.product-row li{
		flex-basis: 100%;
	}
}

/*  --------------------------------------------------
    Mobile
    -------------------------------------------------- */
@media only screen and (max-width: 600px){
	h1{
		font-size: 30px;
	}
	h3{
		font-size: 15px;
		font-weight: 700;
		margin-bottom: 15px;
	}
	nav{
		height: 60px;
	}
	.extra {
		margin-right: 15px;
	}
	.menu li {
		margin-right: 15px;
	}
	.nav-logo img{
	    height: 35px;
	}
	.half-banner {
		height: 320px;
	}

	.full-banner, 
	.full-banner img{
		height: 350px;
	}
	.full-banner h1{
		width: 100%;
		margin-bottom: 20px;
		font-size: 25px;
	}
	.full-banner h2{
		font-size: 11px;
	}
	#home .highlight-slider .slick-slide {
		padding: 0 6px;
	}
	#home .highlight-slider .item .desc-holder {
	    padding: 25px;
	}
	#home .news-listing li a {
		display: block;
	}
	#home .news-listing li .date {
		width: auto;
	}
	#home .news-listing li .desc {
		width: auto;
	}
	.home-products .btn-link {
		position: relative;
		top: auto;
	}
	.product-item {
		width: 100%;
		margin: 0 0 12px 0px;
	}
	.product-img{
		margin-bottom: 20px;
	}
	.product-img img{
	    height: 200px;
	}
	.home-brands .brand-listing {
		margin-bottom: 20px;
	}
	.home-brands .brand-item {
		width: calc(50% - 10px);
	}
	.home-brands .btn-link {
		position: relative;
		top: auto;
	}
	.brand-box{
		height: 150px;
		padding: 20px 20px;
	}
	.home-solutions .btn-link {
		position: relative;
		top: auto;
	}
	
	.enquiry-form {
		padding: 40px 20px;
	}
	.enquiry-left {
		padding-top: 0;
	}

    #product-listing .home-products {
        padding-bottom: 0;
    }
	.details-left {
		padding: 30px;
	}
	.related-box{
		padding: 25px 20px;
	}
	.related-img{
		margin-bottom: 20px;
	}
	.related-img img{
		height: 200px;
	}
	.related-desc h4{
	    margin-bottom: 20px;
	}

	.support-item img {
	    height: 50px;
	}

	#contact iframe{
		height: 300px;
	}
	.contact-info{
		margin-bottom: 20px;
	}

	.brands-listing a{
		flex-basis: 100%;
	}

	#ind-solutions .sec-listing .listing-row li{
		width: 100%;
		margin: 0 0 20px 0px;
	}
	#ind-solutions .sec-listing .listing-row li:nth-child(3n) {
		margin-right: 0;
	}
	#ind-solutions .heading-container h1{
		font-size: 30px;
	}
}