/**
* [Table of contents]
  1 root css
  2 selection css
  3 default css
  4 header css
  5 banner css
  6 owl css
  7 footer css
/**


/* [01] ROOT STARTS Here */
:root {
	/* Font style */
	--primary-font: 'Gilroy';
	--secondary-font: 'Gilroy';
}

/* [01] ROOT STARTS End */

/* [02] TYPOGRAPY STARTS Here */
@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-UltraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Heavy.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-ThinItalic.ttf') format('truetype');
	font-weight: 100;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-UltraLightItalic.ttf') format('truetype');
	font-weight: 200;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-LightItalic.ttf') format('truetype');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-RegularItalic.ttf') format('truetype');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-MediumItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-SemiBoldItalic.ttf') format('truetype');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-ExtraBoldItalic.ttf') format('truetype');
	font-weight: 800;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-HeavyItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-BlackItalic.ttf') format('truetype');
	font-weight: 900;
	font-style: italic;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic;
}

/* [02] TYPOGRAPY ENDS Here */

/* [03] RESET DEFAULT STYLE STARTS Here */

* {
	outline: none !important;
}

*::after,
*::before,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

*::-moz-selection {
	color: #fff;
	background: #0160e7;
}

*::-webkit-selection {
	color: #fff;
	background: #0160e7;
}

html {
	overflow-x: hidden;
}

body {
	font-size: 19px;
	line-height: 170%;
	font-weight: 300;
	background: #fff;
	color: #656565;
	font-family: var(--primary-font);
}

body p {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 0;
	color: #333333;
	font-family: var(--primary-font);
	margin: 0;
}

p,
ul,
ol {
	margin-bottom: 30px;
}

.btn.focus,
.btn:focus {
	box-shadow: none !important;
}

.form-control:focus {
	box-shadow: none !important;
}

img {
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

strong {
	font-weight: bold;
}

.no-list li,
.no-list ul,
.no-list ol,
footer li,
footer ul,
footer ol,
header li,
header ul,
header ol {
	list-style: inside none none;
}

.no-list ul,
.no-list ol,
footer ul,
footer ol,
header ul,
header ol {
	margin: 0;
	padding: 0;
}

div input,
div select,
div textarea,
div button {
	font-family: var(--primary-font);
}

a {
	color: #2b3a66;
	outline: none;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	text-decoration: none;
}

a:hover {
	color: #2b3a66;
	text-decoration: none;
}

a:focus {
	box-shadow: none;
}

a,
span,
div a:hover,
div a:active,
button {
	text-decoration: none;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
	text-decoration: none;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--primary-font);
	color: #000000;
	font-weight: bold;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
	color: #2b3a66;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover {
	color: #2b3a66;
}

body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child,
body p:last-child {
	margin-bottom: 0;
}

.btn,
.form-control,
button:focus {
	outline: none;
	box-shadow: none;
}

.dropdown-toggle::after {
	border: none;
	content: "\f107";
	vertical-align: unset;
	font-family: "Font Awesome 5 Pro";
}

.d-margin {
	margin-top: 62px;
}

html.show-menu {
	overflow: hidden;
}

html.show-menu body {
	overflow: hidden;
	height: 100%;
}

section {
	padding-bottom: 80px;
	padding-top: 90px;
}

.btn {
	border-radius: 25px;
	padding: 13px 50px;
	color: #fff;
	font-size: 18px;
	background: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	border: none;
	position: relative;
	overflow: hidden;
	font-weight: 500;
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.btn::before,
.btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 1;
	-webkit-transform: translate(-105%, 0);
	transform: translate(-105%, 0);
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgba(255, 255, 255, 1);
	background-color: rgba(255, 255, 255, 0.25);
}

