@charset "utf-8";
/* CSS Document */

@font-face {
     font-family:PTS55F;
	 src:url(PTS55F.ttf);
}
@font-face {
     font-family:PTS75F;
	 src:url(PTS75F.ttf);
}
@font-face {
     font-family:Newsgotb;
	 src:url(Newsgotb.ttf);
}

*{
	margin:0;
	padding:0;
}
ol, ul 
{
	list-style: none;
}
body {
    font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	padding:0;
	margin:0;
}
.clear{
	clear:both;
}
.wrapper{
	width:100%;
}
a{
	text-decoration:none;
	border:none;
}
img{
	max-width:100%;
	height:auto;
}
.container{
	width:100%;
	max-width:1170px;
	margin:0 auto;
}
#header_section{
	width:100%;
	float:left;
}
.banner{
	width:100%;
	float:left;
	background-image:url(images/banner_img.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#f25d1c;
	padding-bottom: 300px;
	background-position:left bottom;
}
.logo_main{
	width:100%;
	float:left;
	padding-top:33px;
	margin-bottom: 157px;
}
.logo{
	width:auto;
	float:left;
}
.top-navigation{
	width:auto;
	float:left;
	margin-left: 90px;
	margin-top: 10px;
}
.contact_us{
	width: auto;
	float: right;
	font-family: PTS75F;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	border: 1px dashed #fff;
	border-radius: 100px;
	padding: 10px 30px 10px 55px;
	background-image: url(images/phone_icon.png);
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 6px;
}
.contact_us:hover{
	background:#fff;
	color:#f8743a;
	background-image:url(images/contact_icon.jpg);
	background-repeat:no-repeat;
	background-position: left 11px center;
}
.banner_txt1{
	width:100%;
	float:left;
}
.banner_txt2{
	width:100%;
	font-family:Newsgotb;
	font-size:60px;
	color:#fff;
}
.banner_txt3{
	width:100%;
	float:left;
}
.banner_txt4{
	width:85%;
	 font-family:PTS55F;
	font-size:18px;
	color:#fff;
	margin-top:30px;
	line-height:27px;
}
.get_started{
	width:100%;
	float:left;
	margin-top: 68px;
}
.get_started_btn1{
	width:auto;
	float:left;	
	font-family:PTS75F;
	font-size:15px;
	color:#fff;
	text-transform:uppercase;
	border: 2px solid #fff;
	border-radius: 100px;
}
.get_started_btntxt{
	width:auto;
	float:left;	
	margin-top: 12px;
	padding: 6px 17px 12px 19px;
}
.get_started_btnimg{
	float:left;	
	background: #fff;
	border-radius: 100%;
	width:44px;
	height:44px;
	margin-top: 4px;
	margin-bottom:4px;
	margin-right: 4px
}

.get_started_btnimg3{
	float:left;	
	background: #fff;
	border-radius: 100%;
	width:44px;
	height:44px;
	margin-top: 4px;
	margin-bottom:4px;
	margin-right: 4px
}
.get_started_btn1:hover{
	background:#fff;
	color:#f06021;
}
.get_started_btnimg3{
	display:none;
}
.get_started_btn1:hover .get_started_btnimg3{
	display:block;	
}
.get_started_btn1:hover .get_started_btnimg{
	display:none;	
}
.get_started_bt2{
	margin-left:20px;
}
/*-----------menu unerline effect--------*/

.line_hover::after {
	content: '';
    display: block;
	margin: auto;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .4s;

	
}
.line_hover:hover::after {
	 width: 100%;
}


.animatable {
  
  /* initially hide animatable objects */
  visibility: hidden;
  
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}

/* show objects being animated */
.animated {
  visibility: visible;
  
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;

  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	60% {
		-webkit-transform: translateX(20px);
	}

	80% {
		-webkit-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		-moz-transform: translateX(20px);
	}

	80% {
		-moz-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateX(20px);
	}

	80% {
		-o-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		transform: translateX(20px);
	}

	80% {
		transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	60% {
		-webkit-transform: translateX(-20px);
	}

	80% {
		-webkit-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	60% {
		-moz-transform: translateX(-20px);
	}

	80% {
		-moz-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}

	60% {
		-o-transform: translateX(-20px);
	}

	80% {
		-o-transform: translateX(5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		transform: translateX(-20px);
	}

	80% {
		transform: translateX(5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	50% {
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		opacity: 1;
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes moveUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(40px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes moveUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes moveUp {
	0% {
		opacity: 1;
		-o-transform: translateY(40px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@-o-keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}
@keyframes fadeBgColor {
	0%{
		background:none;
	}
  70%{
		background:none;
	}
	100%{
		background:#464646;
	}
}

.animated.animationDelay{
	animation-delay:.4s;
	-webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
	animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}

/*SWING*/
.swing:hover
{
        -webkit-animation: swing 1s ease;
        animation: swing 1s ease;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
}
@-webkit-keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
       transform: translateX(-5px);
    } 
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes swing
{
    15%
    {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%
    {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50%
    {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%
    {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%
    {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


/*-----------Bounce In-----------*/

.button4 {
	position: relative;
	transition: all 500ms ease; 
	overflow:hidden;
}
@keyframes bounce {
	0%, 20%, 60%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
.button4:hover {
	animation: bounce 1s;
}
.banner_txt{
	width:100%;
	float:left;	
}
.banner_txt12{
	width: auto;
	float: right;
	position: relative;
	z-index: 500;
	margin-top: -666px;
}
.banner_txt11{
	width:52%;
	float:left;
}
#content_section{
	width:100%;
	float:left;		
}
.content1_main{
	width:100%;
	float:left;	
}
.content1_head{
	width:100%;
	float:left;	
}
.content1_line{
	width:100%;
	float:left;	
}
.content1_line1{
	width:4px;
	margin:0 auto;
	height:235px;
	background-color:#000;	
}
.content1_txt1{
	width:100%;
	float:left;	
	margin-top:5px;
}
.content1_txt{
	width:307px;
	margin:0px auto 28px auto;
	font-family:Newsgotb;
	font-size:40px;
	color:#000;
	border:3px solid #f8743a;
	text-align: center;
	padding: 10px 0;
	text-transform:uppercase;
	letter-spacing:4px;
}
.products_main{
	width:100%;
	float:left;
	background-image:url(images/product_bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:right;
	margin-bottom: 160px;
	min-height: 531;
}
.products{
	width:100%;
	float:left;
	margin-top:60px;
}
.products_left{
	width:50%;
	float:left;	
}
.products_left1{
	width: 81%;
	margin:0 auto;
	font-family:PTS55F;
	font-size:15px;
	color:#f87b44;
	line-height:30px;
}
.products_right{
	width:50%;
	float:left;	
	text-align:right;
}
.products_right1{
	width: 41%;
	float:left;	
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 5px;
	padding-right: 20px;
	background-color:#FFF;
}
.products_right_icon{
	width:100%;
	float:left;
	margin-top: 45px;
}
.products_right_txt1{
	width:100%;
	float:left;
	 font-family:PTS55F;
	font-size:23px;
	color:#000;
	font-weight:bold;
	margin:10px 0 10px 0;
}
.products_right_txt2{
	width:85%;
	float:right;
	font-family:PTS55F;
	font-size:15px;
	color:#6d6b6b;
	line-height:25px;
	text-align:right;
	margin-bottom: 30px;
}
.products_right2{
	margin-left:8%;
}
.content2_main{
	width:100%;
	float:left;
	background-image:url(images/case_bgimg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;
}
.content2_left{
	width:50%;
	float:left;
	margin-top: 100px;
}
.content2_right{
	width:50%;
	float:left;
}

.content2_head{
	width:100%;
	float:left;
	font-family:Newsgotb;
	font-size:40px;
	color:#000;
	text-transform:uppercase;
	letter-spacing:4px;
}
.content2_txt1{
	width:100%;
	float:left;
	font-family:Newsgotb;
	font-size:30px;
	color:#f06021;
	letter-spacing:3px;
	margin-top:10px;
	margin-bottom:20px;
}
.content2_txt2{
	width:82%;
	float:left;
	font-family:PTS55F;
	font-size:16px;
	color:#595959;
	line-height:32px;
	margin-bottom:20px;
}
.the_business{
	width:100%;
	float:left;
	margin-bottom:30px;
}
.the_business ul{
	width:100%;
	float:left;
}
.the_business ul li{
	width:auto;
	float:left;
	background-image: url(images/bullets.png);
	background-repeat: no-repeat;
	margin-right: 15px;
	background-position: left;
	padding-left: 20px;
	font-family:PTS75F;
	font-size:16px;
	color:#000;
	text-transform:uppercase;
}
.view_more{
	width:auto;
	float:left;	
	font-family:PTS75F;
	font-size:15px;
	color:#f06021;
	text-transform:uppercase;
	border-radius: 100px;
	box-shadow: 2px 4px 20px #d4d4d4;
}
.view_more:hover{
	background:#fff;
	color:#f06021;
}
.content2_right{
	width:50%;
	float:right;
}
.content3_main{
	width:100%;
	float:left;
}
.content3_team{
	width:100%;
	float:left;
	background-image:url(images/product_bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;	
}
.team_main{
	width:100%;
	float:left;
}
.team1{
	width: 100%;
	float:left;
	text-align:center;
	margin-top:100px;
}
.team1_txt{
	width:100%;
	float:left;
	font-family:PTS75F;
	font-size:15px;
	color:#000;
	text-transform:uppercase;
	margin-top:15px;
}
.team1_img{
	width:84.2%;
	float:left;
	overflow:hidden; 
	cursor:pointer; 
	border: 9px solid #fff;
	border-radius: 10px;
	box-shadow: 2px 4px 20px #d4d4d4;
}
.team1_img img{
	-webkit-transition:all 500ms linear; 
	-moz-transition:all 500ms linear; 
	-o-transition:all 500ms linear; 
	-ms-transition:all 500ms linear; 
	transition:all 500ms linear; 
}
.team1_img > img:hover { 
	-moz-transform: scale(1.2); 
	-webkit-transform: scale(1.2); 
	-o-transform: scale(1.2); 
	transform: scale(1.2); 
}
.view_All{
	width:100%;
	float:left;
	text-align:center;
	margin-top:70px;
	margin-bottom:70px;
}
.home_btn{float:left; margin-top:20px;}
.view_btn{
	width:auto;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #f06021;
	text-transform: uppercase;
	border-radius: 100px;
	box-shadow: 2px 4px 20px #d4d4d4;
	background:#fff;
	padding: 14px 63px 16px 35px;
	background-image:url(images/arrow1.png);
	background-repeat:no-repeat;
	background-position: right;
}
.view_btn:hover{
	background:#f06021;	
	color:#fff;
	background-image:url(images/arrow2.png);
	background-repeat:no-repeat;
	background-position: right;
}
.view_btn1{
	width:auto;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	border-radius: 100px;
	background:none;
	padding: 15px 60px 16px 30px;
	background-image:url(images/arrow2.png);
	background-repeat:no-repeat;
	background-position: right;
	border:2px solid #fff;
}
.view_btn1:hover{
	width:auto;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #f06021;
	text-transform: uppercase;
	border-radius: 100px;
	background:#fff;
	padding: 14px 63px 16px 35px;
	background-image:url(images/arrow1.png);
	background-repeat:no-repeat;
	background-position: right;
}
.home_btn11{float:left; margin-top:20px;}
.home_btn1{float:left; margin-top:20px; margin-bottom:20px; margin-left:15px;}

.content4_main{
	width:100%;
	float:left;
	margin-top:70px;
	background-image:url(images/case_bgimg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;	
	min-height: 525px;
}
.content4-1{
	width:50%;
	float:left;
}
.content4-2{
	width:50%;
	float:left;
	margin-top:50px;
}
.content4_img{
	width:100%;
	float:left;
}
.img_margin{
	margin-left: 40px;
}
.con4_img{
	margin-top:15px;
}
#footer_section{
	width:100%;
	float:left;
	margin-top:100px;
}
.footer1{
	width:100%;
	float:left;
	background-image:url(images/footer_img_bg.png);
	background-repeat:no-repeat;
	background-size:cover;
	position: relative;
	z-index: 501;
}
.footer1_txt1{
	width: 92%;
	float:left;
	font-family:Newsgotb;
	font-size: 40px;
	color: #000;
	letter-spacing:4px;
   padding-top: 110px;
	padding-left: 8%;
}
.footer1_txt2{
	width: 92%;
	float: left;
	margin-top: 30px;
	margin-left: 8%;
	margin-bottom: 60px;
	padding-bottom: 54px;
}
.footertxt2-1{
	width:auto;
	float:left;
	font-family:PTS75F;
	font-size: 15px;
	color: #808080;
	text-transform:uppercase;
	margin-top: 10px;
}
.footertxt2-2{
	width:auto;
	float:left;
	margin-left: 25px;
	margin-right: 25px;
}
.footer_view_btn{
	width:100px;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #f06021;
	text-transform: uppercase;
	border-radius: 100px;
	box-shadow: 2px 4px 20px #d4d4d4;
	background:#fff;
	padding: 14px 59px 16px 27px;
	background-image:url(images/arrow1.png);
	background-repeat:no-repeat;
	background-position: right;
}
.footer_view_btn:hover{
	background:#f06021;	
	color:#fff;
	background-image:url(images/arrow2.png);
	background-repeat:no-repeat;
	background-position: right;
}
.footertxt2-3{
	width:auto;
	float:left;
	margin-top: 13px;
}
.foter1_txtfield{
	width: 511px;
	float:left;
	font-family:PTS75F;
	font-size: 15px;
	color: #fff;
	background:#f06021;
	border:none;
	text-transform:uppercase;
	border-radius: 100px;
	padding: 15px 15px;
	box-shadow: 2px 4px 20px #d4d4d4;
	
}
.footer2{
	width:100%;
	float:left;
	background-image:url(images/footer_bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-color:#323333;
	background-position: top right;
	padding-top: 400px;
	position: relative;
	z-index: 500;
	margin-top: -435px;
}
.footer2-1{
	width:33%;
	float:left;
	margin-top:59px;
}
.footer2-6{
	width:33%;
	float:left;

}
.footer_logo{
	width:100%;
	float:left;
}
.footer2_txt1{
	width:100%;
	float:left;
	font-family:PTS55F;
	font-size: 15px;
	color: #6b6b6a;
	line-height:27px;
	margin-top:30px;
}
.footer2_txt2{
	width:100%;
	float:left;
	font-family:PTS75F;
	font-size: 18px;
	color: #fff;
	text-decoration:underline;
	margin-top:79px;
	margin-bottom: 30px;
	text-transform:uppercase;
}
.footer2_txt4{
	width:100%;
	float:left;
	margin-bottom:15px;
}
.footer2_img{
	width:auto;
	float:left;
	margin-right:15px;
}
.footer2_txt{
	width: 80%;
	float:left;
}
.footer2_txt6{
	width:100%;
	float:left;
	
	font-size: 15px;
	color: #6b6b6a;
}
.footer2_txt7{
	width:100%;
	float:left;
	
	font-size: 15px;
	color: #6b6b6a;
}
.footer2_txt5{
	margin-top:10px;
}
.footer_nav_main{
	width:100%;
	float:left;
}
.footer_nav{
	width:50%;
	float:left;
}
.footer_nav ul{
	width:auto;
	float:left;
}
.footer_nav ul li a{
	width:100%;
	float:left;
	
	font-size: 15px;
	color: #6b6b6a;
	line-height:30px;
}
.footer_nav ul li a:hover{
	color:#f06021;
}
.footer_line{
	width:100%;
	float:left;
	margin:65px 0 30px 0;
}
.footer_line1{
	width:100%;
	margin:0 auto;
	background-color:#5b5b5b;
	height:1px;
}
.footer_cpytext{
	width:100%;
	float:left;
	text-align:center;
	
	font-size: 15px;
	color: #6b6b6a;
	margin-bottom:100px;
}
.footer2-2{
	width: 29%;
	margin-left: 4%;
}


/*---------------team members start here-------------*/

.team_content1_txt{
    width:50%;
	margin:0 auto;
	font-family:Newsgotb;
	font-size:40px;
	color:#000;
	border:3px solid #f8743a;
	text-align: center;
	padding: 10px 0;
	text-transform:uppercase;
	letter-spacing:4px;
}
.ourteam_main{
	width:100%;
	float:left;
	margin-top:100px;

}
.ourteam1{
	width:510px;
	float:left;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background:#fff;
	text-align:center;
}
.ourteam2{
	width:510px;
	float:right;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background:#fff;
	text-align:center;
}
.ourteam_img{
	width:100%;
	float:left;
	margin-top:30px;
}
.ourteam_txt1{
	width:100%;
	float:left;
	font-family:PTS75F;
	font-size:26px;
	color:#000;
	margin-top:25px;
}
.ourteam_txt2{
	width:100%;
	float:left;
	font-family:PTS55F;
	font-size:14px;
	color:#f76d30;
	text-decoration:underline;
	text-transform:uppercase;
	margin-top:5px;
	margin-bottom:15px;
}
.ourteam_txt3{
	width:100%;
	float:left;
}
.ourteam_txt4{
	width:80%;
	margin:0 auto;
	font-family:PTS55F;
	font-size:14px;
	color:#797979;
	line-height:23px;
	margin-bottom:40px;
}
.team_products_main{
	width:100%;
	float:left;
	background-image:url(images/product_bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:right;
}
.team_products_main1{
	width:100%;
	float:left;
	background-image:url(images/case_bgimg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;
	margin-bottom:30px;
	margin-top:30px;
}
.ourteam_line{
	width:100%;
	float:left;
	height:2px;
	background:#f2f2f2;
	margin-top: -3px;
}
.ourteam_line1{
	width:100%;
	float:left;
	height:2px;
	background:#f2f2f2;
	margin-top: -5px;
}

/*---------------products members start here-------------*/

.products_content1_txt{
	width: 630px;
	margin:0 auto;
	font-family:Newsgotb;
	font-size:40px;
	color:#000;
	border:3px solid #f8743a;
	text-align: center;
	padding: 13px 0;
	text-transform:uppercase;
	letter-spacing:4px;
}
.products_content1_txt1{
	width:100%;
	float:left;
	margin-top:32px;
	text-align:center;
}
.products_content1_txt2{
	width:73%;
	margin:0 auto;
	font-family:PTS55F;
	font-size:16px;
	color:#595959;
	line-height:32px;
}
.weproducts{
	width:100%;
	float:left;
	margin-top:60px;
}
.weproducts1{
	width: 285px;
	float:left;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background: #fff;
	text-align:center;
	padding: 128px 0;
	margin-left: 55px;
}
.weproducts2{
	width:715px;
	float:left;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background: #fff;
	padding-left:30px;
	margin-left: 25px;
	margin-right: 55px;
}
.weproduct_txt1{
	width:100%;
	float:left;
	font-family:PTS75F;
	font-size:25px;
	color:#000;
	text-transform:uppercase;
	margin-top:60px;
}
.weproduct_txt2{
	width:90%;
	float:left;
	font-family:PTS55F;
	font-size:15px;
	color:#6d6b6b;
	line-height:25px;
	margin:30px 0;
}
.weproducts_view_All{
	width:100%;
	float:left;
	margin-top:20px;
	margin-bottom:70px;
}
.weproducts_view_btn{
	width:100px;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #f06021;
	text-transform: uppercase;
	border-radius: 100px;
	box-shadow: 2px 4px 20px #d4d4d4;
	background:#fff;
	padding: 14px 55px 16px 15px;
	background-image:url(images/arrow1.png);
	background-repeat:no-repeat;
	background-position: right 4px center;
}
.weproducts_view_btn:hover{
	background:#f06021;	
	color:#fff;
	background-image:url(images/arrow2.png);
	background-repeat:no-repeat;
	background-position: right 4px center;
}
.weproducts_bg{
	width:100%;
	float:left;
	background-image:url(images/case_bgimg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;
	min-height: 525px;
}
.we_prd{
	margin-bottom:20px;
}
.weproducts_service{
	width:100%;
	float:left;
	font-family: PTS75F;
	font-size: 15px;
	color: #f3804e;
	text-transform:uppercase;
	margin-bottom: 42px;
}
.media_gallery{
	width:100%;
	float:left;
	background-image:url(images/media_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	min-height:960px;
}
.contact_form{
	width:100%;
	float:left;
	background-image:url(images/media_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	min-height:960px;
}
.media_gallery1{
	width:100%;
	float:left;
	margin-bottom:10px;
	margin-top:20px;
}
contact_form_main{
	width:100%;
	float:left;

}
.media_img{
	width:33%;
	float:left;
	text-align:center;
}

/*---------------About us members start here-------------*/

.about_banner_txt11{
	width: 53%;
}
.about_content1_txt{
	width: 50%;
	margin:0 auto;
	font-family:Newsgotb;
	font-size:40px;
	color:#000;
	border:3px solid #f8743a;
	text-align: center;
	padding: 13px 0;
	text-transform:uppercase;
	letter-spacing:4px;
}
.about_con1_txt{
	width: 50%;
}
.about_content1_txt1{
	margin-top:0;
}
.about_products_main{
	width:100%;
	float:left;
	background-image:url(images/case_bgimg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:left;
	margin-bottom: 70px;
}
.abu_products_main{
	margin-bottom:60px;
}

/*---------------case studies start here-------------*/

.case_banner_txt11{
	width: 78%;
}
.case_banner_txt4{
	width: 100%;
}
.case_weproducts{
	width:100%;
	float:left;
	margin-top:60px;
}
.case_weproducts_main{
	width:990px;
	margin:0 auto;
}
.case_weproducts2{
	width:990px;
	float:left;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background: #fff;
	padding-left:30px;
	margin-left: 25px;
	margin-right: 55px;
}
.case_weproduct_txt1{
	width:100%;
	float:left;
	font-family:PTS75F;
	font-size:25px;
	color:#000;
	margin-top:30px;
}
.case_weproduct_txt2{
	width:auto;
	float:left;
	margin-top: 4px;
	margin-left: 10px;
}
.case_weproduct_img{
	width:auto;
	float:left;
	
}
.case_txt2{
	margin:15px 0 40px 0;	
}
.case_txt3{
	margin:15px 0 0px 0;	
}
.case_weproduct_img1{
	margin-top: 5px;
}
.case_service{
	width:100%;
	float:left;	
	margin-bottom:30px;
	margin-top:15px;
}
.case_service ul{
	width:100%;
	float:left;	
}
.case_service ul li{
    width: 30%;
    float: left;
    background-image: url(images/case_right_click.jpg);
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 33px;
	font-family:PTS55F;
	font-size:14px;
	color:#6d6b6b;
	text-transform:uppercase;
	line-height: 35px;
}
.case_bg{
	width:100%;
	float:left;
	background-image:url(images/case_bg.png);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:right;
	margin-bottom: 160px;
}
.case_weproducts1{
	margin-bottom: 70px;
}

/*---------------market members start here-------------*/
.market_bg{
	width:100%;
	float:left;
	background-image:url(images/market_bg.png);
	background-repeat:no-repeat;
	background-size:cover;
	background-position: top;
	margin-bottom:60px;
}

.market_content1_txt{
	width: 400px;
}

.market_weproducts{
	width:100%;
	float:left;
	
}
.market_weproducts1{
	width: 31%;
	float:left;
	box-shadow: 2px 4px 20px #d4d4d4;
	border-radius: 10px;
	background: #fff;
	text-align:center;
	margin-right: 3%;
	margin-top:60px;
}
.market_img{
	width:100%;
	float:left;
	margin:40px 0 10px 0;
}
.market_weproduct_txt2{
	width: 100%;
	float: left;
	font-family: PTS75F;
	font-size: 25px;
	color: #000;
	text-decoration:underline;
}
.market_content1_txt1{
	width:100%;
	float:left;
	margin-top:15px;
	text-align:center;
	margin-bottom:35px;
}
.market_content1_txt2{
	width: 90%;
	margin:0 auto;
	font-family:PTS55F;
	font-size:16px;
	color:#595959;
	line-height:22px;
}
.market_view_All{
	width:100%;
	float:left;
	text-align:center;
	margin-top: 12px;
	margin-bottom: 65px;
}
.market_view_btn{
	width:100px;
	margin:0 auto;
	font-family: PTS75F;
	font-size: 15px;
	color: #f06021;
	text-transform: uppercase;
	border-radius: 100px;
	box-shadow: 2px 4px 20px #d4d4d4;
	background:#fff;
	padding: 14px 63px 16px 35px;
	background-image:url(images/arrow1.png);
	background-repeat:no-repeat;
	background-position: right 4px center;
}
.market_view_btn:hover{
	background:#f06021;	
	color:#fff;
	background-image:url(images/arrow2.png);
	background-repeat:no-repeat;
	background-position: right 4px center;
}
.pagignation{
	width:100%;
	float:left;
	text-align:center;
	margin-top:80px;
}


.contact_box{width:56%; float:left; border:3px solid #333333; padding-left:2%; padding-right:2%; padding-top:22px; margin-top:123px; padding-bottom:49px; margin-left:20%;}
.name_field{width:100%; float:left; margin-top:20px;}
.enter_name{width:95%; float:left; font-size: 14px;
	color: #979797;
	background:#fff;
	border:none;
	border-radius: 100px;
	padding: 15px 15px;
	box-shadow: 2px 4px 10px #d4d4d4;}
.check_in{width:48.5%; float:left; padding-right:1.5%;}
.check_out{width:48.5%; float:left; padding-left:1.5%;}
.checkin{width:90%; float:left; font-size: 14px;
	color: #979797;
	background:#fff;
	border:none;
	border-radius: 100px;
	padding: 15px 15px;
	box-shadow: 2px 4px 10px #d4d4d4;}
.send_but{width:35%; float:left; margin-top:40px;}

.review1{width:100%; float:left; border-bottom:1px solid #FFF; background-repeat:repeat-x;
      background-position:bottom; padding-bottom:0px; padding-top:100px;}
.map_box{width:100%; float:left; margin-bottom:0px;}

.cont {
	float: left;
	width: 50%;
	margin-top: 50px;
	margin-bottom: 80px;
}
.adrs {
	float: left;
	width: 100%;
	font-size: 15px;
	color: #767777;
	margin-bottom: 30px;
}
.cont_icon {
	float: left;
	padding-right: 8px;
	padding-left: 8px;
}
.adrs_2 {
	float: left;
	width: 85%;
	line-height: 20px;
}


.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
	background-image:url(images/next_arrow.png) !important;
	width: 38px !important;
	height: 37px !important;
	background-size:38px 37px !important;
	top: 58% !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	background-image:url(images/prev_arrow.png) !important;	
	width: 38px !important;
	height: 37px !important;
	background-size:38px 37px !important;
	top: 58% !important;
}

@media only screen and (min-width:1000px) and (max-width:1300px){
	.banner_txt11{
		margin-left:5%;
	}
	.banner_txt12{
		margin-top: -740px;
		text-align:right;
		width: 61%;
	}
	.tab_img{
		max-width: 64%;
		text-align:right;
	}
	.mob_img{
		
	}

}

@media only screen and (max-width:1200px)
{
	.container{
		width:96%;
	}
	.top-navigation{
		margin-left:0;
	}
	.banner_txt2{
		width:40%;
	}
		.about_content1_txt{
	width: 70%;
	}
	.about_con1_txt{
	width: 70%;
	}
	.products_content1_txt{
	width: 95%;
	}
	.ourteam1{
	width:49%;
	}
	.ourteam2{
	width:49%;
	}
	.case_weproducts_main{
	width:100%;
	}
	.case_weproducts2{
	width:97%;
	padding-left:30px;
	margin-left:0px;
	margin-right:0px;
    }
	.footer2-6{
	width:100%;
	float:left;

}
}

@media only screen and (max-width:991px){
	.logo{
		width: 20%;
	}
	.top-navigation{
		width: 59%;
	}
	.footer_line1{
		width:100%;
	}
	.banner_txt12{
		display:none;
	}
	.about_content1_txt{
	width: 70%;
	}
	.about_con1_txt{
	width: 70%;
	}
		.team_content1_txt{
    width:70%;
	}
	.ourteam1{
	width:49%;

	}
	.ourteam2{
	width:49%;
	}
	.products_content1_txt{
	width: 95%;
	}
	.case_weproducts_main{
	width:100%;
	}
	.case_weproducts2{
	width:97%;
	padding-left:30px;
	margin-left:0px;
	margin-right:0px;
    }
		.weproducts1{
	margin-left: 0px;
	margin-bottom:20px;
	}
	.weproducts2{
	width:95%;
	padding-left:30px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom:20px;
}
.footer2-6{
	width:100%;
	float:left;

}

}
@media only screen and (max-width:768px){
	.logo{
		margin-right: 35px;
	}
	.top-navigation {
    	width: 44%;
	}
.footertxt2-2{
		width:100%;
		margin-right: 0;
		margin-left:0;
	}
	.footertxt2-3{
		margin-top: 23px;
	}
		.about_content1_txt{
	width: 95%;
	}
	.about_con1_txt{
	width: 95%;
	}
		.foter1_txtfield{
		width: 90%;
		margin-top:7px;
	}
	.footertxt2-2{
	width:100%;
	margin-left: 0px;
	margin-right: 0px;
}
	.footertxt2-1{
		width:100%;
	}
	.footer2-1{
		width:100%;
	}
	footer2-2{
	margin-left:0;
	}
		.team_content1_txt{
    width:95%;
	}
		.team_products_main{
	   margin-top:0;
	   background-image:none;
     }
	 
     .team_products_main1{
	   margin-top:0;
	   background-image:none;
	}
	.ourteam1{
	width:100%;

	}
	.ourteam2{
	width:100%;
	margin-top:40px;
	}
	
	.products_content1_txt{
	width: 95%;
	}
	.case_weproducts_main{
	width:100%;
	}
	.case_weproducts2{
	width:90%;
	padding-left:30px;
	margin-left:0px;
	margin-right:0px;
    }
		.weproducts1{
	margin-left:0px;
	margin-bottom:20px;
	}
	.weproducts2{
	width:95%;
	padding-left:30px;
	margin-left: 0px;
	margin-right: 0px;
}
	.footer2-6{
	width:100%;
	float:left;
}
.market_weproducts1{
	width:80%;
	float:left;
	margin-right: 10%;
	margin-left: 10%;
}
.case_service ul li{
    width: 100%;
    float: left;
    background-image: url(images/case_right_click.jpg);
    background-repeat: no-repeat;
    background-position: left ;
    padding-left: 33px;
	font-family:PTS55F;
	font-size:14px;
	color:#6d6b6b;
	text-transform:uppercase;
	line-height: px;
}
.case_service li{
    width: 100%;
}
.ourteam_main{

	margin-top:40px;

}

}

@media only screen and (max-width:550px){
	.logo {
		width: 100%;
		text-align: center;
	}
	.top-navigation {
	    width: 100%;
	}
	.top-navigation {
		width: 100%;
		margin: 15px 0;
	}
	.contact{
		width: 100%;
		float: left;
		text-align: center;	
		margin-top: 10px;
	}
	.contact_us {
        float: none;
	}
	.banner_txt2 {
    	width: 100%;
		text-align: center;
		font-size: 25px;
	}
	.logo_main{
		margin-bottom: 30px;
		padding-top: 15px;
	}
	.banner_txt4{
		width:100%;
		text-align:center;
		margin-top:10px;
		margin-bottom: 25px;
	}
	.banner{
		background-image:none;
		padding-bottom: 20px;
	}
	.get_started{
		margin:0 auto;
		float:none;
		width: 400px;
	}
	.banner_txt12{
		display: none;
	}
	.banner_txt11{
		width:100%;
	}
	.products_left{
		width: 100%;
		text-align: center;
	}
	.products_right{
		width: 100%;
	}
	.products_right1{
		width: 93%;
		padding-right: 7%;
		margin-top: 25px;
	}
	.products_right2{
		margin-left:0;
		margin-top: 25px;
	}
	.content2_left{
		width: 100%;
		margin-top: 0px;
		text-align: center;
	}
	.content2_txt2{
		width: 100%;
		margin-bottom: 10px;
	}
	.the_business{
		margin-bottom: 15px;
	}
	.products_main{
		margin-bottom: 30px;
		margin-top: 20px;
		background-image:none;
	}
	.about_products_main{
	background-image:none;
	}
	.the_business ul li{
		width: 90%;
		line-height:20px;
		margin-right: 0;
		padding-left: 0;
		text-align: left;
		padding-left: 20px;
		line-height: 30px;
	}
	.content2_right{
		width:100%;
		margin-top:60px;
	}
	.team1{
		width: 100%;
		margin-top: 15px;
	}
	.content4-1{
		width: 100%;
		text-align:center;
	}
	.img_margin{
		margin-left:0;
	}
	.content4-2{
		width:100%;
		margin-top: 15px;
	}
	.content4_img img{
		width:40%;
		box-shadow: 2px 4px 20px #d4d4d4;
		border-radius:4px;
		margin-left:5.5%; margin-right:0%;
		margin-top:30px;
		
	}
	.footer1{
		box-shadow: 2px 4px 20px #d4d4d4;
		background: #fff;
		background-image:none;
	}
	.footer1_txt1{
		padding-top: 10px;
		width: 100%;
		text-align:center;
		padding-left:0;
		font-size: 25px;
	}
	.footer1_txt2{
		margin-left: 4%;
		width: 94%;
		padding-bottom: 0;
		margin-bottom: 25px;
		margin-top: 5px;
	}
	.foter1_txtfield{
		width: 90%;
		margin: 15px 0;
	}
.footertxt2-2{
	width:100%;
	margin-left: 0px;
	margin-right: 0px;
}
	.footertxt2-1{
		width:100%;
	}
	.footer2{
		background-image:none;
		margin-top: 20px;
		padding-top: 25px;
	}

	.footer2-1{
		width:100%;
	}
	#footer_section{
		margin-top: 35px;
	}
	.footer2-2{
		margin-left:0;
	}
	.footer_line1{
		width:100%;
	}
	.content2_main{
		background-image:none;
	}
	.content1_txt{
		width: 190px;
		padding: 6px 0;
		font-size: 25px;
	}
	.products_right_icon{
		margin-top: 15px;
	}
	.products_right_txt1{
		margin:0;
		font-size: 18px;
	}
	.products_right_txt2{
		margin-bottom: 10px;
	}
	.content2_head{
		font-size: 25px;
	}
	.content2_txt1{
		margin-top: 5px;
		margin-bottom: 30px;
		font-size: 18px;
	}
	.content4_main{
		margin-top:0;
		background-image:none;
	}
	.team_products_main{
	   margin-top:0;
	   background-image:none;
     }
	 
     .team_products_main1{
	   margin-top:0;
	   background-image:none;
	}
	 
	.footer2_txt2{
		margin-top:25px;
		margin-bottom: 12px;
	}
	.footer_cpytext{
		margin-bottom: 20px;
	}
	.footer_line{
		margin: 30px 0 20px 0;
	}
	.footertxt2-3{
		margin-top: 7px;
	}
	.products{
		margin-top:15px;
	}
	.content1_line1{
	height:130px;
	}
		.about_content1_txt{
	width: 95%;
	}
	.about_con1_txt{
	width: 95%;
	}
		.team_content1_txt{
    width:95%;
	}
		.ourteam1{
	width:100%;

	}
	.ourteam2{
	width:100%;
	margin-top:40px;
	}
	.products_content1_txt{
	width: 95%;
	}
	.case_weproducts_main{
	width:100%;
	}
	.case_weproducts2{
	width:80%;
	padding-left:30px;
	margin-left:0px;
	margin-right:0px;
    }
	.weproducts_bg{
	background-image:none;
	}
		.weproducts1{
	margin-left: 10px;
	margin-bottom:20px;
	}
	.weproducts2{
	width:90%;
	padding-left:30px;
	margin-left: 0px;
	margin-right: 0px;
}

.contact_form{
background-image:none;
}
.footer2-6{
	width:100%;
	float:left;
}
.market_weproducts1{
	width: 90%;
	float:left;
	margin-right: 0%;
	margin-left: 5%;
}
.case_service ul li{
    width: 100%;
    float: left;
    background-image: url(images/case_right_click.jpg);
    background-repeat: no-repeat;
    background-position: left ;
    padding-left: 33px;
	font-family:PTS55F;
	font-size:14px;
	color:#6d6b6b;
	text-transform:uppercase;
	line-height: 35px;
}
.case_service li{
    width: 100%;
}
.case_bg{
	background-image:none;
}
.media_gallery{
background-image:none;
min-height:0px;
margin-bottom:50px;
}
.ourteam_main{

	margin-top:40px;

}
.the_business{
	width:95%; margin-left:5%;
}
.footer2_txt1{
	margin-top:50px;
}
.swiper-wrapper{margin-left:20px;}

}

@media only screen and (max-width:400px){
	.get_started_bt2 {
    	margin-left: 0px;
		margin-top:10px;
	}
	.get_start{
		width:100%;
		float:left;
	}
	.get_started{
		float:left;
		width:100%;
	}
	.footertxt2-2{
		width:100%;
		margin-right: 0;
		margin-left:0;
	}
	.footertxt2-3{
		margin-top: 10px;
	}
	.foter1_txtfield{
		width: 90%;
	}
	
	.content1_line1{
	height:130px;
	}
	.about_content1_txt{
	width: 95%;
	}
	.about_con1_txt{
	width: 95%;
	}
	.team_content1_txt{
    width:95%;
	}
	.ourteam1{
	width:100%;

	}
	.ourteam2{
	width:100%;
	margin-top:40px;
	}
	.products_content1_txt{
	width: 95%;
	}
	.case_weproducts_main{
	width:100%;
	}
	.case_weproducts2{
	width:90%;
	padding-left:30px;
	margin-left:0px;
	margin-right:0px;
    }
	.weproducts1{
	margin-left: 10px;
	margin-bottom:20px;
	}
	.weproducts2{
	width:80%;
	padding-left:30px;
	margin-left: 0px;
	margin-right: 0px;
}
.footer2-6{
	width:100%;
	float:left;

}
.market_weproducts1{
	width: 100%;
	float:left;
	margin-right: 0%;
	margin-left:0%;
}
.case_service ul li{
    width: 100%;
    float: left;
    background-image: url(images/case_right_click.jpg);
    background-repeat: no-repeat;
    background-position: left ;
    padding-left: 33px;
	font-family:PTS55F;
	font-size:14px;
	color:#6d6b6b;
	text-transform:uppercase;
	line-height: 35px;
}
.case_service li{
    width: 100%;
}
.case_bg{
	background-image:none;
}
.media_gallery{
background-image:none;
min-height:0px;
margin-bottom:50px;
}

.ourteam_main{

	margin-top:40px;

}
.the_business{
	width:95%; margin-left:5%;
}
.footer2_txt1{
	margin-top:50px;
}
.home_btn1{width:100%; float:left; margin-top:50px; margin-bottom:25px; margin-left:0px;}

.swiper-wrapper{margin-left:20px;}
}