@charset "UTF-8";
/* CSS Document */
.clearfix:before, .clearfix:after{content: ""; display: table}
.clearfix:after{clear: both;}
.clearfix{zoom: 1;}

html{
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

img{max-width: 100%;}

.left{float:left;}
.right{float:right;}

#main{width: 100%;}

.wrapper{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

h2{
	text-align: center;
	font: 81px/121px 'Poppins', sans-serif;
	font-weight: 600;
	color: #053665;
	opacity: 0.10;
}
h3{
	text-align: center;
	font: 34px/50px 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A202C;
}

.curve-section{border-radius: 0 0 40px 40px;}

/* Button */
.primary-button{
	display: block;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	text-transform: uppercase;
	text-align: center;
	background: #294DFF;
	border-radius: 22px;
	padding: 12px 30px;
	transition: all 0.3s;
	cursor: pointer;
}
.primary-button:hover{
	background: #0056ab;
}

.sample-button{
	display: block;
	background: #FFFFFF;
	font: 16px/24px 'Poppins', sans-serif;
	font-weight: 500;
	color: #294DFF;
	padding: 5px 17px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
	border-radius: 40px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.3s;
}
.sample-button:hover{
	background: #294DFF;
	color: #ffffff;
	transition: all 0.3s;
}
/* END Button */

/* Primary Input */
.each-row{margin-bottom: 25px;}
.primary-label{
	display: block;
	width: 100%;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A202C;
	margin-bottom: 15px;
}
.primary-label sup{
	color: #FD6363;
	vertical-align: super;
}
.input-holder{position: relative;}
.primary-input{
	display: block;
	width: 100%;
	border: 1px solid #E0E1E2;
	border-radius: 10px;
	font: 18px/24px 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A202C;
	padding: 11px 15px;
	transition: all 0.3s;
}
.primary-input:focus,
.primary-input:hover{
	border-color: #294DFF;
	transition: all 0.3s;
}
textarea.primary-input{height: 130px;}
/* END Primary Input */

/* Header */
#header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: all 0.3s;
}
#header .wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
#header h1 a{
	display: block;
	position: relative;
	min-width: 50px;
    min-height: 70px;
	transition: all 0.3s;
}
#header h1 a img{
	display: block;
	transition: all 0.3s;
}
#header h1 a .logo-large{width:150px;}
#header h1 a .logo-large{transform: scale(1);}
#header h1 a .logo-small{
	/*width: 50px;*/
	width: 70px;
    position: absolute;
    top:40%;
    /*top: 50%;*/
    left: 35px;
    margin-top: -25px;
    transform: scale(0);
}

#header .main-nav > ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
#header .main-nav ul > li{
	display: block;
	position: relative;
}
#header .main-nav ul > li > a{
	display: block;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
	padding: 0 30px;
	text-transform: uppercase;
	transition: all 0.3s;
}
#header .main-nav ul > li.active > a,
#header .main-nav ul > li:hover > a{
	color: #F3BC2B;
	transition: all 0.3s;
}
#header .main-nav ul > li:last-child > a{padding-right: 0;}
#header .main-nav ul > li > a .down-icon{
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	transition: all 0.3s;
}
#header .main-nav ul > li > a .down-icon svg{
	display: block;
	transition: all 0.3s;
}
#header .main-nav ul > li > a .down-icon svg path{
	fill: #ffffff;
	transition: all 0.3s;
}
#header.sticky .main-nav ul > li > a .down-icon svg path{
	fill: #292825;
}
#header .main-nav ul > li.active > a .down-icon svg path,
#header .main-nav ul > li:hover > a .down-icon svg path{
	fill: #F3BC2B;
	transition: all 0.3s;
}
#header .head-drop{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 300px;
	background: #ffffff;
	text-align: left;
	padding: 10px 0;
	border-radius: 0 0 20px 20px;
}
#header .main-nav ul > li:hover .head-drop{display: block;}
#header .head-drop ul{display: block;}
#header .head-drop ul li{display: block;}
#header .head-drop ul li a{
	display: block;
    font: 16px/25px 'Poppins', sans-serif;
    font-weight: 600;
    color: #292825;
    padding: 3px 20px;
	text-transform: none;
    transition: all 0.3s;
}

