@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900";
@import "https://fonts.googleapis.com/css?family=Anton&display=swap&subset=latin-ext,vietnamese";

:root {
	--primary: #008ad1;
	--secondary: #282e3c;
	--white: #fff;
	--black: #000;
	--darkblue: #303849;
	--bodytxt: #626a7b;
	--lightblue: #94daff;
	--lightgray: #f7f8f8;

	/*---- for home end ---*/

	--body-font: 'Roboto', sans-serif;
	--title-font: 'Anton', serif;

}

* {
	margin: 0;
	padding: 0
}

h1,
h2,
h3,
h4,
h5, h6 {
	margin: 0;
	font-family: var(--title-font);
	color: var(--darkblue)
}

p{margin: 0;}

body {
	color: var(--bodytxt);
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--body-font);
	overflow-x: hidden;
	font-weight: 300;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

:focus {
	outline: -webkit-focus-ring-color auto 0;
}

a,
a:hover,
a:focus,
a:visited {
	outline: 0;
	text-decoration: none;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}
a {
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}
a:hover {
	color: var(--primary);
}
button::-moz-focus-inner {
	outline: 0;
}

button:focus {
	outline: 0px dotted;
	outline: 0px auto -webkit-focus-ring-color;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

ul li,
ol li {
	list-style-type: none;
	text-decoration: none;
}

::selection {
	background: var(--primary);
	color: var(--white);
}

a {
	font-family: var(--body-font);
	cursor: pointer;
}
.bg-light {
    background-color: var(--white)!important;
}

/*--- navigation style ----*/
.navbar {
	text-align: right;
	padding: 0;
	position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 999;
    width: 100%;
	justify-content: space-between;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}
.headerup {
    transform: translateY(-100%);
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}

.logo {
	width: 175px;
	margin: 0;
}
.navbar-brand{padding-top: 10px; padding-bottom: 10px;}
.navbar-nav ul li { display: inline-block;}
.navbar-nav { margin: 0;}
.navbar-nav ul li a {
	display: block;
	text-align: center;
	color: var(--white);
	padding: 0 16px;
	transition: all 0.4s ease;
	font-size: 16px;
    line-height: 1;
	font-weight: 300;
}
.navbar-nav ul.nav-list li a{
	padding: 26px 16px 26px;
}
.navbar-nav ul.nav-list li.active a{
	color: var(--primary);
	font-weight: 600;
}
.navbar-nav ul li:last-child a { padding-right: 0;}
.navbar-nav ul li a:hover {
	color: var(--primary);
}
.navbar-nav .sm-icons, .mob-nav .sm-icons{
	padding-bottom: 20px;
}
.navbar-nav .sm-icons .lab, .mob-nav .sm-icons .lab{
	font-size: 20px;
	color: var(--bodytxt);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.navbar-nav ul.sm-icons li a, .mob-nav ul.sm-icons li a{padding: 0 8px;}
.navbar-nav ul.sm-icons li a:hover .lab, .mob-nav ul.sm-icons li a:hover .lab{color: var(--primary);}

.navbar .dropdown {position: relative;}
.navbar .headdropdown-menu {
	width: 285px;
	left: -145px;
	right: 0;
	top: auto;
	margin: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	padding: 10px 12px;
	z-index: 99;
	position: absolute;
	display: none;
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.navbar .headdropdown-menu ul li {
	width: 100%;
	transition: all 0.4s linear;
	display: block;
}
.navbar .headdropdown-menu ul li:after {display: none;}
.navbar .headdropdown-menu ul li a {
	font-weight: normal;
	font-size: 15px;
	line-height: 19px;
	font-weight: 400;
	text-align: center;
	color: #000;
	padding: 12px 12px;
	border-bottom: 1px solid #eee !important;
}
.navbar .headdropdown-menu ul li:last-child a {border: 0 !important;}
.navbar .headdropdown-menu ul li:hover a {color: var(--primary);}
.mob-nav {display: none;}

.container-fluid.top-bar{display: block; width: 100%; padding: 10px 25px; border-bottom: 1px solid rgba(255,255,255,.1);}
.sm-icons li{display: inline-block;}
.sm-icons li a{padding: 0 8px;}
.sm-icons li a img{width: 16px;}
.topbar-block a {color: #fff;}
.topbar-block a img {width: 16px; margin: 0 10px 0 0;}

.nav-bottom-bar {display: flex; justify-content: space-between; width: 100%; padding: 0 25px;}
.nav-bottom-bar .navbar-nav{order: 4;}

.sticky .navbar{background: rgba(40,46,60,.96);}

/*--- common style ----*/

.container {width: calc(100% - 100px); max-width: 1280px;}

.white-txt{color: #fff;}
.primary-color-txt{color: var(--primary);}
.secondary-color-txt{color: var(--secondary);}
.section-bg{background-color: var(--lightgray);}

h1{font-size: 120px;}
h2{font-size: 60px;}
h3{font-size: 40px;}
h4{font-size: 30px;}
h5 {font-size: 24px;}
h6 {font-size: 20px;}

.fw-100 {font-weight: 100;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-700 {font-weight: 700;}
.fw-900 {font-weight: 900;}

.section-space-one {padding: 100px 0;}
.section-space-two {padding: 140px 0;}

.box-border-right {border-right: 1px solid rgb(255 255 255 / 32%);}

img, .logo img, .hero-banner img, .hmaboutleft img, .isologo img, .owner-img img, .owner-description img, .project-img img, .certificate-img img, .product-img img, .icon-box img, .client-img img { width: 100%;}

#home-slider.owl-theme .owl-controls .owl-page span, .sm-icons a img, .pagelink:before, .client-img img {
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
}
.back-img, .img-wrapper:before, .cont-box, .cont-box:before, .normalbtn, .brochure-download a, .brochure-download a img{
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}


/*--- home banner style ----*/

#home-slider .item {
	position: relative;
	margin: 0 auto;
	display: block;
	min-height: 600px;
	height: 100vh;
	background-color: #fff;
}
.slideimgbg {
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
}
.slideimgbg:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:  rgba(0, 0, 0, 0.05);
}
#home-slider.owl-theme .owl-controls{
    margin: auto;
    bottom: 80px;
    position: absolute;
	text-align: center;
    left: auto;
    right: 4%;
	bottom: 150px;
    width: 16px;
}
#home-slider.owl-theme .owl-controls .owl-page {vertical-align: middle; margin-top: 7px; display: block;}
#home-slider.owl-theme .owl-controls .owl-page span{
	height: 25px;
	width: 5px;
	background: #fff;
}
#home-slider.owl-theme .owl-controls .owl-page.active span{
	height: 25px;
	width: 5px;
	background: var(--primary);
}

