/*------------------------------------------------------------------
		File Name: style.css
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
		[Table of contents]

	1. IMPORT FONTS
    2. IMPORT FILES
	3. BASIC
    4. LOADER
	5. HEADER
	      - Header Top 
	      - Menu
	6. SECTION
	7. SHOP
    8. FOOTER
	9. CUSTOM
	10. FILTER
		
	-------------------------------------------------------------------*/


/*------------------------------------------------------------------
		1. IMPORT FONTS
	-------------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,600,700,900);
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i,700,700i);
@import url(https://fonts.googleapis.com/css?family=Arvo:400,400i,700,700i);

/*------------------------------------------------------------------
		2. IMPORT FILES
	-------------------------------------------------------------------*/


@import url(font-awesome.min.css);

/*------------------------------------------------------------------
		3. BASIC
	-------------------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	outline: none !important;
	box-sizing: border-box;
}

html,
body {
	color: #898989;
	font-size: 15px;
	font-family: 'Raleway', sans-serif;
	line-height: normal;
	font-weight: 400;
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
}


ol,
ul {
	list-style: none;
	margin: 0;
}

a {
	color: #000;
	text-decoration: none;
	outline: none;
}

a,
.btn {
	text-decoration: none !important;
	outline: none !important;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.img-responsive {
	max-width: 100%;
}


h2 {
	font-size: 35px;
	color: #000;
	line-height: 36px;
	font-weight: 600;
	position: relative;
	margin-bottom: 15px;
	text-transform: uppercase;
	margin-top: 15px;
}

h3 {
	font-size: 24px;
	color: #000;
	line-height: normal;
	font-weight: 500;
	text-transform: none;
	margin-bottom: 20px;
	font-weight: 600;
}

h4 {
	font-size: 18px;
	color: #000;
	line-height: 21px;
	font-weight: 600;
	text-transform: none;
	margin: 30px 0 20px 0;
}

h5 {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	line-height: normal;
	color: #000;
}

p {
	color: #707070;
	font-size: 15px;
	line-height: 21px;
}

p.large {
	color: #898989;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 10px 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: 0;
	font-weight: normal;
	position: relative;
	padding: 0;
	font-weight: normal;
	line-height: normal;
	color: #1f1f1f;
	margin: 0
}



.container {
	width: 1200px;
	max-width: 1200px;
}


.full {
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
}


.center {
	width: 100%;
	display: flex;
	justify-content: center;
}

.margin_bottom_20_all {
	margin-bottom: 20px;
}

.margin_bottom_30_all {
	margin-bottom: 30px;
}


.section {
	float: left;
	width: 100%;
}
.main_heading {
	position: relative;
	margin-bottom: 65px;
}

.main_heading::after {
	content: "";
	display: block;
	margin: 20px auto 0;
	width: 180px;
	height: 5px;
	background: #e84f2b;
}

.main_heading.text_align_left::after {
	margin-left: 0;
}

.main_heading.text_align_right::after {
	margin-right: 0;
}

.icon img {
	width: 100px;
}






/*------------------------------------------------------------------
		4. LOADER
	-------------------------------------------------------------------*/

.bg_load {
	float: left;
	position: fixed;
	width: 100%;
	text-align: center;
	height: 100%;
	z-index: 999;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader_animation {
	animation-name: rotatey;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: rotatey;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: rotatey;
	-moz-animation-duration: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: rotatey;
	-ms-animation-duration: 2s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: rotatey;
	-o-animation-duration: 2s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}

@keyframes rotatey {
	from {
		-webkit-transform: rotatey(0deg);
		-moz-transform: rotatey(0deg);
		-ms-transform: rotatey(0deg);
		-o-transform: rotatey(0deg);
		transform: rotatey(0deg);
	}
	to {
		-webkit-transform: rotatey(360deg);
		-moz-transform: rotatey(360deg);
		-ms-transform: rotatey(360deg);
		-o-transform: rotatey(360deg);
		transform: rotatey(360deg);
	}
}



.full_layout_without_container {
	padding: 80px 15px 50px;
}

.opacity_half_color {
	opacity: 0.5;
}

.opacity_70_color {
	opacity: 0.7;
}

.padding_75 {
	padding: 75px 0;
}


/*------------------------------------------------------------------
		5. HEADER
	-------------------------------------------------------------------*/




/*----- Header Top -----*/

header {
	position: relative;
	z-index: 1;
}


.header_top {
	min-height: 50px;
}

.header_bottom {
	min-height: auto;
}

.header_top ul {
	list-style: none;
	margin: 10px 0;
	padding: 0;
}

.header_top ul li {
	font-size: 14px;
	color: #fff;
	float: left;
}

.header_top ul li i {
	margin: 0 2px 0 0;
}

.header_top ul li i {
	color: #fff;
	transition: ease all 0.2s;
	font-size: 18px;
	margin-right: 5px;
}



.logo {
	float: left;
	margin: 19px 0 19px;
	position: relative;
	left: 0;
}

.logo img {
	height: 80px;
}

.header_style_1 .header_top {
	position: relative;
}

.topbar-left {
	float: left;
}
.topbar-right {
	float: right;
}

.header_top .topbar-left .list-inline {
	float: left;
	margin: 15px 0;
}


.select-lang{
	color: white;
	text-decoration: underline;
}


.header_top ul li {
	font-size: 13px;
	color: #fff;
	float: left;
	margin-right: 20px;
}


.header_bottom {
	position: relative;
	z-index: 9;
}


/*----- Menu -----*/

.menu_side {
	float: left;
	width: auto;
}


#navbar_menu,
#navbar_menu ul,
#navbar_menu ul li,
#navbar_menu ul li a,
#navbar_menu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#navbar_menu ul,
#navbar_menu ul li,
#navbar_menu ul li a,
#navbar_menu #menu-button {
	position: relative;
}