#header .mob-menu-head{
	display: none;
	background: #FAFAFA;
}
#header .mob-menu-head .mob-menu-head-logo{
	display: block;
	padding: 15px 25px;
}
#header .mob-menu-head .mob-menu-head-logo img{
	display: block;
	width: 53px;
}
#header .mob-menu-head .menu-close{
	display: block;
	padding: 34px 30px;
}
#header .mob-menu-head .menu-close img{display: block;}
#header .mob-menu-btn{
	display: none;
	padding: 35px 20px;
	transition: all 0.3s;
}
#header .mob-menu-btn svg{
	display: block;
	transition: all 0.3s;
}
#header .mob-menu-btn svg path{
	fill: #ffffff;
	transition: all 0.3s;
}
#header.sticky .mob-menu-btn svg path{
	fill: #292825;
}

#header.sticky{
	background: #ffffff;
	box-shadow: 0 3px 6px rgb(26 32 44 / 16%);
	transition: all 0.3s;
}
#header.sticky .main-nav ul > li > a{
	color: #292825;
	transition: all 0.3s;
}
#header.sticky .main-nav ul > li:hover > a,
#header.sticky .main-nav ul > li.active > a{
	color: #F3BC2B;
	transition: all 0.3s;
}
#header.sticky h1 a .logo-large {
    height: 0;
    transform: scale(0);
}
#header.sticky h1 a .logo-small {
    transform: scale(1);
}
.home-menu-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 111;
	opacity: 0.2;
}
.menu-open .home-menu-overlay{display: block;}
/* END Header */

/* Content */
.scroll-to-top{
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9999;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
	background: #F2BB3D;
	width: 40px;
	height: 40px;
	border-radius: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	opacity: 0;
	visibility: hidden;
}
.scroll-to-top:hover{
	background: #e6a002;
	transition: all 0.3s;
}
.scroll-to-top img{display: block;}
.scroll-to-top.active{
	opacity: 1;
	visibility: visible;
	transition: all 0.3s;
}

.chat-icon{
	width: 58px;
	height: 58px;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
    left: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #4BCC8C;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	z-index: 9999;
	transition: all 0.3s;
}
.chat-icon:hover{
	background: #1dc371;
	transition: all 0.3s;
}
.chat-icon img{display: block;}

.home-slider{
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 0;
}
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item,
.home-slider .home-each-img{
	height: 100%;
}
.home-slider .home-each-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: bottom;
}
.home-slider .owl-dots{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: absolute;
    bottom: 160px;
    left: 0;
    width: 100%;
}
.home-slider .owl-dots .owl-dot{
	display: block;
	width: 10px;
	height: 10px;
	background: #FFFFFF;
	opacity: 0.30;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 50%;
}
.home-slider .owl-dots .owl-dot.active{
	opacity: 1;
	transition: all 0.3s;
}