.slider-inner-container.container, .slider-inner-container .row{height: 100%; align-items: center;}

 #hm-product-slider.owl-theme .owl-controls .owl-page span, #client-slider.owl-theme .owl-controls .owl-page span{
	height: 5px;
	width: 25px;
	background: #ededed;
}
#hm-product-slider.owl-theme .owl-controls .owl-page.active span, #client-slider.owl-theme .owl-controls .owl-page.active span{
	height: 5px;
	width: 25px;
	background: var(--primary);
}
.slider-txt{
	position: relative;
	max-width: 650px;
}
/*.slider-txt h1{
	font-size: 260px;
    left: 0;
    line-height: 1;
    margin: 0;
    opacity: .09;
    position: absolute;
    top: 36%;
    transform: translateY(-47%);
    width: 100%;
    word-break: initial;
    z-index: 0;
	text-transform: uppercase;
	color: #fff;
	
}*/

.slider-txt h2{
	font-size: 65px;
    line-height: 1;
    margin: 0;
    width: 100%;
	text-transform: uppercase;
}
.slider-txt p{
	font-size: 36px;
    line-height: 1;
    margin: 10px 0 50px;
    width: 100%;
	/*text-transform: uppercase;*/
	font-weight: 300;
}

.bottom-arrow{
	position: absolute;
    width: 40px;
    margin: auto;
    bottom: 145px;
    left: 0;
    right: 0;
}
#bot-arrow {
  width: 40px;
    height: auto;
}
#bot-arrow:hover polygon {
  fill: #FFF;
  transition: all 0.2s ease-out;
}
#bot-arrow:hover polygon.arrow-bottom {
  transform: translateY(-18px);
}
#bot-arrow:hover polygon.arrow-top {
  transform: translateY(18px);
}
polygon {
  fill: #FFF;
  transition: all 0.2s ease-out;
}
polygon.arrow-middle {
  opacity: 0.75;
}
polygon.arrow-top {
  opacity: 0.5;
}


/*--- highlight section style ----*/

.highlights-section{
	margin: -100px 0 0;
	position: relative;
}
.highlight-box {
	background: var(--secondary) url("../images/line-bg.png") no-repeat center center;
	background-size: cover;
	padding: 50px;
}
.highlight-block{
	padding: 0 12px;
}
.highlight-block p{
	font-size: 25px;
    line-height: 1.3;
    font-weight: 100;
}

.highlight-block p span{
	font-weight: 600;
}

/*--- section title style ----*/
.section-title{position: relative}
.section-title:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 1px;
	left: 0;
	bottom: -15px;
	background-color: var(--primary);
}
.section-title h2{
	text-transform: uppercase;
	margin-bottom: 60px;
}

.section-title.center-title{text-align: center;}
.section-title.center-title:after{right: 0; margin: auto;}

