/*common css*/
* {
    margin: 0; padding:0 ;
}
body{  font-family: 'Ubuntu', sans-serif; color: #484848;  }
a{ text-decoration: none;  transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease; }
a:hover, a:focus{ outline: none; }
img{border: none; max-width: 100%;  transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;}
ul{list-style: none;}
p{
    font-size: 16px;
  }
  /* header */
  .wrapper{
	width:100%;
	height:auto;
	padding: 0;
	margin:0;
	overflow:hidden;
	}
header{
	width:100%;
	height:110px;
	color: #fff;
	background:#ffffff;
	line-height:110px;
	position: fixed;
	top: 0;
	z-index: 99;
	transition: all 0.5s ease;
    border-bottom: 3px solid rgb(0, 174, 239);
	}
#logo{
	
	font-size:26px;
	float: left;
    width: 138px;
    position: relative;
    top: -4px;
}

header.stivky{
	background:#ffffff;
	height:100px;
	line-height:100px;
	box-shadow: 0px 2px 10px #c7c7c7;
}
header .stivky #logo{
	font-size:22px;
}
#scrollToTop{
	font-size:3em;
	color: #888b8c;
	position:fixed;
	right: 40px;
	bottom:10%;
	transition: all 0.5s ease;
	
}
#scrollToTop:hover{
	transform: scale(1.1,1.1);
	color: rgb(0, 174, 239);
}
.banner{
	margin-top:7em;
}
.banner .carousel-control.left{
	background: none;
}
.banner .carousel-control.right{
	background: none;
}
.banner .carousel-indicators .active{
	background: #fff;
}
.banner .carousel-indicators li{
	background: #5f84b8;
	border:none;
}
.carousel-indicators {
    left: 73%;
}
.counter
{
	padding:5em 0 0 0;
    text-align: center;
}
.counter a{
	text-decoration: none;
}
.employees,.customer,.design,.order
{
   /* margin-top: 70px;
    margin-bottom: 70px;*/
}
.counter-count
{
    font-size: 54px;
    font-weight: 800;
    position: relative;
   color: #00aeef;
    text-align: center;
    line-height: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 10px;
    transition: 0.5 ease;
    -webkit-transition: 0.5 ease;
    -moz-transition: 0.5 ease;

}
.counter span{
	display: block;
	width: 40px;
	height: 2px;
	background: #00aeef;
	position: relative;
	top: -20px;
	left: 0;
	right: 0;
	margin: auto;
}
.counter-count:hover{
 color: #333;
}
.employee-p,.customer-p,.order-p,.design-p
{
    font-size: 22px;
    color: #4f4f4f;
    line-height: 34px;
}
.counterinner{
	border-bottom: 1px solid #dbdbdb;
	padding-bottom: 30px;
}
.product{
	padding: 4em 0;
}
.heading h1{
	 margin: 0;
	 font-family: "Josefin Sans", sans-serif;
	 text-transform: uppercase;
	 color: #1b1b1b;
	 text-align: center;
	 font-size: 30px;
	 font-weight: 600;
	 position: relative;
}
.heading h1:after{
	content: '';
	position: absolute;
	width: 80px;
	height: 2px;
	background: #00aeef;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
}
.wrap
{
  margin:50px auto 0 auto;
  width:100%;
  display:flex;
  align-items:space-around;
  max-width:1200px;
}
.tile
{
  width:380px;
  height:300px;
  margin:10px;
  background-color:#00aeef;
  display:inline-block;
  background-size:cover;
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
  overflow:hidden;
  color:white;
  font-family:'Roboto'; 
}
.tile img
{
  height:100%;
  width:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
/*z-index:99; */
  position:absolute;
  padding:15px 30px;
  height:calc(100% - 60px);
}
.tile h1
{
  font-weight:300;
  font-size: 28px;
  margin:0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.tile h2
{
  font-weight:100;
  margin:20px 0 0 0;
  font-style:italic;
   transform: translateX(200px);
}
.tile p
{
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
/*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
}
.animate-text
{
  opacity:0;
  transition: all 0.6s ease-in-out;
}
.tile:hover
{
/*   background-color:#99aeff; */
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  transform:scale(1.05);
}
.tile:hover img
{
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
}
.dots
{
  position:absolute;
  top:200px;
  left:30px;
  margin: 0 auto;
  width:130px;
  height:40px;
  color:currentColor;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-around;
  background: none;
  border-radius: 30px;
  border:2px solid #fff;
  transform: translateX(-200px);
  transition-delay: 0.2s;
   transition: 0.5 ease;
    -webkit-transition: 0.5 ease;
    -moz-transition: 0.5 ease;
}
.dots a{
	color: #fff;
	text-decoration: none;
}
.dots:hover{
	background: #fff;
	text-decoration: none;
}
.dots:hover a{
		color: #333;
}
.dots span
{
    width: 5px;
    height:5px;
    background-color: currentColor;
    border-radius: 50%;
    display:block;
  opacity:0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
 
}

.tile:hover span
{
  opacity:1;
  transform:translateY(0px);
}

.dots span:nth-child(1)
{
   transition-delay: 0.05s;
}
.dots span:nth-child(2)
{
   transition-delay: 0.1s;
}
.dots span:nth-child(3)
{
   transition-delay: 0.15s;
}


@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}
@media (max-width: 1000px) {
	.links {
    padding-left: 1% !important;
		margin-top:30px;
		margin-bottom:30px;
}
}

