/****************************************TYPOGRAPHY ***************************************************/
body{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #999999;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Montserrat', sans-serif;
	color: #03a9f4;
	font-weight: 600;
	text-transform: uppercase;
}
h1{
	font-size: 3.998em;
}
h2{
	font-size: 2.827em;
}
h3{
	font-size: 1.999em;
}
h4{
	font-size: 1.414em;
}
p{
	font-size: 1em;
	color: #999999;

}

.btn{
	font-family: 'Montserrat', sans-serif;
	font-size: 0.707em;
	text-transform: uppercase;
	font-weight: 600;
	padding:12px 40px;
	box-shadow: 0px 4px 10px 0px rgba(91, 91, 91, 0.45);
	line-height: 1;
	transition: all .5s ease;
	letter-spacing: 1px;
}

.btn-link{
	padding:0;
	box-shadow: none;
}
.icon-on-button{
	margin-left: 8px;
}
.icon-on-button i{
	font-size: 18px;
	vertical-align: middle;
}
.navbar{
	background-color: transparent !important;
	border-color: transparent !important;
	border:0px;
	padding-top: 30px;
	transition: all .5s ease;
}
.navbar-brand{
	padding: 0;
}
.navbar-brand img{
	max-height: 50px;
}
.navbar-default .navbar-nav>li>a {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-transform: uppercase;
}
.navbar-default .navbar-nav>li>a, .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent;
}
.navbar-default .navbar-nav>li>a:hover{
	color: #f5811e;
}
.navbar-nav>li>a.btn-navbar:hover{
	color: #fff;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: transparent;
}
.navbar-nav>li>a.btn-navbar{
	padding-left: 40px;
	padding-right: 40px;
}
.navbar-divider{
	width:100%;
	height: 1px;
	border:0px;
	background-color: rgba(255,255,255,0.1);
	transition: all .5s ease;
}
.colored-nav {
    padding-top: 15px;
    padding-bottom: 15px;
}
.colored-nav .navbar-divider{
	display: none;
}
.cta{
	color: #fff;
}
.cta-btn-group{
	margin-top: 15px;
}
.cta-btn-group .btn{
	margin: 10px;
}
.btn-orange.focus, .btn-orange:focus,.btn-orange.active, .btn-orange:active {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
.btn-white.focus, .btn-white:focus,.btn-white.active, .btn-white:active {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
.btn-violat.focus, .btn-violat:focus,.btn-violat.active, .btn-violat:active {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
/*******************************************HEADER***************************************************/
header{
	background-color: #b7b7b7;
	position: relative;
	display: block;
}
/*******************************************SLIDER HOME***************************************************/
.sliding-card-with-bottom-image .image-container img{
	position: relative;
    margin: 0 auto;
    padding-top: 90px;
}
.image-right-slide-bg{
	background-repeat: no-repeat !important;
    background-position-x: 100%!important;
    background-size: auto 100%!important;
    padding: 18rem 0;
}
.slider-para{
	font-size: 1.414em;
	font-family: 'Montserrat', sans-serif;
}
/*******************************************SLIDER***************************************************/
.slider-content-wraper{
	padding-top: 150px;
	padding-bottom: 150px;
	text-align: center;
	color: #fff;
}

/*******************************************FEATURE**************************************************/
/*.feature{
	position: relative;
	overflow:hidden;
}
.feature-right-image{
	position: absolute;
	width: 100%;
	height: 100%;
}*/
.single-feature {
	display: flex;
}
.single-feature img{
	width: 40%;
	height: 40%;
}
.desc{
	padding: 1rem;
}
.maincons .p{
	padding: 1rem 2rem;
}


.feature-wiget{
	padding-top: 15px;
	padding-bottom: 15px;
}
.feature-wiget h4, .feature-wiget i{
	color: #03a9f4;
}
.feature-wiget i{
	font-size: 36px;
}
.feature-wiget h4{
	text-transform: uppercase;
}
.bottom-line{
	position: relative;
	margin-bottom: 20px;
}

.bottom-line:after{
	content: '';
	position: absolute;
	top: 100%;
	width: 35px;
	height: 2px;
	background-color: #0e153a;
	left: 0;
	margin-top: 7px;
	margin-bottom: 5px;
}
/*******************************************CARD*****************************************************/
.card{
	box-shadow: 0px 4px 15px 0px rgba(191, 195, 198, 0.29);
	margin-bottom: 3rem;
}
.card img {
	filter: brightness(0.7) grayscale(20%);
  }
.card-title{
	color: #5a5a5a;
	text-transform: initial;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;  /* 限制显示5行 */
	overflow: hidden;       /* 隐藏超出部分 */
	text-overflow: ellipsis; /* 超出显示省略号 */
	line-height: 1.4;       /* 可选：设置行高以获得更好的视觉效果 */
	max-height: calc(1.4em * 1); /* 可选：基于行高计算最大高度 */
}
.card-block{
	padding:4rem;
}
.card-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;  /* 限制显示5行 */
	overflow: hidden;       /* 隐藏超出部分 */
	text-overflow: ellipsis; /* 超出显示省略号 */
	line-height: 1.4;       /* 可选：设置行高以获得更好的视觉效果 */
	max-height: calc(1.4em * 3); /* 可选：基于行高计算最大高度 */
  }

/* 基础样式 */
.SearchDiv {
	position: relative;
	margin: 20px;
	width: 600px;
	transition: all 0.5s ease;
  }
  
  /* 搜索表单样式 */
  .SearchDiv .search {
	display: flex;
	position: relative;
  }
  
  /* 输入框样式 - 炫酷效果 */
  .SearchDiv input[type="text"] {
	width: 100%;
	padding: 15px 20px;
	font-size: 18px;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 50px;
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	outline: none;
  }
  
  /* 输入框聚焦效果 */
  .SearchDiv input[type="text"]:focus {
	box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.9);
	transform: scale(1.02);
  }
  
  /* 按钮样式 */
  .SearchDiv button {
	position: absolute;
	right: 5px;
	top: 5px;
	bottom: 5px;
	padding: 0 25px;
	background: linear-gradient(45deg, #00ffcc, #0099ff);
	color: white;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
	transition: all 0.3s ease;
  }
  
  /* 按钮悬停效果 */
  .SearchDiv button:hover {
	background: linear-gradient(45deg, #0099ff, #00ffcc);
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
	transform: translateY(-2px);
  }
  
  /* 按钮点击效果 */
  .SearchDiv button:active {
	transform: translateY(0);
  }
  
  .pdf{
	background: #009688;
	margin: 1rem 0 3rem 0;
	border: #009688 2px solid;
	display: flex;
	align-items: center;
  }
  .pdf img{
	width: 50%;
  }
  .pdf a{
	display: block;
	width: 40%;
	padding: 3rem;
	color: #fff;
	font-size: 2rem;
	line-height: 1.3;
  }
  .pdf a:hover{
	color: #00ffcc!important;
  }
  
  .privacy-policy h3, .privacy-policy p{
	clear: both;
	margin: .8rem 0;
  }
  .ilistss{
	list-style: none;
  }
  .faqs h2{
	font-size: 1.4em;
  }
  
  /* 移动端隐藏 */
  @media (max-width: 1024px) {
	.SearchDiv {
		display: none;
	}
  }
  
  /* 动画效果 - 可选 */
  @keyframes pulse {
	0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
	50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8); }
	100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); }
  }
  
  /* 添加动画到输入框 */
  .SearchDiv:hover input[type="text"] {
	animation: pulse 2s infinite;
  }
  
  .ytb{
	width: 100%;
	min-height: 500px;
  }
  
  @media (max-width: 767px) {
	.ytb{
	  width: 100%;
	  min-height: 300px;
	}
	.desc h2{
		font-size: 1.4em;
	}
  }