.light-txt{
	font-size: 150px;
    left: -25px;
	line-height: 1;
    margin: 0;
    opacity: .05;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    word-break: initial;
    z-index: -1;
}
.section-title.center-title{text-align: center;}
.center-title.section-title:after {
	right: 0;
	margin: auto;
}
/*--- left right image style ----*/
.img-wrapper {
	display: inline-block;
    margin-top: 30px;
    position: relative;
}
.img-wrapper img {
    max-width: 601px;
    width: 100%;
}
.left-img{margin-left: 30px;}
.right-img{margin-right: 30px;}
.back-img{
	position: absolute;
    z-index: -1;
}
.img-wrapper.left-img img.back-img {
    left: -30px;
    top: -30px;
	opacity: 0.16;
}
.img-wrapper.right-img img.back-img {
    right: -30px;
    top: -30px;
	opacity: 0.16;
}
.img-wrapper:before {
    content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: -30px;
	top: -30px;
	background-color: var(--secondary);
	z-index: -2;
}
.img-wrapper.right-img:before{left: auto; right: -30px;}
.img-wrapper.left-img:hover img.back-img, .img-wrapper:hover:before {
    transform: translateX(-5%);
}
.img-wrapper.right-img:hover img.back-img, .img-wrapper.right-img:hover:before {
    transform: translateX(5%);
}
.col-lg-7.about-img{padding-right: 40px;}
/*--- counter style ----*/
.counter-panel{
	background: url('../images/counter-bg.jpg') no-repeat center center;
	position: relative;
	background-attachment: fixed;
    background-size: cover;
}
.counter-panel:before {
    content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: var(--secondary);
	opacity: 0.8;
	z-index: 0;
}
.counter-panel p{line-height: 1.2;}
span.counter-value {
    padding: 7px 0 2px;
    display: block;
}

/*--- bullet list style ----*/
ul.circle-bullet-list {
    padding-left: 0;
    margin: 30px 0 0;
    list-style: none;
}
.circle-bullet-list li {
    position: relative;
    padding: 3px 0 3px 26px;
    font-size: 16px;
    line-height: 24px;
   
}
.circle-bullet-list li:before {
    content: '';
    height: 7px;
    width: 7px;
    border-radius: 20px;
    position: absolute;
    background-color: var(--primary);
    left: 0px;
    top: 10px;
}