.button{
	margin-top: 3em;
	text-align: center;
}
.button a button{
	width: 300px;
	height: 50px;
	font-size: 22px;
	color: #000;
	text-transform: uppercase;	
	background: #fff;
	border:1px solid #2b9dd4;
	transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	position: relative;
}
.button a button:hover{
	background: #2b9dd4;
	color: #fff;
}
.button a button:after{
	content: '';
	position: absolute;
	border:1px solid #2b9dd4;
	width: 101%;
	height: 100%;
	left: 5px;
	top: 3px;
}
.button a button:hover:after{
	display: none;
	transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
}
.info{
	background: #262628;
	padding: 4em 0;
}
.info .heading h1{
	color: #fff;
}
.infobox{
	text-align: center;
	margin-top: 50px;
}
.infobox img{
	width: 110px;
	height: auto;
	transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	border:2px dashed #ccc;
	padding: 10px;
}
.infobox:hover img{
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  transform: scaleX(-1);
}
.infobox h2{
	margin:0; 
	color: #fff;
	font-family: "Josefin Sans", sans-serif;
	text-transform: uppercase;
	font-size: 22px;
	line-height: 32px;
	padding-top: 30px;
	transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
}
.infobox:hover h2{
	color: #2b9dd4;
}
.conntect{
	padding: 4em 0;
		background:
#f1f2f3 url(../images/map-contact-bg.png) no-repeat center center;
min-height: 600px;
}

.conntect-form form {
	text-align: center;
	margin-top: 3em;
}
.conntect-form form p{
	padding-bottom: 30px;
}
.conntect-form form input{
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #ccc;
	box-shadow: none;
	position: relative;
	background: none;
	height: 45px;
	margin-bottom:2em!important;
}
.conntect-form form input:focus{
	box-shadow: none;
	border: none;
	border-bottom: 1px solid #000;
}
.conntect-form form input:before{
	content: '';
	position: absolute;
	width: 1px;
	height: 5px;
	background: #ccc;
	left: 0;
}
.conntect-form form input::placeholder{
	color: #000!important;
	font-family: "Josefin Sans", sans-serif;
}
.conntect-form form textarea{
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #ccc;
	box-shadow: none;
	background: none;
}
.conntect-form form textarea:focus{
	box-shadow: none;
	border: none;
	border-bottom: 1px solid #000;
}
.conntect-form form textarea:before{
	content: '';
	position: absolute;
	width: 1px;
	height: 5px;
	background: #ccc;
	left: 0;
}
.conntect-form form textarea::placeholder{
	color: #000!important;
	font-family: "Josefin Sans", sans-serif;
}
.conntect-form form button{

}
.button a button.submit{
	width: 140px;
}
footer{
	background: #c7c7c7;
	padding:4em 0 0 0;
}
.footer-top{
    border-bottom: 1px solid #303030; 
    padding-bottom: 2em;
}