#navbar_menu:after,
#navbar_menu>ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

#navbar_menu #menu-button {
	display: none;
}

#navbar_menu {
	margin: 37px 0 0 0;
	float: left;
}

#navbar_menu>ul>li {
	float: left;
}

#navbar_menu.align-center>ul {
	font-size: 0;
	text-align: center;
}

#navbar_menu.align-center>ul>li {
	display: inline-block;
	float: none;
}

#navbar_menu.align-center ul ul {
	text-align: left;
}

#navbar_menu.align-right>ul>li {
	float: right;
}

#navbar_menu>ul>li>a {
	padding: 15px 18px;
	font-size: 18px;
	color: #0c80a6; 
	font-weight: 600;
	text-transform: none;
}

#navbar_menu ul ul {
	position: absolute;
	left: -9999px;
}

#navbar_menu.align-right ul ul {
	text-align: right;
}

#navbar_menu ul ul li {
	height: 0;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
}

#navbar_menu li:hover>ul {
	left: auto;
}

#navbar_menu.align-right li:hover>ul {
	left: auto;
	right: 0;
}

#navbar_menu li:hover>ul>li {
	height: 45px;
}

#navbar_menu ul ul ul {
	margin-left: 100%;
	top: 0;
}

#navbar_menu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}

#navbar_menu ul ul li a {
	padding: 15px 20px 15px;
	font-size: 18px;
	color: #999;
	font-weight: 450;
	background: #fff;
	color: #666 !important;
}

#navbar_menu ul ul li:hover>a,
#navbar_menu ul ul li a:hover {
	color: #ffffff;
}

#navbar_menu ul ul {
	width: 230px;
	box-shadow: 0 5px 35px -18px #000;
	border-top: solid #000 2px;
}

#navbar_menu ul ul li a:hover,
#navbar_menu ul ul li a:focus {
	color: #fff !important;
	padding: 15px 20px 15px;
}

.main_bg {
	margin-top: 0px;
	min-height: 70px;
	position: relative;
}



header .header_top,
header .header_bottom,
section,
footer,
.bottom_footer,
.light_silver,
.bottom_silver_section {
	float: left;
	width: 100%;
}



/*------------------------------------------------------------------
		6. SECTION
	-------------------------------------------------------------------*/

.padding_layout_1 {
	padding-top: 20px;
	padding-bottom: 115px;
}

.information_bottom.left-side {
	width: auto;
	float: left;
}

.information_bottom.right-side {
	width: auto;
	float: right;
}

.information_bottom {
	float: left;
	display: flex;
	justify-content: center;
}

.info_cont h4 {
	margin: 0;
}

.info_cont p {
	color: #000;
	float: left;
	width: 100%;
	margin: 0;
}

.icon_bottom {
	width: 30px;
	margin-right: 20px;
	text-align: center;
}

.info_cont {
	float: left;
	padding: 4px 0;
}

.icon_bottom {
	width: 50px;
	margin-right: 15px;
	text-align: center;
	font-size: 30px;
	line-height: normal;
}
.adress_cont .info_cont p {
    color: #737373;
}

.adress_cont .info_cont h4 {
    font-size: 14px;
    font-family: poppins;
    font-weight: 500;
}


/*------------------------------------------------------------------
		7. SHOP
	-------------------------------------------------------------------*/

.product_list {
	transition: ease all 0.5s;
}

.product_list:hover,
.product_list:focus {
	box-shadow: 0 0 25px 0px #000;
	border-bottom: solid #17a5e9 5px;
}

.product_img {
	overflow: hidden;
	background: #00546f34;
}

.product_img img {
	padding: 20px;
}


.product_detail_btm h4 {
	margin: 20px 0 10px 0;
	text-align: center;
}

.product_list:hover div.product_img img,
.product_list:focus div.product_img img {
	transform: scale(1.2);
	transition: ease all 0.5s;
}



/*------------------------------------------------------------------
		8. FOOTER
	-------------------------------------------------------------------*/