/*******************************************TESTIMONIAL**********************************************/
.heading-wraper{
	margin-bottom: 120px;
}
.heading-wraper h3{
	color: #fff;
	text-transform: uppercase;
}
.heading-wraper .heading-devider{
	margin:0 auto;
	width: 100px;
	height: 2px;
	border:0px;
}
.testimonial-container{
	background-color: #fff;
	box-shadow: 0px 8px 21px 0px rgba(26, 31, 66, 0.29);
}
.testimonial-content{
	padding: 2rem 8rem;
    position: relative;
    top: -45px;
    color: #5a5a5a;
    font-weight: 600;
}
.testimonial-speech{
	font-size: 16px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	color: #5a5a5a;
}
.testimonial-container .client-details{
	position: relative;
	top: -45px;
}
.testimonial-container .client-details img{
	border-radius: 50%;
	margin-bottom: 25px;
}
.client-designation{
	margin-bottom: 0px;
	font-size: 10px;
	text-transform: uppercase;
	color: #999999;
	font-family: 'Montserrat', sans-serif;
}
.client-name{
	margin-bottom: 0px;
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	text-transform: capitalize;
	font-weight: 400;
}
ul.social-list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.social-list li{
	margin: 0;
	padding: 0;
	display: inline-block;
}
ul.social-list li a{
	display: block;
    font-size: 2rem;
    padding: 0.2rem;
    color: #999999;
}
ul.social-list li a:hover, ul.social-list li a:focus{
	color: #0e153a;
}