.btn::after {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.btn:hover {
	border: none;
	color: #fff;
}

.btn:hover::before,
.btn:hover::after {
	opacity: 0;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.btn.orange,
.btn.orange:hover {
	background: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	color: #fff;
}

.btn.sky_blue,
.btn.sky_blue:hover {
	background: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	color: #fff;
}

.white_bg {
	border-radius: 30px;
	background-color: #f5f8fa;
}

.heading {
	text-align: center;
	margin-bottom: 50px;
}

.heading h2 {
	font-size: 60px;
	line-height: 65px;
	font-weight: 700;
	margin-bottom: 15px;
}

.heading p {
	margin-top: 20px;
}

.heading a.btn {
	margin-top: 25px;
}

/* [03] RESET DEFAULT STYLE ENDS Here */

/* Main Header Start Css */
.navbar {
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navbar.fixed {
	position: fixed;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
	-moz-box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
	box-shadow: 4px 4px 30px 0px rgba(42, 67, 113, 0.15);
	/*-webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);*/
}

.navbar,
.navbar-brand {
	padding: 10;
	margin: 0;
}

.navbar-brand img {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.navbar.fixed .navbar-brand img {
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	max-width: 260px;
}

.main-navigation {
	position: relative;
}

.main-navigation ul {
	font-size: 16px;
	font-weight: 700;
	list-style: none;
	margin: 0px 0px;
	padding: 0px 0px;
}

.main-navigation>ul {
	position: relative;
}

.main-navigation>ul>li {
	margin: 0px 45px;
	padding: 0px 0px;
	float: left;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.main-navigation ul>li>a {
	font-size: 19px;
	display: inline-block;
	padding: 15px 0 15px 0px;
	line-height: 35px;
	text-decoration: none;
	text-align: center;
	outline: none;
	color: #2b3a66;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.main-navigation ul>li>a:hover {
	color: #0160e7;
}

.main-navigation ul ul {
	float: none;
	margin: 0px 0px;
	padding: 0px 0px;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
}

.main-navigation ul li ul {
	width: 260px;
	white-space: nowrap;
	padding: 20px 0px;
	position: absolute;
	top: calc(100% + 10px);
	left: -40px;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-sizing: border-box;
}

.main-navigation ul>li:hover>ul {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.main-navigation ul li:hover>ul {
	visibility: visible;
	opacity: 1;
}

.main-navigation ul li li {
	display: block;
	position: relative;
	padding: 0px 30px;
}

.main-navigation ul li li a {
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	color: #1a1b1e !important;
	text-align: left;
	display: block;
	padding: 5px 0px 5px 0px;
	position: relative;
	text-decoration: none;
	outline: none;
	text-transform: none;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.main-navigation ul li li a:hover,
.main-navigation ul ul li.active>a,
.main-navigation ul ul li.current-menu-ancestor>a {
	color: #0160e7 !important;
	padding-left: 15px;
}

.navbar-nav span.arrow {
	display: none;
}

.main-navigation ul li li a:before {
	position: absolute;
	content: "";
	top: 50%;
	left: -15px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-color: #0160e7;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
	visibility: hidden;
	opacity: 0;
}

.main-navigation ul li li a:hover:before,
.main-navigation ul ul li.active>a:before,
.main-navigation ul ul li.current-menu-ancestor>a:before {
	left: 0px;
	visibility: visible;
	opacity: 1;
}

.main-navigation>ul>li:after,
.main-navigation>ul>li:before {
	position: absolute;
	height: 5px;
	width: 0%;
	bottom: -3px;
	left: 0;
	background: #0160e7;
	content: "";
	display: block;
	border-top-left-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-bottomleft: 5px;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.main-navigation>ul>li:hover:before,
.main-navigation>ul>li.active:before,
.main-navigation>ul>li.current-menu-ancestor:before {
	left: 50%;
	width: 50%;
}

.main-navigation>ul>li:before {
	border-top-left-radius: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 0;
	left: auto;
	right: 0;
}

.main-navigation>ul>li:hover:after,
.main-navigation>ul>li.active:after,
.main-navigation>ul>li.current-menu-ancestor:after {
	left: auto;
	right: 50%;
	width: 50%;
}

.main-navigation ul li li a:after {
	display: none;
}

.index-pro .tit{
	margin-top: 60px;
	margin-bottom: 20px;
	font-size: 30px;
    color: #0092d6;
    line-height: 30px;
	font-weight: 500;
	font-weight: bold;
}
.index-pro .tit1{
	font-size: 60px;
    line-height: 65px;
	font-weight: 500;
	margin-bottom: 40px;
	font-weight: bold;
}
.index-pro .desc{
	margin-top: 60px;
	color: #787878;
	line-height: 30px;
	font-size: 20px;
}
.index-pro .pro-list {
	padding-bottom: 50px;
	display: flex;
	overflow-x: scroll;
}

.index-pro .pro-list .pro-item {
	padding: 40px 20px;
	margin-right: 20px;
	flex-shrink: 0;
	width: 35%;
	display: flex;
	background: #f6f8fa;
	border-radius: 30px;
	justify-content: space-between;
}

.index-pro .pro-list .pro-item .info {
	width: 48%;
}

.index-pro .pro-list .pro-item .info .info-num {
	font-size: 45px;
	color: #bdbec0;
	font-weight: 600;
}

.index-pro .pro-list .pro-item .info .info-tit {
	margin: 50px 0 40px 0;
	font-size: 28px;
	height:64px;
	overflow:hidden;
	color: #000000;
	font-weight: bold;
}
.index-pro .pro-list .pro-item .info .info-desc{
    height:123px;
    overflow:hidden;
}
.index-pro .pro-list .pro-item .img {
	width: 50%;
}

/* 滚动条整体样式 */
.index-pro .pro-list::-webkit-scrollbar {
	height: 4px;
	background-color: #f5f5f5;
}

/* 滚动条轨道 */
.index-pro .pro-list::-webkit-scrollbar-track {
	border-radius: 4px;
	background-color: #f1f1f1;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

/* 滚动条滑块 */
.index-pro .pro-list::-webkit-scrollbar-thumb {
	width: 50px;
	border-radius: 4px;
	background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

/* 滑块悬停效果 */
.index-pro .pro-list::-webkit-scrollbar-thumb:hover {
	width: 50px;
	background: linear-gradient(45deg, #2575fc 0%, #6a11cb 100%);
}

.index-about {
	background: url("../images/about-bg.jpg") no-repeat;
	background-size: 100% 100%;
}

.index-about .tit {
	margin-bottom: 25px;
	font-size: 30px;
	color: #0092d6;
	font-weight: 600;
}

.index-about .about-num {
	width: 48%;

}

.index-about .about-num .num-item {
	padding: 25px;
	background: #fff;
	border-radius: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	transition: all .3s;

}

.index-about .about-num .num-item:nth-of-type(2n) {
	margin-top: 24px;
}

.index-about .about-num .num-item:hover {
	background: url("../images/about-hover-bg.png") center center no-repeat;
	background-size: 100% 100%;
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);

}

.index-about .about-num .num-item .about_img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;

}

.index-about .about-num .num-item .about_img img {

	width: 100%;

}

.index-about .about-num .num-item .about-info {
	margin-top: 45px;
}

.index-about .about-num .num-item .about-info .info-tit {
	font-size: 16px;
	color: #232323;
}

.index-about .about-num .num-item .about-info .info-desc {
	margin-top: 20px;
	font-weight: 600;
	font-size: 60px;
	margin-bottom: 60px;
	color: #000;
}

.index-about .about-num .num-item .about-info .info-desc span {
	color: #232323;
	font-size: 16px;
	font-weight: normal;
}

.index-about .about-num .num-item .about-info .info-num {
	font-size: 32px;
	font-weight: 600;
	color: rgba(98, 98, 98, .2);
}

.index-about .about-num .num-item:hover .about-info .info-tit,
.index-about .about-num .num-item:hover .about-info .info-desc,
.index-about .about-num .num-item:hover .about-info .info-num,
.index-about .about-num .num-item:hover .about-info .info-desc span {
	color: #fff;
}


.index-service{
	background: url("../images/serive-bg.jpg") no-repeat;
	background-size: 100% 100%;
	color: #fff;
	
}
.index-service .service-con{
	padding:60px 40px 60px 40px;
	display: flex;
}
.index-service .service-con .left{
	width: 50%;
	font-weight: 500;
}
.index-service .service-con .left .tit{
	margin-bottom: 20px;
	font-size: 30px;
	color: #fff600;
	line-height: 30px;
	font-weight: bold;
}
.index-service .service-con .left .tit1{
	font-size: 60px;
	line-height: 65px;
	font-weight: bold;
}
.index-service .service-con .right{
	padding-top: 250px;
	width: 70%;
}
.index-service .service-con .right .more{
	margin-top: 70px;
	height:55px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	line-height: 50px;
}

.index-news .tit{
	margin-bottom:30px;
	color: #0092d6;
	font-size: 30px;
	font-weight: 500;
	font-weight: bold;
}
.index-news .tit1{
	margin-bottom: 50px;
	font-size: 60px;
    line-height: 65px;
	font-weight: 500;
	font-weight: bold;
}
.index-news .news-item{
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 20px;
	overflow: hidden;
}
.index-news .news-item .news-info{
	padding: 20px;
}
.index-news .news-item .news-info .news-cate,
.index-news .news-item .news-info .news-date{
	color: #6e6e73;
	font-size: 16px;
}
.index-news .news-item .news-info .news-tit{
	margin: 15px 0;
	height: 60px;
	overflow: hidden;
}
.index-news .news-item .news-info .news-tit a{
	color: #000000;
	font-size: 24px;
	font-weight: bold;
}
.search-form {
	position: relative;
}

.search-form .search-field {
	width: 100%;
	padding: 0 48px 0 20px;
	height: 50px;
	line-height: 1;
	border: 1px solid #e6e6e6;
	background: #fff;
	border-radius: 23px;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
}

.search-form .search-submit {
	background: none;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	outline: none;
	font-size: 18px;
	color: #fff;
	background: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	padding: 0px 5px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Main Header End Css */


/*About us Section STARTS Here*/

.m-t60 {
	margin-top: 60px;
}

/*About us Section End Here*/

.contact_us {
	padding-top: 140px;
	background: url("../images/contact-bg.jpg") no-repeat;
	background-size: 100% 100%;
	height: 700px;
}

.contact_us .contact-from {
	width: 645px;
	height: 59px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	background: #fff;
	border-radius: 30px;
	margin: 0 auto;
	overflow: hidden;
}

.contact_us .contact-from form {
	display: flex;
}

.contact_us .contact-from input {
	padding: 0 30px;
	border: none;
	height: 59px;
	line-height: 59px;
	width: 463px;
	font-size: 17px
}

.contact_us .contact-from button {
	border: none;
	width: 182px;
	height: 60px;
	background-image: linear-gradient(90deg,
			#0091d6 0%,
			#08cff3 100%);
	border-radius: 30px;
	font-size: 20px;
	color: #fffefe;
}



/*Our Services Section STARTS Here*/
.service_bg {
	margin-bottom: 30px;
	padding: 30px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

.service_bg:hover {
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
}

.service_img {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	width: 100%;
}

.service_img img {
	width: 90%
}

.service_text {
	margin-top: 50px;
}

.service_text h5 {
	font-weight: 600;
	font-size: 23px;
	margin-bottom: 10px;
	height:45px;
	overflow:hidden;
}

.service_text .desc {
    height:100px;
	font-size: 16px;
	overflow:hidden;
	font-weight: 500;
    color: #737b80;
    line-height:1.6;
}

/*Our Services Section End Here*/



/*Client  Counter Section Start Here*/
.seomek-counter {
	font-weight: 700;
	color: #fff;
	text-align: center;

}

.seomek-counter span {
	font-size: 16px;
	line-height: 1;
}

.seomek-counter span.num {
	font-size: 75px
}

.seomek-counter h6 {
	font-size: 18px;
	/*font-weight: 600;*/
	margin-top: 15px;
	padding-left: 20px;
	display: inline-block;
	position: relative;
	color: #fff;
}



/*Client  Counter Section End Here*/



/*Home 4 Service Section Start Here*/
.service-box {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-bottom: 30px;
	cursor: pointer;
	background: #fff;
	position: relative;
	overflow: hidden;
	padding: 40px 30px;
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.service-box:hover {
	transform: translateY(-8px);
}

.service_icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	background: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	color: #fff;
	font-size: 28px;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
}

.service-content-box {
	margin-left: 30px;
	flex: 1;
}

.service-content-box h5 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}

.service-content-box p {
	font-size: 16px;
}

.service-box .big-number {
	position: absolute;
	right: 20px;
	bottom: -10px;
	font-size: 62px;
	font-weight: 800;
	line-height: 1;
	z-index: 0;
	opacity: 0.08;
}






/* Home Page 4 End Css */
/* Common Page-Header Section STARTS Here */
.page-header {
	background-image: url(../images/category-banner.jpg);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	text-align: center;
}

.page-header .page-title {
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 15px;
}

.page-header .breadcrumbs {
	margin-bottom: 0;
	margin-top: 30px;
	text-transform: capitalize;
	padding: 0;
}

.page-header .breadcrumbs li {
	display: inline-block;
	font-weight: 800;
	color: #0160e7;
}

.page-header .breadcrumbs li a {
	color: #2b3a66;
	font-size: 16px;
	font-weight: 600;
}

.page-header .breadcrumbs li:before {
	content: "\f054";
	font-family: "font Awesome 5 pro";
	font-size: 11px;
	color: #a5b7d2;
	margin: 0 8px;
}

.page-header .breadcrumbs li:first-child:before {
	display: none;
}

.page-header .breadcrumbs li a:hover {
	color: #fe4c1c;
}

/* App Development page End Here */






/*Error-404 page Start Here*/
.error-404 h1 {
	font-size: 250px;
	line-height: 1;
	position: relative;
	display: inline-block;
	margin-bottom: 40px;
	color: #0039e4;
	font-weight: 700;
	background-image: -moz-linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	background-image: -webkit-linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	background-image: linear-gradient(145deg, #0160e7 0%, #a644b5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 8px 8px 13px rgba(2, 156, 236, 0.3);
	-moz-text-shadow: 8px 8px 13px rgba(2, 156, 236, 0.3);
}

.error-404 h1 img {
	position: absolute;
	top: 17px;
	right: -200px;
	z-index: -1;
}

.error-404 h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 30px;
}

.error-404 .content-404 {
	max-width: 480px;
	margin: auto;
}

.error-404 .content-404 p {
	margin-bottom: 30px;
}

.error-404 .content-404 a.btn {
	margin-top: 30px;
}

/*Error-404 page End Here*/



.news-list {
	padding-top: 60px;
}

.news-list .news-item {
	display: flex;
	margin-bottom: 50px;

}

.news-list .news-item .img {
	flex-shrink: 0;
	width: 449px;
	height: 320px;
	background-color: #3a2121;
	overflow: hidden;
	margin-left: 34px;
}

.news-list .news-item .info {
	width: 100%;
	border-bottom: 1px solid #e4e4e4;
}

.news-list .news-item .item-tit {
	margin-top: 50px;
	margin-bottom: 40px;
	font-size: 22px;
	font-weight: bold;
	color: #000;
}

.news-list .news-item .item-desc {
	font-size: 15px;
	color: #acacac;
	line-height: 30px;
}

.news-list .news-item .item-date {
	margin: 10px 0 15px 0;
	font-size: 15px;
	color: #929292;
}

.news-list .news-item .item-view {
	margin-top: 15px;
	display: none;
}

.news-list .news-item .item-view a {
	display: block;
	width: 147px;
	height: 40px;
	background-color: #3aa6df;
	text-align: center;
	color: #fff;
	line-height: 40px
}

.news-list .news-item:hover .item-view {
	display: block
}



.about-intro .about-text {

}

.about-intro .about-text span {
	color: #fe4c1c;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .5px;
	margin-bottom: 15px;
	display: block;
}

.about-intro .about-text h5 {
	font-size: 60px;
	font-weight: 700;
	color: #1a1b1e;
	line-height: 1;
	margin-bottom: 25px;
}

.about-intro .about-text h6 {
	position: relative;
	font-size: 30px;
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: #000000;
}

.about-intro .about-text h6::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 75px;
	height: 3px;
	background-color: #0093d9;
}

.about-intro .about-desc {
	font-size: 18px;
	color: #666666;
}

.about-cultrue .cultrue-item {
	position: relative;
}

.about-cultrue .cultrue-item .con {
	padding: 55px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%
}

.about-cultrue .cultrue-item .con .tit {
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 20px;
}

.about-cultrue .cultrue-item .con .desc {
	font-size: 25px;
}

.about-pro {
	padding: 130px 0;
	background: url("../images/about-pro-bg.jpg") no-repeat;
	background-size: 100% 100%;
}

.envir-list {
	display: flex;
	overflow-x: scroll;
}

.envir-list .img {
	width: 25%;
	margin-right: 20px;
	flex-shrink: 0;
}

.envir-list .img img {
	width: 100%
}


.article-detail {}

.article-detail .detail-date {
	padding: 20px 0 14px;
	font-size: 15px;
	color: #858585;
	border-bottom: 1px solid #d6d6d6;
	margin-bottom: 14px;
}

.side-right .side-contact .tit,
.side-right .rec-article .tit {
	padding: 0 20px;
	height: 47px;
	background-color: #f2f3f7;
	border-radius: 5px;
	line-height: 47px;
	color: #000000;
	font-weight: 500;
	font-size: 20px;
}

.side-right .side-contact .item {
	display: flex
}

.side-right .side-contact .item .info .info-tit {
	font-size: 16px;
	color: #5c5c5c;
}

.side-right .side-contact .item .info .info-desc {
	font-size: 18px;
	color: #5c5c5c;
}

.side-right .side-contact .item .info .info-desc.telphone {
	font-size: 27px;
	color: #c80515;
}

.side-right .rec-article {
	margin-top: 30px;
}

.side-right .rec-article .list .item {
	margin-top: 20px;
	padding: 12px;
	display: flex;
	background-color: #fafafa;
	border-radius: 5px;
	align-items: center;
	color: #000000;
	font-size: 18px;
}

.side-right .rec-article .list .item .img {
	margin-right: 15px;
	flex-shrink: 0;
	width: 110px;
	height: 78px;
	background-color: #3a2121;
}


.pro-intro {
	display: flex;
}

.pro-intro .pro-img {
	flex-shrink: 0;
	width: 450px;
	margin-right:50px;
}
.pro-intro .pro-img img{
    width:100%;
}
.pro-intro .pro-info .info-desc{
    padding-bottom:40px;
    margin-bottom:40px;
    border-bottom:1px solid #d6d6d6;
}
.pro-social {
	margin-top: 20px;
}

.pro-social a {
	font-size: 17px;
	padding: .6em;
	border-radius: 50%;
	margin-right: 10px;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	line-height: 1;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.pro-social a:hover {
	transform: translateY(-8px);
}

.pro-social i {
	width: 1em;
	height: 1em;
	position: relative;
	display: block;
	color: #fff;
}

.pro-social .facebook {
	color: #fff;
	background-color: #3b5998;
}

.pro-social .twitter {
	background-color: #15b7ec;
}

.pro-social .pinterest {
	background-color: #fe4c1c;
}

.pro-social .instagram {
	background-color: #ff6828;
}
.detail-con{
    margin-top:30px;
}
.detail-con .title{
    border-bottom:2px solid #dcdcdc;
    margin-bottom:30px;
}
.detail-con .title span{
    position:relative;
    padding:15px 0;
    display:inline-block;
    color: #000000;
    font-weight:500;
}
.detail-con .title span::after{
    left:0;
    bottom:-2px;
    content:'';
    position:absolute;
    width:100%;
    height:2px;
    background:#0092d6;
}
.contact-us {}

.contact-us h5 {
	border-bottom: 1px solid #e3e3e3;
}

.contact-us .hotline {
	font-size: 20px;
	color: #5e5e5e;
}

.contact-us .hotline span {
	font-size: 31px;
	color: #c80515;
	font-weight: bold;
}

.contact-us .list .item {
	display: flex;
	font-size: 20px;
	color: #5c5c5c;
}

.contact-us .list .item .icon {
	margin-right: 15px;
	width: 16px;
	flex-shrink: 0;
}

.contact-us .list .item .info .info-tit {}

.contact-us .map {
	width: 100%;
	height: 394px;
	background-color: #3a2121;
}

.contact-from {
	background: url("../images/contact-form-bg.jpg");
}

.contact-from h5 {
	border-bottom: 1px solid #ffffff;
	margin-bottom: 30px;
	font-size: 40px;
}

.contact-from form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-content .form-item {
	width: 48%;
	flex-shrink: 0;
}

.form-content .form-item input {
	padding: 0 15px;
	width: 100%;
	height: 69px;

}

.form-content .form-item button {
	width: 269px;
	height: 60px;
	background-color: #37a5de;
	border: none;
	font-size: 22px;
}

.partner-list {
	margin-top: 60px;
	margin-bottom: 30px;
}

.partner-list .item {
	margin-bottom: 40px;
	display: block;
	height: 77px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border-radius: 8px;
	line-height: 77px;
	text-align: center;
}

.current-position {
	height: 60px;
	line-height: 60px;
	background-color: #f5f6f9;
}


/*Footer 1 Section Start Here*/
footer {
	background-color: #f5f8fa;
}

.footer_before {
	padding: 40px 0;
	border-bottom: 1px solid #cdd2dc;
}
.footer_before .ft-menu{
	display: flex;
	
}
.footer_before .ft-menu .menu-item{
	width: 33%;
}
.footer_before .ft-menu .menu-item.menu-pro{
	width: 33%;
}
.footer_before .ft-menu .menu-item.menu-pro .footer_url{
	/*display: flex;*/
	flex-wrap: wrap;
}
.footer_before .ft-menu .menu-item.menu-pro .footer_url li{
	width: 100%;
}
.footer_after {
	padding: 20px 0;
}

.footer_after p {
	font-size: 16px;
	color: #2b3a66;
}

.footer_after a {
	color: #0160e7;
	font-weight: 600;
}

.footer_title.footer-logo {
	font-size: 35px;
	font-weight: 800;
	display: inline-block;
}

.footer_title.footer-logo:before {
	display: none;
}

.footer_title {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
	padding-bottom: 15px;
	position: relative;
}


.footer_url {
	margin: 0;
	padding: 0;
}

.footer_url li {
	display: block;
	margin-bottom:5px;
}

.footer_url li i {
	padding-right: 15px;
	font-size: 20px;
	color: #2b3a66;
	opacity: 01 !important;
}

.footer_url li a {
	font-size: 18px;
	color: #5c5c5c;
	font-weight: 0;
}

.footer_url li:hover a {
	color: #0160e7;
	padding-left: 5px;
}
.ft-contact .item {
	margin-top: 10px;
	display: flex;
	font-size: 18px;
	color: #5e5e5e;
}

.ft-contact .item .icon {
	margin-right: 15px;
	width: 16px;
	flex-shrink: 0;
}

.ft-contact .item .info .info-tit {
	margin-bottom: 0px;
}
.ft-contact .item .info .info-desc.info-tel{
	font-size: 27px;
	color: #c80515;
	font-weight: bold;
}

/*Footer Section End Here=*/

/* Spinner Loader Css*/
.loader {
	position: fixed;
	z-index: 9999 !important;
	background: #fff;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#loading-bar-spinner.spinner {
	left: 50%;
	margin-left: -20px;
	top: 50%;
	margin-top: -20px;
	position: absolute;
	z-index: 19 !important;
	animation: loading-bar-spinner 400ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
	width: 40px;
	height: 40px;
	border: solid 4px transparent;
	border-top-color: #0160e7;
	border-left-color: #2b3a66;
	border-right-color: #00aaff;
	border-bottom-color: #fe4c1c;
	border-radius: 50%;
}

/* Spinner Loader Css*/

@keyframes loading-bar-spinner {
	0% {
		transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* Back To Top*/
#back-to-top {
	cursor: pointer;
	background: #fff;
	color: #0160e7;
	font-size: 22px;
	width: 46px;
	height: 46px;
	line-height: 46px;
	position: fixed;
	right: 40px;
	bottom: 40px;
	padding: 2px 0 0;
	text-align: center;
	text-decoration: none;
	z-index: 9;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.09);
}

#back-to-top:hover {
	bottom: 45px;
}