.home-banner{position: relative;}
.home-banner .home-banner-cnt{
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.home-banner .home-banner-cnt h2{
	text-transform: uppercase;
	font: 35px/40px 'Abril Fatface', cursive;
	font-weight: 600;
	color: #FFFFFF;
	letter-spacing: 2.63px;
	opacity: 1;
}
.home-banner .home-banner-cnt h2 span{
	display: block;
	color: #F3BC2B;
}
.home-banner .home-banner-cnt p{
	padding: 40px 20px 0 20px;
	font: 20px/30px 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}

.home-banner-info{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgb(28 28 28 / 70%);
	padding: 30px 0;
	z-index: 2;
}
.home-banner-info .head-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.home-banner-info .head-list li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.home-banner-info .head-list li .icon-hldr{margin-right: 20px;}
.home-banner-info .head-list li .icon-hldr img{display: block;}
.home-banner-info .head-list li .txt-hldr{
	-webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}
.home-banner-info .head-list li .txt-hldr p,
.home-banner-info .head-list li .txt-hldr a{
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
	transition: all 0.3s;
}
.home-banner-info .head-list li .txt-hldr a:hover{color: #F3BC2B;}
.home-banner .goto-bottom{
	position: absolute;
	bottom: 125px;
	left: 50%;
	margin-left: -28.5px;
	z-index: 99;
}
.home-banner .goto-bottom img{
	display: block;
}

/* Gallery Section */
.gallery-section{padding: 55px 0 70px 0;}
.gallery-section .gallery-slider{margin-top: 100px;}
.gallery-section .gallery-slider .each-image{
	margin: 10px 0;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	/*height: 320px;*/
}
.gallery-section .gallery-slider .each-image img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.gallery-section .gallery-slider .owl-dots{
	margin-top: 45px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.gallery-section .gallery-slider .owl-dots .owl-dot{
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #1A202C;
	border-radius: 10px;
	opacity: 0.30;
	transition: all 0.3s;
}
.gallery-section .gallery-slider .owl-dots .owl-dot.active{opacity: 1;}
/* END Gallery Section */

/* NP Groups */
.abt-np-group{
	background: #F8FBFF;
	text-align: center;
	position: relative;
	padding-bottom: 200px;
	padding-top: 80px;
	overflow: hidden;
}
.abt-np-group .abt-dots{
	display: block;
	position: absolute;
    top: -80px;
    right: -80px;
}
.abt-np-group .np-txt{
	width: 100%;
	max-width: 52%;
	margin: 30px auto 110px auto;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
}
.abt-np-group .banner-image{
	display: block;
    width: 115vw;
    position: absolute;
    bottom: -640px;
    left: -10vw;
    max-width: none;
}

ul.np-group-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.np-group-list li{
	position: relative;
	width: 33.3333%;
	transition: all 0.3s;
	border-bottom: 1px solid #DFE4EA;
	border-right: 1px solid #DFE4EA;
}
ul.np-group-list li:nth-child(3n){
	border-right: 0;
}
ul.np-group-list li:nth-child(n+4){border-bottom: 0;}
ul.np-group-list li a{
	display: block;
	height: 415px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	transition: all 0.3s;
	border-radius: 10px;
}
ul.np-group-list li a:hover{
	background: #FFFFFF;
	box-shadow: 0 20px 40px rgb(181 185 191 / 30%);
	transition: all 0.3s;
}
ul.np-group-list li a .img-hldr{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
ul.np-group-list li a .img-hldr img{display: block;}
ul.np-group-list li a h6{
	font: 20px/30px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
	margin-bottom: 25px;
	transition: all 0.3s;
}
ul.np-group-list li a:hover h6{
	font-size: 23px;
	font-weight: 600;
}
ul.np-group-list li a p{
	position: absolute;
	top: 65%;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
	padding: 0 20px;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s;
}
ul.np-group-list li a:hover p{
	opacity: 1;
	height: auto;
	overflow: visible;
	transition: all 0.3s;
}

.about-section{
	position: relative;
	background: #F0B954;
	padding: 120px 0;
}
.about-section h2{
	color: #FFFFFF;
	opacity: 0.30;
	text-align: left;
}
.about-section h3{
	color: #FFFFFF;
	text-align: left;
	margin-bottom: 25px;
}
.about-section .cnt p{
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
}
.about-section .about-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.about-section .about-left{
	-webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}
.about-section .about-right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 585px;
	margin-left: 160px;
	position: relative;
}
.about-section .dot-float{
    display: block;
	position: absolute;
    top: -45px;
    left: -68px;
}
.about-section .main-img{
	display: block;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 20px 40px rgb(181 185 191 / 30%);
}
.about-section .about-wave{
	display: block;
	position: absolute;
	right: -20%;
    bottom: 100px;
}
.about-section .about-circle{
	display: block;
    position: absolute;
    bottom: 80px;
    right: 0;
}
.about-section .about-btn{margin-top: 50px;}
.about-section .about-btn .primary-button{width: 175px;}

.count-section{
	background: #F8FBFF;
	text-align: center;
	padding: 80px 0;
}
.count-section .count-info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}
.count-section h6{
	font: 32px/48px 'Poppins', sans-serif;
	font-weight: 700;
	color: #1A202C;
	text-transform: capitalize;
}
.count-section p{
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
	text-transform: capitalize;
}
.count-section .line{
	margin: 0 auto;
	margin-top: 5px;
	background: #FF0000;
	width: 1px;
	height: 21px;
}
/* END NP Groups */

/* Contact Us */
.contact-section{
	padding: 60px 0 90px 0;
	position: relative;
	overflow: hidden;
}
.contact-section-overlay{
	position: absolute;
    top: -95vw;
    left: 0;
    transform: rotate(62deg);
    background: #F8FBFF;
    width: 100vw;
    height: calc(100vw * 2);
    z-index: 0;
}
.contact-section .wrapper{
	position: relative;
	z-index: 2;
}
.contact-form{
	padding: 30px 50px 40px 50px;
	width: 100%;
	max-width: 490px;
	margin: 100px auto 0 auto;
	background: #FFFFFF;
	box-shadow: 0 20px 40px rgb(181 185 191 / 30%);
}
.contact-form h4{
	font: 30px/46px 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A202C;
	margin-bottom: 30px;
}
.contact-form h4 span{color: #FD6363;}
.contact-form .button-holder .primary-button{width: 100%;}
/* END Contact Us */


/* About Us page */
.about-banner{
	overflow: hidden;
	position: relative;
	padding: 220px 0 100px 0;
}
.about-bnr-cnt{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.about-bnr-cnt h2{
	text-align: left;
	color: #FFFFFF;
}
.about-bnr-cnt h3{
	text-align: left;
	color: #FFFFFF;
	margin-bottom: 50px;
}
.about-bnr-cnt .about-bnr-info{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
.about-banner .about-banner-overlay{
	position: absolute;
	top: 0;
	left: 0;
	background: #35414F;
	width: 200vw;
	height: 100%;
	transform: skewY(-10deg);
    transform-origin: 0 0;
}
.about-banner.contact-us-banner .about-banner-overlay{
	transform: none;
}
.about-banner .wrapper{
	position: relative;
	z-index: 11;
}
.about-bnr-cnt .about-bnr-info p{
	font: 20px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
	width: 500px;
}
.about-bnr-cnt .about-bnr-card{
	width: 468px;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 0 20px 40px #B5B9BF4D;
	border-radius: 0 0px 40px 40px;
	padding: 50px 25px;
}
.about-bnr-cnt .about-bnr-card h5{
	font: 20px/30px 'Poppins', sans-serif;
	font-weight: 600;
	color: #1A202C;
}
.about-bnr-cnt .about-bnr-card h6{
	font: 14px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #A0AEC0;
	margin-top: 10px;
}
.about-bnr-cnt .about-bnr-card p{
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
	margin-bottom: 20px;
	margin-top: 10px;
}

.units-holder{
	padding-bottom: 140px;
	padding-top: 100px;
}
.units-holder .units-cnt{
	position: relative;
	width: 90%;
	margin: 0 auto;
	margin-top: 80px;
}
.units-holder .units-cnt .owl-prev{
	display: block;
	position: absolute;
    top: 50%;
    left: -50px;
    width: 30px;
	cursor: pointer;
	transition: all 0.3s;
}
.units-holder .units-cnt .owl-prev img{display: block;}
.units-holder .units-cnt .owl-next{
	display: block;
	position: absolute;
    top: 50%;
    right: -50px;
    width: 30px;
	cursor: pointer;
	transition: all 0.3s;
}
.units-holder .units-cnt .owl-next img{display: block;}
.units-holder .units-cnt .owl-prev:hover,
.units-holder .units-cnt .owl-next:hover{
	opacity: 0.7;
	transition: all 0.3s;
}
.units-holder .units-cnt .owl-prev.disabled,
.units-holder .units-cnt .owl-next.disabled{
	display: none;
}
.units-holder .units-cnt .units-each{
	position: relative;
	overflow: hidden;
	width: 100%;
	/*height: 417px;*/
	height: 360px;
	text-align: center;
}
.units-holder .units-cnt .units-each .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent linear-gradient(180deg, #FFFFFF 0%, #1A202C 100%) 0% 0% no-repeat;
	opacity: 0.20;
}
.units-holder .units-cnt .units-each .units-info{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.units-holder .units-cnt .units-each .units-info h6{
	font: 18px/27px 'Poppins', sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 15px;
	transform: translate(0, 60px);
    transition: all 0.3s;
}
.units-holder .units-cnt .units-each .btn-hldr{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    opacity: 0;
    margin-bottom: 45px;
    transform: translate(0, 35px);
    transition: all 0.3s;
}
.units-holder .units-cnt .units-each img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.units-holder .units-cnt .units-each:hover h6{
    font-size: 20px;
    transform: translate(0, 0);
    transition: all 0.3s;
}
.units-holder .units-cnt .units-each:hover .overlay{
    height: 150%;
    transition: all 0.3s;
}
.units-holder .units-cnt .units-each:hover .btn-hldr{
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.3s;
}
.units-holder .units-cnt .units-each .primary-button{padding: 5px 18px;}
/* END About Us page */

/* Contact Us */
.banner-image-holder{position: relative;}
.banner-image-holder .dots-image{
	display: block;
	position: absolute;
	top: -50px;
    left: -70px;
}
/* END Contact Us */

/* Gallery */
.button-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-top: 70px;
	margin-bottom: 50px;
	overflow: auto;
}
.button-list li{margin-right: 25px;}
.button-list li a{
	display: block;
	text-align: center;
	text-transform: uppercase;
	font: 16px/24px 'Poppins', sans-serif;
	font-weight: 500;
	color: #2D54FB;
	border: 3px solid #2D54FB;
	border-radius: 45px;
	padding: 9px 25px;
	transition: all 0.3s;
	white-space: nowrap;
}
.button-list li.active a,
.button-list li a:hover{
	background: #2D54FB;
	color: #ffffff;
	transition: all 0.3s;
}
/* END Gallery */

/* Tab */
.tab-content > div{display: none;}
.tab-content > div.active{display: block;}
/* END Tab */

/* Industries */
.tab-top-holder{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin: 60px 0;
}
.industries-tab-list{
	border: 2px solid #2D54FB;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
	background: #ffffff;
	border-radius: 50px;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	overflow: hidden;
}
.industries-tab-list li a{
	display: block;
	border-radius: 50px;
	padding: 12px 30px;
	font: 16px/24px 'Poppins', sans-serif;
	font-weight: 500;
	color: #2D54FB;
	text-transform: uppercase;
	transition: all 0.3s;
}
.industries-tab-list li.active a,
.industries-tab-list li:hover a{
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.161);
	background: #294DFF;
	color: #ffffff;
	transition: all 0.3s;
}
.industries-tab-list li a{}
.industries-tab-list{}
.industries-tab-list{}
.industries-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.industries-list .each-product{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 50%;
	margin-bottom: 50px;
}
.industries-list .each-product .img-holder{
	width: 225px;
	height: 300px;
	margin-right: 35px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.161);
}
.industries-list .each-product .img-holder img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: center;
}
.industries-list .each-product .content-holder{
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	-o-flex: 1;
	flex: 1;
}
.industries-list .each-product h6{
	font: 32px/48px 'Poppins', sans-serif;
	font-weight: 700;
	color: #1A202C;
	margin-bottom: 10px;
}
.industries-list .each-product .list-info{}
.industries-list .each-product .list-info li{
	margin-bottom: 20px;
}
.industries-list .each-product .list-info li .label-text{
	font: 16px/24px 'Poppins', sans-serif;
	font-weight: 400;
	color: #9FAEC0;
	margin-bottom: 5px;
}
.industries-list .each-product .list-info li .value-text{
	font: 16px/24px 'Poppins', sans-serif;
	font-weight: 400;
	color: #1A202C;
}
.industries-list .each-product .button-holder{margin-top: 60px;}

.color-list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.color-list a{
	display: block;
	cursor: default;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	margin-right: 5px;
}
.color-list .bg-gray{background-color: #CED0CD;}
.color-list .bg-black{background-color: #000000;}
.color-list .bg-red{background-color: #B93340;}
.color-list .bg-yellow{background-color: #E2BC2C;}
.color-list .bg-green{background-color: #68A236;}
/* END Industries */

/* END Content */

/* Footer */
#footer{
	background: #292825;
	padding: 30px 0;
}
#footer h6{
	text-align: center;
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
}
#footer ul.foot-list{
	padding: 30px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
#footer ul.foot-list li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 30%;
}
#footer ul.foot-list li .icon-hldr{
	display: block;
	min-width: 20px;
	margin-right: 10px;
}
#footer ul.foot-list li .icon-hldr img{display: block;}
#footer ul.foot-list li .txt-hldr{
	font: 16px/25px 'Poppins', sans-serif;
	font-weight: 400;
	color: #FFFFFF;
	transition: all 0.3s;
}
#footer ul.foot-list li a.txt-hldr:hover{color: #F3BC2B;}
#footer .copyright{
	font: 12px/18px 'Poppins', sans-serif;
	font-weight: 400;
	color: rgb(255 255 255 / 50%);
	text-align: center;
}
#footer .copyright a{
	display: inline-block;
	color: #F3BC2B;
	transition: all 0.3s;
}
#footer .copyright a:hover{color: #ffffff;}
/* END Footer */