.owl-wrapper-outer{
	padding-top: 60px;
	margin-top: -60px;
}
/*******************************************CUSTOMER SUPPORT*****************************************/
.customer-support-content{
	padding-left: 15px;
	padding-right: 15px;
}
/*******************************************SUBSCRIPTION*********************************************/
.sunscription-wraper-outer{
	box-shadow: 0px 8px 21px 0px rgba(191, 195, 198, 0.29);
}
.subscription-wraper h3{
	text-transform: uppercase;
	color: #03a9f4;
}
.subscription-wraper p{
	color: #5a5a5a;
}
.subscription-form .form-group{
	width: 65%;
	margin: 0 auto;
}
.subscription-form .form-control{
	border-radius: 50px;
	margin-bottom: 25px;
	margin-top: 25px;
	height: 40px;
}
.newsletter{
	background-color: #f1f6fa
}

/*******************************************FOOTER***************************************************/
.footer-list-wiget h4{
	color: #03a9f4;
	text-transform: uppercase;
}
.footer-list-wiget .list-group-item{
	border: 0px;
	background-color: transparent!important;
	padding-left: 0;
	font-family: 'Open Sans', sans-serif;
	color: #999999;
}
.footer-devider{
	background-color: rgb(235, 235, 235);
}
.footer-end-line{
	height: 25px;
	background-color: #03A9F4;
	width: 100%;
	margin: 0;
	padding: 0;

}
.logo-colored,.logo-white{
	display: inline-block;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.logo-colored img,.logo-white img{
	display: inline-block;
    text-transform: uppercase;
    max-height: 50px;
    margin-right: 10px;

}
.logo-white{
	color: #fff;
}
.logo-colored{
	color: #ff7a00;
}
.footer-left-content{
	margin-bottom: 50px;
}
.footer-left-content .content{
	margin-top: 15px;
}
.footer-list-wiget .list-group{
	margin-top: 26px;
}
.padding-top-120{
	padding-top: 120px;
}
/*******************************************ELEMENT STYLES*******************************************/
.btn-orange,.btn-violat{
	color: #fff;
}
.btn-violat,.gradient-violat {
  background-image: -moz-linear-gradient( 35deg, #1c7be7 0%, #2196F3 35%, #2196F3 100%);
  background-image: -webkit-linear-gradient( 35deg, #1c7be7 0%, #2196F3 35%, #2196F3 100%);
  background-image: -ms-linear-gradient( 125deg, #1c7be7 0%, #2196F3 35%, #2196F3 100%);
  background-image: url("../images/headerbg.jpg");
  background-size: cover;
}
.btn-orange,.gradient-orange {
  background-image: -webkit-linear-gradient(25deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
  background-image: -o-linear-gradient(25deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
  background-image: linear-gradient(125deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
  box-shadow: 0px 8px 27px 0px rgba(116, 44, 69, 0.21);
}

.btn-white,.gradient-white{
	background-image:
    linear-gradient(125deg, #ffffff, #e1e1e1);
    color: #6b6a8b;
}
.border-none{
	border: 0px !important;
}
.btn-rounded-corner{
	border-radius: 50px;
}
.btn-video{
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	cursor: pointer;
    -webkit-user-select: none;
}
.text-center{
	text-align: center;
}
.img-responsive{
	max-width:100%;
}
.text-violat{
	color: #6b6a8b;
}
.padding-top-bottom-120{
	padding-top: 120px;
	padding-bottom: 120px;
}
.padding-top-bottom-90{
	padding-top: 90px;
	padding-bottom: 90px;
}
.bg-image{
	background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center!important;
}
.margin-bottom-30{
	margin-bottom: 30px;
}
.margin-top-30{
	margin-top: 3  0px;
}
.overflow-x-hidden{
	overflow-x: hidden;
}
.text-white{
	color: #fff;
}
.bg-fit{
	background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}
.bg-image-fit-50{
	background-repeat: no-repeat !important;
    background-position-x: 100%!important;
    background-size: 50% 100% !important;
}
.btn-navbar{
	line-height: 1;
}
.btn-link i{
	font-size: 18px;
    vertical-align: middle;
}
.btn-video{
	text-transform: uppercase;
	transition: all .5s ease;
}
.btn-video:hover{
	text-decoration: none;
	color: #f5811e;
}
.btn-video:hover .icon-rounded{
  border-color: #f5811e;
  box-shadow: 0px 8px 27px 0px rgba(116, 44, 69, 0.21);
  color: #f5811e;
}
.btn.gradient-orange:hover{
	background-color: #f5811e!important;
	background-image: none!important;
}
.btn-orange.active, .btn-orange:active{
	color: #fff;
	background-image: -webkit-linear-gradient(35deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: -o-linear-gradient(35deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: linear-gradient(125deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    border:0px;
    border-color: transparent;
}
.btn-violat.active, .btn-violat:active{
	color: #fff;
	background-image: -moz-linear-gradient( 135deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: -webkit-linear-gradient( 135deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: -ms-linear-gradient( 135deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    border:0px;
    border-color: transparent;
}
.btn-violat:hover,.btn-white:hover{
	background-image: -webkit-linear-gradient(35deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: -o-linear-gradient(35deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    background-image: linear-gradient(125deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
    border:0px;
    border-color: transparent;
}

.icon-rounded{
	width: 49px;
    height: 49px;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    position: relative;
    margin-right: 5px;
    transition: all .5s ease;
}
.icon-rounded i{
	font-size: 3rem;
	line-height: 30px;
	height:30px;
	width: 30px;
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	margin-left: 12px;
	transition: all .5s ease;

}
/*******************************************BACKGROUND-STYLES****************************************/
.bg-transparent{
	background-color: transparent;
}
.max-width-100{
	max-width: 100% !important;
}
.italic{
	font-style: italic;
}
.blog-category{
	text-transform: uppercase;
	color: #03a9f4 !important;
	font-weight: 600;
}
.margin-bottom-80{
	margin-bottom: 80px;
}
.margin-bottom-25{
	margin-bottom:25px;
}
.padding-top-90{
	padding-top: 90px;
}
.margin-top-bottom-30{
	margin-top: 30px;
	margin-bottom: 30px;
}
.bordered-ios{
	background-color: transparent;
	border-color: #fff;
	border:1px solid;
}

/*******************************************SCROLL TOP ICON*****************************************/
.display-none{
	display: none;
	transition: all .5s ease;
}
.scroll-top-div {
    position: fixed;
    width: 45px;
    height: 45px;
    top: calc(100vh - 70px);
    left: calc(100vw - 62px);
    cursor: pointer;
    transition: all .5s ease;
}
.scroll-top-icon-container{
	position: relative;
    display: table;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(125deg, #2196F3 0%, #03A9F4 32%, #2196F3 100%);
    background-image: -o-linear-gradient(35deg, #2196F3 0%, #03A9F4 32%, #2196F3 100%);
    background-image: linear-gradient(125deg, #2196F3 0%, #03A9F4 32%, #2196F3 100%);
    color: #fff;
}
.scroll-top-icon-container i{
	display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 28px;
}
/*******************************************OVERLAY*************************************************/
@media screen and (max-width: 768px) {
    .sm-padding-top-bottom-50-75 {
        padding-top: 50px;
        padding-bottom: 75px;
    }
    .testimonial-content{
    	padding:0.5rem 1rem;
    }
    .sm-display-none{
		display: none;
	}
	.image-right-slide-wraper .image-right-slide-content{
		text-align: center;
	}
	.image-right-slide-bg{
		background-image: none!important;
	}
	.image-right-slide-bg{
		padding:4rem 15px;
	}
	.home-slider h2{
		font-size: 1.999em;
	}
	.home-slider .slider-para{
		font-size: 1em;
	}
	.padding-top-bottom-120{
		padding-top: 75px;
		padding-bottom: 75px;
	}
	.padding-top-bottom-90{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.padding-top-120{
		padding-top: 75px;
	}
	.padding-top-90{
		padding-top: 60px;
	}
	.card-block{
		padding: 2rem;
	}
	.navbar{
	    background-image: -webkit-linear-gradient(305deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
	    background-image: -o-linear-gradient(305deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
	    background-image: linear-gradient(35deg, #FFC107 0%, #FF9800 32%, #FFC107 100%);
	}
	.navbar-divider{
		display: none;
	}
	.navbar-toggle{
		margin-top: 2px;
	}
	.logo-colored img, .logo-white img{
		max-height: 40px;
	}
}
@media screen and (min-width: 769px){
	.image-right-slide-wraper{
		display: table;
		width: 100%;
	}
	.image-right-slide-wraper .image-right-slide-content{
		display: table-cell;
	    vertical-align: middle;
	    float: none;
	}
	.image-right-slide-wraper .image-container{
		float: none;
    	display: table-cell;
	}
}


/***************************************OWL CAROUSEL ******************************************************************/

.owl-theme .owl-controls .owl-page span{
	background: #fff;
}
.owl-theme .owl-controls .owl-buttons div{
	font-size: 45px;
	background-color: transparent;
	color: #fff;
}
.home-slider .owl-controls{
	position: absolute;
    width: 100%;
    top: calc(50% - 35px);
}
.home-slider .owl-buttons{
	position: relative;
}
.home-slider .owl-prev{
	position: absolute;
	left: 0;
}
.home-slider .owl-next{
	position: absolute;
	right: 0;
}