footer {
	background: #632e62;
	min-height: 375px;
	padding: 45px 0;
	position: relative;
}

.footer_style_2 {
	padding: 0;
	background: rgb(25, 25, 25)
}

.footer_blog {
	float: left;
	width: 65%;
	padding: 75px 75px 100px 75px;
}

footer h2 {
	color: #eee;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 35px;
	margin-top: 0;
	letter-spacing: 0.5px;
}

.footer_blog .col-md-6 {
	margin-bottom: 30px;
}

footer h2::after {
	width: 30px;
	height: 4px;
	content: "";
	margin: 0;
	display: block;
	position: relative;
	top: 7px;
}

footer p {
	color: #a5a5a5;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

footer p a {
	color: #a5a5a5;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}

.footer-menu li {
	margin: 5px 0;
}

.footer-menu li a {
	color: #a5a5a5;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
}


.cprt {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	float: left;
	height: auto;
	left: 0;
	padding: 18px 0;
	padding-left: 0%;
}

.cprt p {
	color: #fff;
	margin: 0;
	font-size: 15px;
}

.cprt p {
	line-height: 18px;
	padding: 0 15px;
}

/*------------------------------------------------------------------
		9. CUSTOM
	-------------------------------------------------------------------*/
.text_align_center{
	text-align: center;
	padding: 20px
}

.service_blog_inner .icon img {
	width: 65px;
}

.service_blog_inner h4.service-heading {
	margin: 25px 0 15px 0;
	color: black;
	font-weight: 600;
}

.service_blog_inner {
	margin-bottom: 35px;
	margin-top: 10px;
}

.gross_layout {
	position: relative;
}

.gross_layout::after {
	position: absolute;
	background: url(../images/it_service/services.jpg);
	width: 35%;
	height: 100%;
	right: 0;
	content: "";
	top: 0;
	background-size: cover;
	background-position: right;
}

.gross_layout::before {
	position: absolute;
	width: 35%;
	height: 100%;
	right: 0;
	content: "";
	top: 0;
	background-size: cover;
	background-position: right;
	z-index: 1;
}

.gross_layout {
	position: relative;
}

.brand_list li {
	float: left ;
	width: 25%;
	text-align: center;
	background: #FFFFFF;
	padding: 0 0;
	margin: 0 0 ;
	border: solid #FFFFFF 0px;
}

.map_section {
	float: left;
	width: 35%;
}

#map {
	height: 100%;
	min-height: 540px;
	z-index: 1;
}
.inner_banner_section {
	background: url('../images/it_service/inner_page_banner.jpg');
	min-height: 245px;
	background-size: cover;
	background-position: center center;
}



.page-title {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 15px;
}

.breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	color: #fff;
}

.breadcrumb li {
	font-weight: 500;
	font-size: 15px;
}

.breadcrumb>li+li::before {
	position: relative;
	content: '\203A';
	margin: 0 10px;
	font-size: 18px;
	color: inherit;
	opacity: .7;
	display: inline-block;
}

.breadcrumb li a {
	position: relative;
	top: 1px;
	left: 0;
}

.title-holder {
	margin: 85px 0 0;
}



.topbar-hightlight a {
	color: #fff;
}

.product-heading {
	text-align: left;
	border-bottom: 1px solid #f0f0f0;
}

.product-heading h2 {
	font-size: 25px;
	color: #181818;
	padding-bottom: 20px;
	margin: 0;
	font-weight: 600;
	text-transform: none;
}

.product-detail-side {
	border-bottom: 1px solid #f0f0f0;
	text-align: left;
	padding: 15px 0;
}


.detail-contant {
	text-align: left;
	padding: 25px 0;
	float: left;
	width: 100%;
}

.product_detail_feature_img {
	box-shadow: 0px 0px 30px -6px #000;
}


/*------------------------------------------------------------------
		10. FILTER
	-------------------------------------------------------------------*/
	#filterForm {
		max-width: 800px;
		margin: 420px auto 0;
		background-color: #f8f8f8;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.form-group {
		display: flex;
		flex-direction: column;
		margin-bottom: 15px;
		max-width: 300px;
	}
	
	label {
		margin-bottom: 8px;
		font-weight: bold;
		color: #333;
	}
	
	select {
		width: 100%;
		padding: 12px;
		border: 1px solid #e84f2b;
		border-radius: 6px;
		box-sizing: border-box;
		background-color: #f0f8ff;
		transition: 0.3s ease-in-out;
	}
	
	select:hover,
	select:active {
		background-color: #e84f2b;
		color: #fff;
	}
	
	select option {
		color: black;
		background-color: #f0f8ff;
		transition: ease-in-out, color 0.3s ease-in-out;
	}

	.form-group label,
	.form-group select {
		margin-bottom: 16px;
	}
	
	#quan {
		padding-top: 20px;
		color: #e84f2b;
		font-size: 1.2em;
	}
	
	
	