.footerbox #logo {
	font-size: 25px;
	color: #fff;
	width: 180px;
	padding-bottom: 20px;
   
}

.footerbox p{
	font-size: 14px;
	color:#5d5d5d;
     clear: both;
	line-height:26px;
}
.links{
    padding-left: 25%;
}
.social-icon{
	margin-top:10px;
}
.social-icon ul{
	margin-bottom: 0;
	padding-bottom: 0;
}
.social-icon ul li{
	display: inline-block;
	height: 35px;
	line-height: 35px;
	width: 35px;
	text-align: center;
	border: 1px solid #999;
	border-radius: 100%;
	margin-right: 10px;
}
.social-icon i{
	font-size: 18px;
	color: #999;
}
.footerbox h2{
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    color: #373737;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.8em;
}
.footerbox h2:after{
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background:#00aeef;
    bottom: -15px;
    left: 0;
    right: 0;
}
.footerbox ul li a{
   font-size: 14px;
    color:#5d5d5d;
    line-height: 24px;
    text-decoration: none;
    transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
}
.footerbox ul li a:hover{
    color: #009af3;
}
.addressfott p{
    position: relative;
    padding-left: 35px;
    line-height: 35px;
}
.addressfott p i{
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    line-height: 22px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #ccc;
    font-size: 12px;
}
.addressfott p a{
     color:#5d5d5d;
    text-decoration: none;
}
.addressfott p a:hover{
    color: #009af3;
}
.footer-bottom{
    padding: 2em 0;
}
.footer-bottom p{
    text-align: center;
    font-weight: 300;
    margin-bottom: 0;
    font-size: 14px;
     color: #666;
}
.footer-bottom p a{
   color: #666;
    text-decoration: none;
}
.bannerinner{
    background: url(../images/inner-banner.jpg);
    height: 300px;
}
.bannerabout{
    background: url(../images/about-banner-pic.jpg);
    height: 300px;
}
.bread{
    padding-top:170px;
}
.bread ul li{
    display:inline;
     color: #fff;
     font-size: 22px;
     font-family: "Josefin Sans", sans-serif;
}
.bread ul li a{
    color: #fff;
   
}
.bread ul li i{
    color: #fff;
    font-size: 11px;
    margin: 0 10px;
}
.bread ul li a{
    color: #fff;
}
.about{
    padding: 4em 0 0 0;
}
.about h1{
    margin-bottom:1.2em;
    font-size: 38px;
    font-weight: 800;
     font-family: "Josefin Sans", sans-serif;
}
.about p{
    line-height: 32px;
    color: #1b1b1b;
}
.philosophy{
    height:420px;
    background: url(../images/visionbg.jpg) no-repeat;
}
.philosophy .heading h1{
    color: #fff;
     padding-left: 55px;
     font-size: 34px;
   
}
.philosophy .heading h1:after{
    left: 55px;
    margin: 0;
}
.philosophy p{
    color: #fff;
    padding-right: 50px;
    padding-left: 55px;
}
.philosophy h4{
    margin: 0;
    color: #fff;
    font-weight: 600;
    padding-top:20px;
    padding-bottom:10px;
    text-transform: uppercase;
     font-family: "Josefin Sans", sans-serif;
    padding-left: 55px;
}
 .contactbanner{
    background: url(../images/contact-banner-pic.jpg);
    height: 300px;
}
.contactpage h3{
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    color: #282828;
}
.enqpage{
    padding-top: 10em;
  
}
.enqpage form{
     width: 75%;
    margin: auto;
}

.image11 img{
	    width: 100%;
    background: #438dbd;
    padding: 5px;
}
.image11 img:hover{
	 background: #333;
}

.til2  {
        background: #262628;
    padding: 10px;
    text-align: center;
}
.til2 a{
	color:#fff;
	font-size:20px;
	font-weight:500;
	text-decoration:none;
}
.til2:hover{
	background:#388ac0;
	transition:0.5s ease;
}

.tile1 {
    
}