.pagelink{
	color: var(--primary);
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
.pagelink:before{
	content: '';
    position: absolute;
    height: 1px;
    width: 30px;
    background-color: var(--primary);
    right: -42px;
    top: 8px;
}
.pagelink:after{
	content: '';
    position: absolute;
    height: 7px;
    width: 7px;
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    right: -42px;
    top: 5px;
    transform: rotate(
-45deg);
}
.pagelink:hover{letter-spacing: 2px;}
.pagelink:hover:before{
    width: 20px;
    right: -42px;
}

/*--- home page products line style ----*/
.product-line-panel{
	margin-top: 40px;
}
.product-block {
	width: calc(100% - 30px);
	    box-shadow: 0 7px 13px 0 rgb(0 0 0 / 15%);
	margin: 0 auto 30px;
}
.product-img {
	
}
.product-nm {
	padding: 20px 30px ; 
	text-align: center;
    height: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.product-block a .product-nm p{
	color: var(--bodytxt);
}
.product-block a:hover .product-nm p{
	color: var(--primary);
}

/*--- innerpage style ----*/
.innerpage-banner {
	background-color: var(--secondary);
	color: var(--white);
	padding: 200px 0 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.innerpage-banner h1{	
	font-size: 55px;
    line-height: 1.2;
    font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}
.innerpage-banner h5{
	font-family: var(--body-font);
	font-size: 14px;
    line-height: 1.2;
    padding-bottom: 20px;
    font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.contact-banner{background-image: url('../images/banner-contact.jpg'); background-position: 65% 50%;}
.who-we-are-banner{background-image: url('../images/inner-page-banner.jpg'); background-position: 78% 50%;}

.icon-box {
	width: 70px;
	margin-bottom: 20px;
}


.client-img img {
	filter: grayscale(1);
}
.client-img:hover img {
	filter: grayscale(0);
}
.client-img {
    padding: 70px 30px 50px;
}

.designation{
	margin-bottom: 50px;
    font-weight: 400;
    font-size: 23px;
}
.product-info{
	padding-left: 50px;
}
.product-info h5{
	margin-bottom: 15px;
}
.product-info .small{font-size: 90%;}
.product-img-block img{z-index: 2;}

.detail-note{
	font-size: 90%;
	font-weight: 400;
    padding: 10px 18px;
    background: #ededed;
}
.brochure-download img {
    width: 49px;
	margin-right: 15px;
}

.brochure-download a {
    background: #008ad1;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 6px;
}
.brochure-download a:hover{background-color: var(--secondary);}
.brochure-download a:hover img {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.brochure-download {
    margin-top: 40px;
    text-align: right;
    border-top: 1px solid #ededed;
    padding-top: 30px;
}
/*--- contact page style ----*/
.cont-box{
	padding: 40px 45px 35px 50px;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
	height: 100%;
	position: relative;
	overflow: hidden;	
    min-height: 200px;

}
.cont-box:hover{background-color: #e6f4fa;     box-shadow: 0 4px 14px rgb(30 43 59 / 19%);}
.cont-box:before{
	content: "";
	position: absolute;
	left: 0;
	right: -34px;
    bottom: -30px;
	background: url(../images/icon-location.svg) no-repeat;
  background-size: 188px;
    background-position: 100%;
    z-index: 0;
    height: 100%;
    opacity: 0;
}
.cont-box:hover:before{opacity: 0.1;}
.phone-box.cont-box:before{background-image: url(../images/icon-call.svg);}
.mail-box.cont-box:before{background-image: url(../images/icon-mail.svg);}
.cont-icon{
	width: 40px;
	margin-right: 20px;
}
.cont-desc{width: calc(100% - 60px); position: relative; z-index: 3;}
.cont-desc h5{margin-bottom: 10px;}
.cont-desc p {
    font-weight: 400;
    line-height: 1.3;
    font-size: 16px;
    padding: 5px 0px;
}
.cont-desc a{color: var(--darkblue);}
.cont-desc a:hover{color: var(--primary);}

.form-container {
    max-width: 900px;
    margin: auto;
}
.form-group input,
.form-group textarea {
	border: 1px solid #C6CDDB;
	width: 100%;
	background-color: transparent;
	box-sizing: border-box;
	border-radius: 0;
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	color: #777C81;
	padding: 15px 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.form-group textarea{height: 180px; line-height: 1.4;}
.form-group {margin-bottom: 10px;}
:focus {outline: 1px solid var(--primary);}

.error + .error {
    font-size: 14px;
    color: #f00;
    margin: 5px 0;
	font-weight: 400;
}

.success-msg{
	font-size: 38px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
	padding: 50px 0;
	max-width: 500px;
	margin: auto;
}

.normalbtn{
	font-size: 15px;
	background-color: var(--primary);
	color: #fff;
	padding: 12px 20px;
	border: 0;
	max-width: 180px;
	width: 100%;
	display: block;
}

.normalbtn:hover{
	background-color: var(--secondary);
}

.mapblock iframe{
	width: 100%;
	margin-bottom: -15px;
}
/*--- footer style ----*/
footer {
	background-color: var(--darkblue);
	color: var(--white);
}
footer .container{padding-top: 150px;padding-bottom: 100px;}
footer h4{
	font-size: 30px;
	line-height: 1.3;
	margin-bottom: 32px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
}
.ftr-info img{width: 170px; margin-bottom: 32px;}
.ftr-info .sm-icons img{width: 14px;}
.sm-icons a:hover img{opacity: 0.4;}
.ftr-info p {margin-bottom: 24px;}
.bordered-list li a{
	padding: 17px  0;
	border-bottom: 1px solid rgba(255,255,255,.2);
	display: block;	
}
.ftr-contact .bordered-list li a{
	display: flex;
	align-items:flex-start;
}
.ftr-contact .bordered-list li a img{
	 margin-top: 5px;
	margin-right: 15px;
	width: 14px;
}
footer ul li a {
	color: var(--white);
}
.copyrightwrap p{
	font-size: 16px;
    font-weight: 300;
    line-height: 24px;
	margin: 0;
	color: var(--darkblue);
}
.copyrightwrap {
	background-color: #fff;
    padding: 20px 15px;
	text-align: center;
}
.hmpglink{display: none;}
#index .hmpglink{display: block;}
#index .othpglink{display: none;}
.othpglink{display: block;}
/*--- back to top button style ----*/
.back-to-top {
    width: 50px;
    height: 50px;
    opacity: 1;
    position: fixed;
    bottom: 20px;
    text-align: center;
    right: 20px;
    display: none;
    background: var(--primary);
    z-index: 999;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    padding: 19px 0;
    font-weight: 400 !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
	    border-radius: 30px;
}
.back-to-top:hover {
	background: var(--secondary);
}
.top-arrow{
	width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    display: block;
    border-right: 2px solid #fff;
    position: relative;
    margin: auto;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.top-arrow:before{
	content: "";
	position: absolute;
	height: 13px;
	border-left: 2px solid #fff;
    left: 0px;
    top: -2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#form-success {
    height: 0px;
    margin: -100px 0 100px;
}
