/* main-body*/

@charset "utf-8";
*{padding:0; margin:0}
body{font-family: 'Segoe UI', sans-serif;font-size:16px;font-weight:300px; color:#252525}
h1,h2,h3,h4,h5,h6{font-family: 'Segoe UI', sans-serif;color:#005eb8; margin:0; padding:0 }
p{margin:0; font-size:16px; line-height:27px;font-family: 'Segoe UI', sans-serif; font-weight:400}
ul{list-style:none}
.plarge{font-size:18px; line-height:32px;}
.main-title{color:#ca962c; font-size:40px;}
.c-gold{color:#ca962c}
.c-gold-bg{background:#ca962c}
.link{color:#fff; font-size:15px; font-weight:500}
.link:hover{color:#711318; }
a{color:#252525;-webkit-transition: all .8s ease;-moz-transition: all .8s ease; -ms-transition: all .8s ease;-o-transition: all .8s ease; transition: all .8s ease;text-decoration:none}
a:hover{ text-decoration:none;}
.btn-green{background:#711318; display:inline-block; text-transform:uppercase; color:#fff; padding:10px 20px; font-size:16px; border-radius:0px; font-weight:300;-webkit-transition: all .8s ease;-moz-transition: all .8s ease; -ms-transition: all .8s ease;-o-transition: all .8s ease; transition: all .8s ease;}
.btn-gold{background:#ca962c; color:#fff; padding:7px 20px; font-size:18px; border-radius:5px; font-weight:300;-webkit-transition: all .8s ease;-moz-transition: all .8s ease; -ms-transition: all .8s ease;-o-transition: all .8s ease; transition: all .8s ease;}
.btn-green:hover{background:#313335;color:#fff;  }
.container-fluid{padding:0 11%}
b, strong {
    font-weight: 500;
}
/* main-body*/
/* main-font-icon */

@font-face {
      font-family: 'fontello';
      src: url('../font/fontello.eot?42966715');
      src: url('../font/fontello.eot?42966715#iefix') format('embedded-opentype'),
           url('../font/fontello.woff?42966715') format('woff'),
           url('../font/fontello.ttf?42966715') format('truetype'),
           url('../font/fontello.svg?42966715#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
    }
     
     
    .demo-icon
    {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: none;
     
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
     
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
     
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
     
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
     
      /* You can be more comfortable with increased icons size */
      /* font-size: 120%; */
     
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
     
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    }

/* main-font-icon */




/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);


header .navbar .nav .active{background:#bc3844; color:#fff; }
header .top{margin-top:-50px;}

#container {
	margin: 0 auto;
	max-width: 100%;
}



.toggle,
[id^=drop] {
	display: none;
}
.toggle1,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;

	width:100%;margin-left:0%;
}

.size {text-transform:uppercase;}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:50;
	margin:0;
	list-style: none;
	position: relative;

	}
	
/* Positioning the navigation items inline */
nav ul li .active{background:#006993; color:#fff;}
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #fff;

	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#313131;
	font-size:15px;
	text-decoration:none;
	text-transform:uppercase;
}


nav ul li ul li:hover { background: #fff; }

/* Background color change on Hover */
nav a:hover { 
	background-color: #006590; 
	color:#fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 53px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-53px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
	width:140%;
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {



	nav {
		
		width:100%;
		   
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		background-color: #006590;
		padding:8px 15px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
		
	}

	.toggle:hover {
		background-color:#006590;
		color:#fff;
	}
	
	
		.toggle1 {
		display: block;
		background-color: #006590;
		padding:8px 15px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
		width:28%;
		float:right;
		text-align:center;
		margin-top:40px;
		font-weight:500;
	}

	.toggle1:hover {
		background-color:#006590;
		color:#fff;
	}
	

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: #bc3844;
		color:#fff;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color:#bc3844;
		color:#fff;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 100%;
	}

}






















#main-meet .container {
    position: relative;
    width: 100%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  
 
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

#main-meet .container:hover .image {
  background:rgba(0,0,0, 0.5)!important;
  opacity:.2;
}

#main-meet .container:hover .middle {
  opacity: 1;
  
}

.text {
 
  font-size: 16px;
 

 
}
.text p{color:#ea2126; width:98%; text-transform:bold;}


/* main-header */

#header .taa1{display:none;}
#header .te .col-md-2{padding-left:5px;}
#header .top{text-align:right}
#header .bottom{margin-top:5px;}
#header .top a{color:#fff; padding-left: 19px;line-height: 56px;}
.navbar-brand {font-size: 24px;}
.navbar-container { padding: 30px 0 20px 0;}
.navbar.navbar-fixed-top.fixed-theme{background-color:#0280a3;height: 140px;}
.navbar.navbar-fixed-top.fixed-theme .logo img{width:!important}
.navbar-brand.fixed-theme {font-size: 18px;}
.navbar-container.fixed-theme {padding: 0;}
.navbar-brand.fixed-theme,
.navbar-container.fixed-theme,
.navbar.navbar-fixed-top.fixed-theme,
.navbar-brand,
.navbar-container{transition: 0.8s;-webkit-transition:  0.8s;}
.navbar-nav{float:right}
#navbar .nav a{ border-radius:0px;  font-weight:400; position:relative;text-transform: uppercase;
font-size: 16px; }
#navbar .nav a:after{  }
#navbar .nav .active{background:#bc3844; color:#fff; }
#navbar .nav a:hover{background:#006590;  color:#fff; }
#navbar .nav a:hover:after{
	width:100%; 
	visibility: visible;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);}

#navbar .nav a#enquiry{background:#28995d; padding:12px 25px;color:#fff; border-radius:50px; margin-left:5px; float:right; margin-right:0}
#navbar .nav a#enquiry:hover:after{display:none}
.navbar-cntnr{background:#ffffff; padding-top:0px; padding-bottom:0px; float:right;}
.right{padding-right: 0px; padding-left: 56px;}

.cont1{background:#006590; text-align: center; color:#fff;}
.cont1:hover{background:#ea2126; color:#fff; }
.cont1 a{color: #fff; text-transform:uppercase;
    border-radius: 0px;
    font-weight: 400;
    position: relative;}


.cont{background:#bc3844;    text-align: center;
   
   }
.cont:hover {background:#006590; }
.cont:hover a{background:#006590; color:#fff;}
.cont a{color: #fff; text-transform:uppercase;
    border-radius: 0px;
    font-weight: 400;
    position: relative;}
	
	
	
.top-links{margin-top:13px; margin-bottom:15px;}
.top-links a{float:right; display:block; color:#313131; font-size:16px; padding:5px 10px}
#search{background:#28995d; padding:15px 0; text-align:center;}
#search h3{display:inline-block; margin-right:8px; color:#fff}
#search form{display:inline-block; position:relative;}
#search form input{border:none; border-radius:50px; padding:10px 20px; width:30vw;}
#search form button{border:none;background:none; position:absolute; top:10px; right:10px; outline:none}


a:focus, a:hover{color:#711318; }

ol, ul{margin-bottom:0px;}

.collapse {display: block;}
.nav>.hidd{display:none;}








/* main-header */





.bxslider1 .caption1 {
    text-align: center;
    position: absolute;
    top: 270px;
    left: 15px;
    width: 100%;
    z-index: 9;
    color: #fff;
}


/* main-meet*/
#main-meet{padding-top:100px; padding-bottom:100px;}
#main-meet h2{font-size:35px; color:#006590; text-align:center; font-weight:400;margin-bottom: 80px;}
#main-meet .box{background:#ededed; padding:15px;    height: 100px;}
#main-meet .box h5{color:#2c2d2e; font-size:22px; margin-bottom:8px; text-align:center; text-decoration:none;}
#main-meet .box p{color:#2c2d2e; font-size:16px; margin-bottom:30px; text-align:center;}
#main-meet .box .view{background:#ea2126; color:#fff; font-size:16px; width: 130px; height: 75px; padding:10px 35px 10px 10px;margin-left: -15px; border-radius: 0px 80px 0px 0px; cursor:pointer;}
#main-meet .box .view i{font-size:13px;}
#main-meet .box .view:hover{background:#006993; color:#fff;}
/* main-meet*/



#main-vedio .cont input[type=text], select, textarea {
    width: 100%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: -30px;
    margin-bottom: 3px;
    resize: vertical;
	height:37px;
}

#main-vedio .cont  input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#main-vedio .cont  input[type=submit]:hover {
    background-color: #45a049;
}


}

#country {height:40px;padding-bottom:9px;}

#main-vedio .msg{margin-top:10px;}


/* main-footer */


/* main-news*/
#main-news {background:#00892f; padding-top:20px; padding-bottom:20px;}
#main-news h3{color:#fff; font-size:30px; font-weight:400;}
#main-news p{color:#fff; font-size:16px; font-weight:400;  margin-top:10px; text-transform:uppercase;}
#main-news p span{color:#fff; font-size:18px; font-weight:400; text-transform:uppercase;}
#main-news a{border:1px solid #fff; border-radius:10px; padding-top: 10px; padding-bottom: 10px; color:#fff; font-size:16px; text-align:center; font-weight:400; width:70%; margin:auto;  display:block; }
#main-news i{font-size:13px;}
#main-news a:hover{background:#ea2126; cursor:pointer;}


.scroll-left {
 width:900px;
 height: 40px; 
 overflow: hidden;
 position: relative;
 font-size: 160px;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);    
 transform:translateX(100%);
 /* Apply animation to this element */  
 -moz-animation: scroll-left 15s linear infinite;
 -webkit-animation: scroll-left 15s linear infinite;
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%);       
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}
/* main-news*/
#main-ser .view a{padding:25px 25px 25px 25px; background:#bc3844; color:#fff; border-radius:10%;}
#main-ser :hover .view >a{color:#ea2126;}
#main-ser .view{margin-top:30px;}
#main-ser .view :hover{background:#fff;}

/* main-vedio*/
#main-vedio {padding:100px;}
#main-vedio .vedio{margin-top:50px; margin-bottom:50px;}
#main-vedio h2{color:#006590; font-size:30px; font-weight:400; padding-bottom:20px;}
#main-vedio p{color:#7a7a7a; font-size:16px; text-align:center; font-weight:400; width:80%; margin:auto; margin-bottom:20px; margin-top:20px;}
#main-vedio a{background:#006993; padding:15px 30px 15px 30px; color:#fff; font-size:16px; text-align:center; font-weight:400; width:17%; margin:auto; border-radius:30px; display:block; }
#main-vedio i{font-size:13px;}
#main-vedio a:hover{background:#ea2126; cursor:pointer;}

#main-vedio h3{font-size:17px; margin-top:20px; text-align:left; color:#006993;}
#main-vedio  img:hover ~h3{color:#ea2126;}

#main-vedio img{height:192px;}
#main-vedio img:hover{    opacity: 0.5;
    filter: grayscale(opacity=50); /* For IE8 and earlier */ cursor:pointer;}
/* main-vedio*/



/* main-bmi*/
#main-bmi {background:url(../images/footer.jpg) fixed center top no-repeat;  padding-top:60px; padding-bottom:60px;}
#main-bmi h2{color:#fff; text-align:center; font-size:30px; font-weight:400;}
#main-bmi p{color:#fff; font-size:16px; font-weight:400;  margin-top:10px; text-transform:uppercase;}
#main-bmi p span{color:#fff; font-size:18px; font-weight:400; text-transform:uppercase;}
#main-bmi a{border:1px solid #fff; border-raduis:10px; padding-top: 10px; padding-bottom: 10px; color:#fff; font-size:16px; text-align:center; font-weight:400; width:70%; margin:auto; border-radius:30px; display:block; }
#main-bmi i{font-size:13px;}
#main-bmi a:hover{background:#ea2126; cursor:pointer;}
#main-bmi .input { margin-top: 60px; margin-bottom:40px;}
#main-bmi .input button, input, select, textarea { border: 0px; width: 100%; border-radius:6px; height: 60px; padding-left: 10px;}
#main-bmi .input button, html input[type=button], input[type=reset], input[type=submit] { background: #ea2126; color: #fff;border: 0px;}
#main-bmi .input button, html input[type=button], input[type=reset], input[type=submit]:hover{ background: #00628f; }

/* main-news*/



footer{background:#052737; color:#fff; padding:6% 0 6% 0;}
footer ul li a{font-size:16px;  color:#cccfd1;   line-height: 30px;}
footer ul li a:hover{color:#ea2126;}
footer ul li a i{padding: 9px 23px 14px 8px; margin-bottom:10px; border:solid 1px #dbd9d9;  height:34px; border-radius:50px;}
footer ul li a:hover i {border:solid 1px #711318; color:#fff;  background:#711318;}
footer ul li .demo-icon{margin-right: 1.2em;}
footer h3{margin-bottom:15px; font-weight:400; color:#fff; font-size:24px;}

footer p{font-size:16px;  color:#cccfd1;   line-height: 30px;}
footer p a{font-size:16px;  color:#cccfd1;   line-height: 30px;}
footer p a:hover{color:#ea2126;}


/* main-footer1*/
#main-footer {background:#021016; padding-top:20px; padding-bottom:20px;}
#main-footer .ftr{ 0px 0px}
#main-footer .ftr p{font-size:16px; text-align:left;}
#main-footer p{color:#fff; font-size:16px; font-weight:400;  margin-top:10px;}
#main-footer p a{color:#00628f;}
#main-footer p a:hover{color:#ea2126;}

#main-footer .text-right a{color:#fff; font-size:24px;}
#main-footer .text-right a:hover{color:#ea2126;}

/* main-footer1*/



/* main-footer */





@ media only screen and (min-width : 1920px) and (max-width : 2559px){ 
	.navbar-cntnr img {margin-top:1px;}
	#about-home .areas img {height: auto;}
	footer ul li i {padding: 7px 23px 14px 8px;}
	#about-home .areas .produ{min-height: 264px;}
	#about-home{padding-bottom: 100px}
	
	
	
	
}
@media only screen and (min-width : 1600px) and (max-width : 1919px){ 
	.navbar-cntnr img {margin-top:5px;}
	footer ul li i {padding: 9px 23px 14px 8px;}
	#about-home .areas .produ{min-height: 303px; padding: 35px 20px 0px 20px;}
	
	.scroll-left{width: 730px;}
	#main-vedio .container-fluid{padding: 0 6%;}
	#main-slider img{margin-top:0px;}
	nav{width:100%;}
	#header .logo{margin-top:20px;}
	
}
@media only screen and (min-width : 1440px) and (max-width : 1599px){ 
	.navbar-cntnr img {margin-top:8px;}
	#navbar .nav a{font-size:14px;}
	#about-home .areas img {height: auto; }
	p{font-size:15px; line-height: 25px}
	#about-home .areas .produ{min-height: 284px; padding: 25px 20px 0px 20px;}
	.btn-green{font-size:16px;}
	footer ul li a {font-size: 16px;}
	.ftr p {font-size: 16px;}
	#about-home .areas .produ p{font-size: 15px;}
	#about-home .areas .produ a {font-size: 16px;}
	.scroll-left{width: 650px;}
	#main-vedio .container-fluid{padding: 0 3%;}
	#main-slider img{margin-top:0px;max-width:115%;}
	.bxslider1 .caption1{top: 230px;}
	nav{width:100%;}
	nav a{padding:14px 14px; font-size:16px;}
	#header .logo{margin-top:20px;}
   
}
@media only screen and (min-width : 1366px) and (max-width : 1439px){
	
	nav{width:100%;}
	nav a{padding:14px 14px; font-size:12px;}
	
	
	
	.navbar-cntnr img {margin-top:9px;}
	.cont{font-size	:14px;}
	#about-home .areas .produ {min-height: 278px;    padding: 20px 20px 0px 20px;}
	#navbar .nav a{font-size:14px;}
	#about-home .areas img {height: auto;}
	.top-links a{font-size:16px;}
	#about-home{padding-bottom:60px; padding-top:60px;}
	p{font-size:15px; line-height: 25px}
	#bottom-info{padding-bottom:60px; padding-top:60px;}
	.btn-green{font-size:14px;}
	#about-home .areas .produ p {font-size: 15px;}
	#about-home .areas .produ a {font-size: 16px;}
	
	.scroll-left{width: 600px;}
	#main-vedio .container-fluid{padding: 0 3%;}
	.css-slider-wrapper{    height: 700px;}
	#main-slider .slider{    height: 700px;}
	nav .logo img{margin-top:30px;}
	
	.bxslider1 .caption1{top: 230px;}
	nav ul ul {top:48px!important;}
	nav ul ul ul li {top:-48px!important;}
	
	
}


@media only screen and (min-width : 1200px) and (max-width : 1365px){


	nav{width:100%;margin-top: 4px;}
	nav a{padding:15px 9px; font-size:16px;}
	
	.navbar-cntnr img {margin-top:11px;}
	#about-home .areas img {height: auto;}
	#about-home .areas .produ {min-height: 300px;padding:20px 20px 0px 20px;}

	#navbar .nav a{font-size:14px;}
	.bx-wrapper img{height:auto;}
	footer ul li a{font-size:15px;    line-height: 30px;}
	p{font-size:15px; line-height: 25px;}
	.btn-green{font-size:13px;}
	#about-home .areas .produ p{font-size: 14px; line-height: 22px;}
	#about-home .areas .produ a {font-size: 15px;}
	#bottom-info{ padding-top: 80px; padding-bottom: 80px;}
	
	.container-fluid { padding: 0 8%;}
	.scroll-left{width: 500px;}
	#main-vedio .container-fluid{padding: 0 0%;}
	.css-slider-wrapper{    height: 700px;}
	#main-slider .slider{    height: 700px;}
	#main-slider .logo img{margin-top:30px;}
	
	.bxslider1 .caption1{top: 200px;}

	
	
	#main-meet .box{height:100px;}
	#main-meet .box h5{font-size:18px;}
	#main-meet .box p{font-size:15px;}
	
}

@media only screen and (min-width : 1024px) and (max-width : 1199px){ 
		nav{width:100%;    margin-top: 6px;}
	nav a{padding:11px 9px; font-size:13px;}


	#navbar .nav a { padding: 10px 10px;    font-size: 12px;}
	.navbar-cntnr img {margin-top:13px;}

	.bx-wrapper img{height: auto;}
	#about-home .areas .produ {min-height: 288px; padding: 20px 15px 0px 15px;}
	#about-home .areas .produ a{font-size: 13px;}
	#about-home .areas .produ h2{font-size: 16px;}
	footer h3{font-size: 15px}
	.bx-wrapper .caption1{top:175px;}
	#about-home .areas img {height: auto;}
	#about-home .areas .produ p{font-size:14px; line-height: 22px;}
	p{font-size:15px; line-height:25px;}
	footer ul li a{font-size:14px; line-height: 30px;}
	.ftr p {font-size: 14px;}
	.btn-green{font-size:12px;}
	.top-links a{font-size:14px;}
	#bottom-info i {height: 32.5px; }
	
	
	.container-fluid { padding: 0 8%;}
	.scroll-left{width: 500px;}
	#main-vedio .container-fluid{padding: 0 0%;}

	#main-slider .logo img{margin-top:30px; max-width:130%;}
	#main-news h3{font-size: 24px;}
	#main-news a{width:100%;}
	.scroll-left p{width:180%;}
	#main-vedio {padding: 40px;}
	#main-bmi .input button, html input[type=button], input[type=reset], input[type=submit]{font-size:14px;}
	
	
	#main-meet .box{height:100px;}
	#main-meet .box h5{font-size:18px;}
	#main-meet .box p{font-size:15px;    margin-bottom: 20px;}
	
	.bxslider1 .caption1{top:150px;}
	#main-ser .view a { padding: 10px 14px 18px 10px;}
	#main-ser .view { margin-top: 46px;}
	nav ul ul{top:41px;}
	nav ul ul ul li{top:-41px;}
	#main-slider .logo img{margin-top:23px;}

	
	
	
	
	
	
}

@media only screen and (min-width : 768px) and (max-width : 1023px){ 
	.top-links a{font-size: 11px;}
.areas .col-sm-6{margin-bottom: 30px;}
	#navbar .nav a{padding: 10px 3px; font-size: 14px;}
.btn-green{padding: 8px 12px;font-size: 11px;}
	#navbar .nav a#enquiry{padding: 8px 25px;}
	.top-links a{    padding: 2px 10px}
	.navbar-cntnr{background:#006590; margin-top:15px; padding-top: 0px; padding-bottom: 0px;}
	.navbar-cntnr img {margin-top:15px;}
	.cont a{display:none;}
	.link{font-size:13px;}
	.bx-wrapper img {height: auto;}
	#about-home .areas .produ {min-height: 212px; padding: 20px 15px 0px 15px;}
	#about-home{padding-top: 50px; padding-bottom: 40px}
	#about-home .areas .produ p{font-size:14px;}
	#client-say .box1 img{margin-bottom:20px;}
	#about-home .areas {padding-top: 30px;}
	#bottom-info{padding-top: 60px;    padding-bottom: 50px;}
	footer ul li a {font-size: 14px; line-height: 27px;}
	.ftr p {font-size: 14px;}
	.ftr {padding: 0px 0px 0px;}
	footer h3{font-size:16px;}
	#about-home .areas .produ a {font-size: 15px;}
	
	.navbar-toggle {padding: 8px 14px 3px 14px; margin-right: 0px; margin-top: 43px;}
	.navbar-header {float: right; margin-top: -38px;}
	.navbar-toggle .icon-bar {background: #fff;}
	.navbar-toggle {display: block;}
	.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {max-height: none;}
	
	.navbar-nav>li {float: none; text-align: center; }
	.collapse {display: none}
	#navbar .nav a {color: #252525;padding: 13px 30px; background:#fff;}
	.top-links{display: none}
	#header .te{margin-top:10px;}
	
	
	
	
	.container-fluid { padding: 0 8%;}
	.scroll-left{width: 600px;    height: 56px;}
	#main-vedio .container-fluid{padding: 0 0%;}

	#main-slider .logo img{margin-top:5px; max-width: 180%;}
	#main-news h3{font-size: 30px; text-align: center;}
	#main-news a{width:30%;}
	.scroll-left p{width:180%;}
	#main-vedio {padding: 40px;}
	#main-bmi .input button, html input[type=button], input[type=reset], input[type=submit]{font-size:14px;}
	
	.navbar.navbar-fixed-top.fixed-theme{height: 105px;}
	.owl-theme .owl-nav.disabled + .owl-dots {margin-top: 34px!important}
	#main-vedio a{width: 40%;}
	footer .col-sm-6{height: 235px;}
	
	
	#main-meet .box{height:100px;}
	#main-meet .box h5{font-size:18px;}
	#main-meet .box p{font-size:15px; margin-bottom: 20px;}
	#main-meet h2{margin-bottom: 50px;}
	
	
	.bxslider1 .caption1{top:120px;}
	#main-ser .view{margin-top: 76px;}
	footer{padding:6% 0 16% 0;}
	
	#main-vedio h3{padding-bottom:25px;}	
}
@media only screen and (min-width : 150px) and (max-width : 767px){ 
	.top-links a{font-size: 11px;}
.areas .col-sm-6{margin-bottom: 30px;}
	#navbar .nav a{padding: 10px 3px; font-size: 14px;}
.btn-green{padding: 8px 12px;font-size: 11px;}
	#navbar .nav a#enquiry{padding: 8px 25px;}
	.top-links a{    padding: 2px 10px}
	.navbar-cntnr{background:#006590; margin-top:15px; padding-top: 0px; padding-bottom: 0px;}
	.navbar-cntnr img {margin-top:15px;}
	.cont {padding: 8px 6px 10px 6px; margin-top: 20px;}
	.link{font-size:13px;}
	.bx-wrapper img {height: auto;}
	#about-home .areas .produ {min-height: 212px; padding: 20px 15px 0px 15px;}
	#about-home{padding-top: 50px; padding-bottom: 40px}
	#about-home .areas .produ p{font-size:14px;}
	#client-say .box1 img{margin-bottom:20px;}
	#about-home .areas {padding-top: 30px;}
	#bottom-info{padding-top: 60px;    padding-bottom: 50px;}
	footer ul li a {font-size: 14px; line-height: 27px;}
	.ftr p {font-size: 14px;}
	.ftr {padding: 0px 0px 0px;}
	footer h3{font-size:16px;}
	#about-home .areas .produ a {font-size: 15px;}
	
	.navbar-toggle {padding: 8px 14px 3px 14px; margin-right: 0px; margin-top: 43px;}
	.navbar-header {float: none; margin-top: -38px;}
	.navbar-toggle .icon-bar {background: #fff;}
	.navbar-toggle {display: block;}
	.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {max-height: none;}
	
	.navbar-nav>li {float: none; text-align: center; }
	.collapse {display: none}
	#navbar .nav a {color: #252525;padding: 13px 30px; background:#fff;}
	.top-links{display: none}
	#header .te{margin-top:10px;}
	nav{width:100%;margin-top:0px;margin-left:0px;}
	.cont{margin-top:0px;}
	
	
	
	
	.container-fluid { padding: 0 8%;}
	.scroll-left{width: 350px;    height: 56px;}
	#main-vedio .container-fluid{padding: 0 0%;}

	#main-slider .logo img{margin-top:5px; max-width: 180%;}
	#main-news h3{font-size: 30px; text-align: center;}
	#main-news a{width:30%; margin-top:25px;}
	.scroll-left p{width:180%;}
	#main-vedio {padding: 40px;}
	#main-bmi .input button, html input[type=button], input[type=reset], input[type=submit]{font-size:14px;}
	
	.navbar.navbar-fixed-top.fixed-theme{height: 105px;}
	.owl-theme .owl-nav.disabled + .owl-dots {margin-top: 34px!important}
	#main-vedio a{width: 100%;}
	footer .col-sm-6{height: 235px;}
	#header .taa{display:none;}#header .taa1{display:block; background:##ea2126;}
	
	#main-vedio h2{text-align:center;}
	#main-bmi .input {	margin-top: 25px; margin-bottom: 20px;}
	footer {padding: 12% 0 6% 0; text-align: center;}
	#main-footer{text-align: center;}
	.text-right {text-align: center; margin-top: 15px;}
	
	
	.bxslider1 .caption1{top:95px;left:0px;}
	
	#main-ser .view{margin-bottom:45px;margin-top:40px;}
	#main-ser .view a{margin-left:120px;}
	#main-vedio h3{padding-bottom:25px;}	
	
	footer{padding:6% 0 30% 0;}
	.toggle1 {width:100%; margin-top:0px;}
	
	
	
	}
	
	
@media only screen and (max-width: 375px) {
	.cont {padding: 10px 36px 9px 28px;}
	#header .col-xs-7 {margin-top: -14px;}
	.scroll-left{width: 304px;}
	.scroll-left p {width: 240%;}
	#main-vedio {padding: 20px; padding-bottom:50px; padding-top:50px;}
	.navbar-cntnr{margin-top: 20px;}
	#main-ser .view a{margin-left:100px;}
	.toggle1 {width:100%;}
	
}	
@media only screen and (max-width: 320px) {
	#header .col-xs-7{margin-top:-50px;}
	.btn-green{padding: 7px 11px; }
	.cont {padding: 10px 36px 9px 28px;}
	.navbar-cntnr{margin-top: 55px;}
	.scroll-left{width: 254px;}
	.scroll-left p {width: 300%;}
	#main-vedio {padding: 20px; padding-bottom:50px; padding-top:50px;}
	.navbar-cntnr{margin-top: 55px;}
	#main-news a {width: 70%;}
	.navbar.navbar-fixed-top.fixed-theme{height: 86px;}
	#main-slider .logo img {max-width: 216%;}
	#main-meet h2{margin-bottom: 40px;}
	#main-ser .view a {margin-left:75px;}
	
.toggle1 {width:100%;}
	
}
	
#main-slider h1{background:#ea3a3f; color:#fff; text-transform:uppercase; padding:20px; width:21%; margin:auto;}

.map .container {
    width: 100%;
}
#keepin  h2{text-align:center;color:#006590; margin-top:150px; padding-bottom:100px;}

#keepin .control{ background: #fff;
    border: 1px solid #c6c6c6;
    width: 100%;
    padding: 11px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset;
    font-weight: 400;
    font-size: 14px;
	margin-top:20px;

	}
#keepin .form-control {
    background: #fff;
    border: 1px solid #c6c6c6;
    width: 100%;
    padding: 11px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset;
    font-weight: 400;
    font-size: 14px;
}
#keepin .input-group button.btn {
    border-radius: 0px;
    border: 1px solid #dcdcdc;
    border-left: none;
    padding: 9px 60px;
    margin-top: -14px;
}
#keepin h3 {
   font-size: 30px;
    color: #711318;
   
}
#keepin.file {
    visibility: hidden;
    position: absolute;
    background: #fff;
    border: 1px solid #e8e8e8;
}
#keepin .input-group {
    padding-top: 5px !important;
    border: none;
}
#keepin .form-control[disabled], .content .form-control[readonly], fieldset[disabled] .content .form-control {
    background: #fff;
    border: 1px solid #c6c6c6;
}

#keepin .btn {

    display: block;
    padding: 6px 12px;
    margin-bottom: 100px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 8px 60px;
    background: #ea3a3e;
    color: #fff;    height: 60px;
	margin:auto;
    margin-top: -63px;
	
}
#keepin.btn:hover{ background: #313335; cursor:pointer;}
.pull-right {
    
}

.pull-right{float:none!important;}


#address .container-fluid  {   padding-left: 0px;  padding-right: 0px; }
#address .box {padding:70px 75px 75px 75px ;background:#edeff0; height:255px; border-right: 5px solid #fff;     margin-top: 130px; cursor:pointer; }
#address .box:hover{background:#ea3a3e;}
#address .box1 {padding:70px 75px 75px 75px ;background:#edeff0; height:255px;     margin-top: 130px; cursor:pointer; }
#address .box1:hover{background:#ea3a3e; }
#address h3{text-align:center;color:#00628f; cursor:pointer;}
#address :hover>h3{color:#fff;}
#address h5{text-align:center; margin-top:10px; color:#313335; cursor:pointer;}
#address :hover>h5{color:#fff;}

#address .col-md-4{padding-right: 0px; padding-left: 0px;}
#address .row {margin-right: 0px; margin-left: 0px;}
#address .mail{background:#edeff0; padding:20px 20px 20px 20px; margin-top:6px;}
#address .mail h2{font-size:18px; color:#3b3b3b; text-align:center; font-weight:400;}
#address .mail span{font-weight:800; margin-left:10px;}

#BMI {background:url(../images/calculate.png)  center top no-repeat;  height:290px;}
#BMI h2{ font-size:36px;text-align:center; color:#fff; margin-top:60px;     padding-bottom: 50px;}

#BMI .control{ background: #fff;
    border: 1px solid #c6c6c6;
    width: 100%;
    padding: 11px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset;
    font-weight: 400;
    font-size: 14px;
	margin:auto;
	display:block;

	}
#BMI .form-control {
    background: #fff;
    border: 1px solid #c6c6c6;
    width: 100%;
    padding: 11px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 0;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset;
    font-weight: 400;
    font-size: 14px;
	margin:auto;
	display:block;
}


#BMI .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 8px 60px;
    background: #ea3a3e;
color: #fff;    height: 60px;}


















@media only screen and (min-width : 1920px) and (max-width : 2559px){ }



@media only screen and (min-width : 1440px) and (max-width : 1599px){
	#main-slider h1{width:25%;}
	
	
	
} 


@media only screen and (min-width : 1366px) and (max-width : 1439px){ }

@media only screen and (min-width : 1200px) and (max-width : 1365px){ }


@media only screen and (min-width : 1024px) and (max-width : 1199px){
#main-slider h1{width:34%;}
	}


@media only screen and (min-width : 768px) and (max-width : 1023px){
	#address .box{    padding: 45px 0px 0px 6px;}
	#address .box1{    padding: 45px 0px 0px 6px;}
	#main-slider h1{width: 43%;}
	
	#keepin h2{    padding-bottom: 28px; margin-top:70px;}
	#address .box{margin-top: 60px;}
	#address .box1{margin-top: 60px;}
	#address h3 {font-size:22px;}
	
	
}


@media only screen and (min-width : 150px) and (max-width : 767px){
#main-slider h1{width:75%;}
#address .box{    padding: 49px 75px 75px 75px;}
#address .mail h2{    font-size: 13px;}
#main-slider h1{width:93% ;margin-top:53px; padding:5px;font-size:27px;}
#keepin h2{    padding-bottom: 30px;}
#address .box{    margin-top: 63px;}
	#address .box1{    margin-top: 63px;}

	}


@media only screen and (max-width: 375px) {
	#keepin h2{padding-bottom: 30px;}
	#address .box{    margin-top: 63px;}
	#address .box1{    margin-top: 63px;}
	#main-slider h1{margin-top:41px; font-size:25px; width:91%;}
	
	
}


@media only screen and (max-width: 320px) {
	#keepin h2{padding-bottom: 36px;}
	#address .box{margin-top: 39px;}
	#address .box1{margin-top: 39px;}
	#address .box{    padding: 31px 75px 75px 75px;}
	#address h3{font-size:20px;}
	#main-slider h1 {margin-top: 36px;width: 90%; font-size:20px;}
}