/* Animation */
.bounce{
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@-webkit-keyframes bounce{
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-200px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounce {0%,20%,50%,80%,100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
/* END Animation */
/* Unit Gallary */
.ug-thumb-wrapper.ug-tile .ug-tile-icon.ug-icon-zoom{
    background-image: url('../images/unitgallery/icon-zoom32.png');
}
.ug-lightbox .ug-lightbox-button-close,
.ug-lightbox .ug-lightbox-button-close.ug-button-hover{
	background-image: url('../images/unitgallery/lightbox-close.svg');
	background-size: 100% 100%;
	background-position: 0 0;
	transform: translate(-30px, 30px);
}
.ug-slider-preloader.ug-loader3.ug-loader-black {
    background-image: url('../images/unitgallery/loader-black3.gif');
}
.ug-lightbox .ug-lightbox-arrow-left.ug-arrow-hover,
.ug-lightbox .ug-lightbox-arrow-left,
.ug-lightbox .ug-lightbox-arrow-right{
	background-image: url('../images/unitgallery/lightbox-left.svg');
	background-position: 0 0;
}
.ug-lightbox .ug-lightbox-arrow-right.ug-arrow-hover,
.ug-lightbox .ug-lightbox-arrow-right{
    background-image: url('../images/unitgallery/lightbox-right.svg');
    background-position: 0 0;
}
.ug-slider-wrapper .ug-button-videoplay.ug-type-square{	
	background-image: url('../images/unitgallery/play-button-square.png');
}
.ug-gallery-wrapper .ug-overlay-disabled{
	background-image: url('../images/unitgallery/cover-grid.png');
}
.ug-gallery-wrapper .ug-preloader-trans{
	background-image: url('../images/unitgallery/loader_skype_trans.gif');
}
.ug-slider-preloader.ug-loader1.ug-loader-black{
	background-image: url('../images/unitgallery/loader-black1.gif');	
}
.ug-gallery-wrapper .ug-videoplayer{
	background-image: url('../images/unitgallery/loader-black1.gif');
}
.ug-videoplayer .ug-videoplayer-wrapper{
	background-image: url('../images/unitgallery/loader-black1.gif');
}
/* END Unit Gallary */
.popup_visible{overflow: hidden;}
.gallery-popup{
	width: 100%;
	height: 100%;
}
.gallery-second{
	margin: 0 auto;
}
.close-popup{
	display: block;
    cursor: pointer;
    color: #ffffff;
    float: right;
    padding: 20px;
    font-weight: 700;
    font-size: 40px;
}
/*Balachandra*/
.header-button{
	display: block;
    font: 14px/25px 'Poppins', sans-serif;
    font-weight: 700;
    color: #0d0d0d;
    text-transform: uppercase;
    text-align: center;
    background: #F3BC2B;
    border-radius: 22px;
    padding: 7px 20px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 20px;
}
.header-button:hover{
	background: #ffffff;
	transition: all 0.3s;
}
/*Balachandra*/