@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* CSS Document */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/*template css*/
@font-face {
    font-family: 'passagerregular';
    src: url('../fonts/passager-webfont.woff2') format('woff2'),
         url('../fonts/passager-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
*{
	margin:0;
	padding:0;
}
img{
	max-width:100%;
	height:auto;
	border:none;
}
body, html{
	height:100%;
	margin:0;
}
.head{
	background-color:#FFF;
	background-size:100%;
	position:fixed;
	width:100%;
	z-index:9999;
	height:109px;
	transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-webkit--transition:all 0.5s ease-in-out;
	top:0;
}
#logo{
	padding:10px 0;
	transition:width 0.5s ease-in-out;
	-moz-transition:width 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-webkit--transition:all 0.5s ease-in-out;
	width:100%;
}

.head.scroll #logo{
	width:50%;
	
	
}
.head.scroll {
	height:60px;
	transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-webkit--transition:all 0.5s ease-in-out;
	z-index:9999;
	border-bottom:1px solid #404040;
	
}
.head.scroll .main-menu > li{
	padding:20px 30px;
}
.head.scroll .main-menu > li > a{
	font-size:16px;
	transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-webkit--transition:all 0.5s ease-in-out;
}

.main-menu{
	margin-left:5%;
}
.main-menu > li{
	list-style:none;
	display:inline-block;
	text-align:center;
	padding:40px 45px;
	position:relative;
}
.main-menu > li > a{
	font-family: 'Work Sans', sans-serif;
	font-size:20px;
	color:#588BAE;
/*	text-transform:uppercase;*/
	transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
	-webkit--transition:all 0.5s ease-in-out;
	text-decoration:none;
}
.main-menu > li > a:hover, .main-menu > li > a.active, .sub-menu li a:hover {
	color:#fda123;
}
a.effect-underline:after, li.effect-underline:after {
	content: '';
  position: absolute;
  left: -45%;
  display: inline-block;
  height: 1em;
  width: 250%;
  border-bottom: 2px solid #4C516D;
  margin-top: 34px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
.head.scroll li.effect-underline:after {
	margin-top:9px;
}
.head.scroll .sub-menu > li > a{
	font-size:12px;
	padding-left:0;
}
a.effect-underline:hover:after, li.effect-underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
a.effect-underline:hover, li.effect-underline:hover{
	color:#4C516D;
}
li.drop-menu{
	position:relative;
}
.sub-menu{
	display:none;
	position:absolute;
	top:100%;
	left:-45%;
	width:250%;
	content:"";
	background-color:#FFF;
	padding:20px 0;
}
.sub-menu li{
	display:block;
	padding:10px;
	list-style:none;
	text-align:left!important;
}
.sub-menu li a{
	text-decoration:none;
	color:#333;
	font-family: 'Work Sans', sans-serif;
	font-size:14px;
	text-align:left;
	padding-left:30px;
	line-height:24px;
	color:#588BAE;
}
li.drop-menu:hover .sub-menu{
	display:block;
}
.banner-block{
	padding-top:75px;
}
/*.image-block{
	position:relative;
	background-image:url(../images/banner-pic.jpg);
	background-position: center;
background-repeat: no-repeat;
background-size: cover;
height:100%;
padding-top:75px;
}*/

.slick-initialized .slick-slide{
	height:100vh;
}
.block1{
	background-image:url(../images/banner-pic1.jpg);
	background-position: top center;
background-repeat: no-repeat;
background-size: cover;
height:100%;
position:relative;
}
.block2{
	background-image:url(../images/banner-pic3.jpg);
	background-position: top center;
background-repeat: no-repeat;
background-size: cover;
height:100%;
position:relative;
}.block3{
	background-image:url(../images/banner-pic2.jpg);
	background-position: top center;
background-repeat: no-repeat;
background-size: cover;
height:100%;
position:relative;
}
.block4{
	background-image:url(../images/banner-pic4.jpg);
	background-position:top center;
	background-repeat:no-repeat;
	background-size:cover;
	height:100%;
	position:relative;
}
.text-block p span{
	font-size:80px;
	font-weight:bold;
}
.text-block{
	position:absolute;
	content:"";
	top:25%;
	width:70%;
	margin:0 auto;
	left:15%;
	/*background-color:rgba(0,0,0,0.5);*/
	padding:30px;
}

.text-block p, .text-block h3{
	font-size:70px;
	color:#FFF;
	line-height:100px;
	/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Abel', sans-serif;
	font-weight:800;
	text-align:center;
}
.text-block p{
	font-size:50px;
	padding-top:40px;
}
.text-block h3{
	 font-family: 'passagerregular';
	 line-height:100px;
	 color:#fda123;
	 letter-spacing:5px;
}
.arrow-block{
	position:absolute;
	left:48%;
	bottom:70px;
	content:"";
	animation:move 1s infinite;
	cursor:pointer;
}
@keyframes move{
	0%{

		bottom:70px;

	}

	50%{

		bottom:60px;

	}

	100%{

		bottom:70px;

	}
}
		
.about-block{
	/*padding:30px 0;*/
	margin:0 auto;
	width:50%;
	float:left;
}
.about-block h3, .app-block h3, .form-block h3{
	font-size:28px;
	line-height:48px;
	text-align:center;
	font-family: 'Abel', sans-serif;
	color:#404040;
	position:relative;
}
.about-block h3:after, .form-block h3:after{
	position:absolute;
	content:"";
	border-bottom:4px solid #588BAE;
	width:5%;
	top:100%;
	left:47%;
}
.about-block p{
	font-size:16px;
	line-height:24px;
	font-family:'PT Sans', sans-serif;
	width:77%;
	margin:40px auto;
	text-align:justify;
	color:#414041;
	
}
.box-block{
	width:60%;
	margin:100px auto 0;
	padding-top:50px;
}

.box-block ul{
	margin-top:-75px;
}
.box-block ul li{
	display:inline-block;
	margin:6px 0;
	width:100%;
}
.title-block ul li{
	margin:0;
	color:#FFF;
	font-weight:600;
}
.box-block ul li a{
	font-family:'Roboto', sans-serif;
	font-size:16px;
	font-weight:600;
}
.box-block ul li a i{
	visibility:hidden;
	transition:all 1s ease-in-out;
}
.box-block ul li a:hover{
	padding-right:1px;
}
.box-block ul li a:hover i{
	visibility:visible;
}
.box-block h6, .box-block h2, .box-block span{
	    text-align: center;
    color: #FFF;
    font-size: 21px;
    line-height:52px;
	font-family:'Open Sans', sans-serif;
	
}
.box-block h3{
	color:#fda123;
}
.box-block h2, .box-block span{
text-align:left;
margin-top:50px;

}
.box-block span{
	font-size:21px;
}
.below{
	margin-top:100px;
}
.below ul li{
	width:100%;
}
.below h2{
	text-align:center;
	margin-top:30px;
}
.left{
	padding-left:10%;
}
.app-block{
	background-image:url(../images/app.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	background-attachment:fixed;
	
}


.app-block{
	padding:40px 0;
}
.app-block p{
	font-size:23px;
	line-height:36px;
	color:#FFF;
	font-family:'Roboto', sans-serif;
	width:100%;
	text-align:center;
	margin-top:20px;
}
.app-block h3{
	
	font-family:"Passager", sans-serif;
	font-size:38px;
	letter-spacing:3px;

}
.app-block a{
	background-color:rgba(253,161,35,0.9);
	padding:20px 10px;
	color:#FFF;
	font-family:'Roboto', sans-serif;;
	font-size:18px;
	display:block;
	text-align:center;
	/*width:15%;*/
	margin:0 auto;
/*	border-radius:25px;*/
	text-decoration:none;
	transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	text-transform:uppercase;
}
.app-block .icon{
	visibility:hidden;
	transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	
	font-size:20px;
}
.app-block a:hover .icon{
	visibility:visible;
	transform:translateX(10px);
	-o-transform:translateX(10px);
	-webkit-transform:translateX(10px);
	-moz-transform:translateX(10px);
	-ms-transform:translateX(10px);
}
/*.app-block a:hover{
	padding-right:25px;
}
*/.app-block h5{
	text-align: center;
font-size: 46px;
line-height: 94px;
margin-top: 20px;
color: white;
}
/*.contact-block{
	width:100%;
	height:auto;
	}
*/.map-block{
	float:left;
	width:50%;
}
.form-block{
	background-color:#171717;
	width:50%;
	float:right;
	/*max-height:450px;
	min-height:450px;*/
}
.form-block h3{
	color:#FFF;
	margin:40px 0;
}
.about-block h3{
	margin:20px 0;
}
.contact-block{
	display:flex;
}
.hi{
	flex:1;
}
.enq-form form{
	width:80%;
	margin:0 auto;
}
.enq-form form input{
	width: 49%;
padding: 16px 10px;
background: none;
border: 1px solid grey;
margin: 18px 1px;
color: #fff;
}
.enq-form form textarea{
	background: none;
resize: none;
border: 1px solid grey;
width: 100%;
color: #fff;
padding:20px;
}
.contact-form form textarea{
color:#404140;
}
.sub{
	display: block;
padding: 16px;
text-align: center;
width: 50%;
background: rgba(253,161,35,0.9);
border: none;
color: #FFF;
text-transform: uppercase;
margin: 29px auto;
}
/*.add-block{
	position:absolute;
	content:"";
	top:25%;
	left:65%;
	width:30%;
	padding:20px;
	background-color:rgba(255,153,0,0.9);
}
.add-block p{
	font-size:16px;
	color:#FFF;
	font-family:'Open Sans', sans-serif;
	line-height:28px;
	width:90%;
	margin:0 auto;
}
.add-block p a{
	text-decoration:none;
	color:#FFF;
}
*/
.contact-block{
	overflow:hidden;
}
footer{
	
	background-color: #588BAE;
	font-family:'Open Sans', sans-serif;
	
}
footer p{
	margin:0;
	
	font-size:14px;
	
	color:#FFF;
	line-height:36px;
}
.footer-menu-block{
	width:100%;
	margin:30px auto;
}
footer h3{
	font-size:24px;
	margin:20px 0;
	font-family: 'Abel', sans-serif;
	font-weight:700;
	color:#FFF;
	position:relative;
	line-height:58px;
}
footer h3:after{
		position:absolute;
	content:"";
	border-bottom:4px solid #FFF;
	width:1em;
	top:100%;
	left:0%;
}
.footer-menu li{
	list-style:none;
	padding:10px 5px;
	
}
.footer-menu li a{
	text-decoration:none;
	color:#FFF;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
}
.copy-block{
	background-color:#333;
	overflow:hidden;
}
.copy-block p{
	text-align:center;
	color:#FFF;
	font-size:12px;
	padding:5px 0;
}
.to-top {
	position: fixed;
	display: none;
	z-index: 100;
	right: 3%;
	font-size: 30px;
	padding: 3px 5px;
	opacity: 0.8;
	bottom: 30px;
}
.scrolltop a.active, .scrolltop a:focus {
	outline: none;
}
/*inner page styles*/
.prod-head{
	padding-top:110px;
}
.pic-block{
	width:60%;
	margin:50px auto;
}

.pic-block h3{
	position:relative;
}
.sub-block{
	position:absolute;
	width:75%;
	left:5%;
	top:20%;
}
.sub-block p{
	color:#FFF;
	text-align:center;
	line-height:44px;
	font-size:20px;
	font-family:'Open Sans', sans-serif;
	
}
.sub-block a{
	text-decoration:none;
	font-family:'Work Sans', sans-serif;
	display:block;
	text-align:center;
	color:#000;
	margin-top:20px;
	font-size:22px;
	padding:8px 0;
	background:rgba(255,255,255,0.6);
	border:1px solid transparent;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-ms-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
}
.sub-block p strong{
	font-size:28px;
}
.sub-block a:hover, .sub-block a.active{
	background:transparent;
	border:1px solid #FFF;
	color:#FFF;
}
.link-block{
	margin:50px 0;
	border-bottom:1px dotted #414041;
	padding-bottom:30px;
}
.link-block a{
	text-decoration:none;
	color:#414041;
	font-family:'Work Sans', sans-serif;
}
.link-block i{
	color:#414041;
	display:inline-block;
	padding:0 10px 0 10px;
}
.link-block a:hover, .link-block a.active{
	color:#fda123;
}
.content-block{
	width:80%;
	margin:30px auto;
}
.content-block h4{
	font-size:28px;
	line-height:36px;
	color:#588BAE;
	font-family:'Open Sans', sans-serif;
	margin-bottom:40px;
	
}
.content-block p{
	font-family:'Work Sans', sans-serif;
	font-size:16px;
	line-height:32px;
}
.content-block span{
	width:67%;
	margin:85px auto;
	display:block;
	
}
.cont-form-block{
	width:90%;
	margin:0 auto;
	background:none;
}
.cont-form-block .enq-form input{
	color:#414041;
}
.cont-form-block h3{
	color:#588BAE;
}
.cont-form-block p{
	font-size:18px;
	line-height:48px;
	margin-top:30px;
	font-family:"Work Sans", sans-serif;
	color:#414041;
}
.cont-form-block p a{
	text-decoration:none;
	color:#414041;
}
.fa-mobile-phone{
	font-size:24px;
}


.img-overlay {
    position: relative;
    overflow: hidden;
}
.overlay-2 {
    position: absolute;
    width: 0px;
    height: 100%;
   /* background-color: rgba(64,64,64,0.9);*/
    left: -100%;
    top: 0;
    transition: 1s;
    opacity: .9;
}
.pic-block{
	width:75%;
	margin:100px auto;
	padding-left:5%;
}
.pic-block .row{
	margin:60px 0;
}
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

@media only screen and (min-width : 1350px){
	.container{
		width:1300px;
	}
}
@media only screen and (min-width : 979px) and (max-width:1099px){
	.container{
		width:970px;
	}
	.head{
		height:5em;
	}
	.head.scroll{
		height:4.5em;
	}
	.head.scroll #logo{
		width:90%;
	}
	.main-menu > li > a{
		font-size:16px;
	}
	.head.scroll .main-menu > li{
		padding:30px;
	}
	.main-menu > li{
		padding:30px;
	}
	.box-block ul li a{
		font-size:14px;
		width:100%;
	}
	.app-block h3{
		font-size:33px;
	}
	.enq-form form input{
		width:48%;
	}
	.form-block{
		min-height:450px;
	}
	.main-menu > li{
		padding:30px;
	}
	.text-block p{
		font-size:36px;
	}
	.arrow-block{
		bottom:75px;
	}
	@keyframes move{
	0%{

		bottom:75px;

	}

	50%{

		bottom:65px;

	}

	100%{

		bottom:75px;

	}
}
.about-block h3::after, .app-block h3::after, .social-block p::after{
	left:48%;
}
.app-block a{
	width:18%;
	font-size:16px;
}
.app-block p, .about-block p{
	font-size:16px;
}
.add-block p{
	font-size:14px;
	width:100%;
}
footer p{
	font-size:11px;
}
.below h2{
	margin-top:-26px;
}
}
@media only screen and (min-width : 1100px) and (max-width:1199px){
	.container{
		width:1080px;
	}
	.main-menu > li{
		padding:30px;
	}
	
.add-block p{
	font-size:16px;
	width:100%;
}
.content-block p{
	font-size:14px;
}
}
@media only screen and (min-width : 768px) and (max-width : 978px){
	.head{
		height:50px;
	}
	.head.scroll{
		height:40px;
	}
	.main-menu > li{
		padding:15px;
	}
	.main-menu > li > a{
		font-size:16px;
	}
	.head.scroll .main-menu > li{
		padding:9px 15px;
	}
	.head.scroll .main-menu > li > a{
		font-size:12px;
	}
	.box-block{
		width:85%;
	}
	.below h2{
		margin-top:-16px;
	}
	.about-block p{
		font-size:14px;
		line-height:28px;
	}
	.text-block p{
		font-size:36px;
		line-height:58px;
		padding-top:0;
	}
	a.effect-underline::after, li.effect-underline::after{
		margin-top:5px;
		width:300%;
	}
	.sub-menu{
		width:300%;
	}
	.sub-menu li a{
		font-size:10px;
		padding-left:4px;
	}
	.sub-menu li{
		padding:5px;
	}
	.head.scroll li.effect-underline::after{
		margin-top:0;
	}
	.head.scroll .sub-menu{
		width:380%;
	}
	.head.scroll a.effect-underline::after, li.effect-underline::after{
		width:380%;
	}
	footer h3::after{
		width:1em;
	}
	footer h3{
		font-size:20px;
	}
	.footer-menu li a{
		font-size:10px;
	}
	footer p{
		font-size:9px;
	}
.content-block{
	margin:0 auto;
}
.content-block h4{
	font-size:19px;
	line-height:30px;
	margin-bottom:20px;
}
.content-block p{
	font-size:12px;
}
.enq-form form input{
width:100%;
}
.prod-head{
padding-top:50px;
}
.content-block{
width:100%;
}
}
@media only screen and (max-width : 767px){
	.logo-block {
	float: left;
	width:50%;
	
}
#logo{
	width:10em;
}
.head{
	height:60px;
}
.head.scroll{
	height:45px;
}
/*	mobile menu styles*/

.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	right: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
}
.overlay-content {
	position: relative;
	top: 10%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}
.overlay a {
	padding: 12px 8px 12px 30px;
	text-decoration: none;
	font-size: 16px;
	color: #FFF;
	display: block;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	text-align: left;
}
.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}
.overlay .closebtn {
	position: absolute;
	top: 30px;
	right: 35px;
	font-size: 20px;
}
.menu-toggle {
	display: block;
	/*margin-top:52%;*/

	font-size: 28px;
	float:right;
	margin-right:5%;
	margin-top:-10px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.mob-nav {
	/*float:right;*/

	margin-left: 80%;
	margin-top: 25px;
}
.head.scroll .menu-toggle{
font-size: 20px;
transition: all 0.3s ease;
}
.head.scroll .mob-nav {
	margin-top:17px;
	}
	.head.scroll #logo{
		padding-bottom:0;
		width:5em;
	}
	.text-block p{
		font-size:28px;
		line-height:52px;
	}
	.about-block{
		width:100%;
	}
	.about-block h3, .app-block h3{
		font-size:24px;
	}
	.about-block p, .app-block p{
		font-size:16px;
		line-height:32px;
		width:90%;
		margin:20px auto;
	}
	.about-block h3::after, .app-block h3::after, .social-block p::after {
		left:46%;
		}
		.app-block a{
			font-size:16px;
			width:75%;
		}
		.add-block{
			width:100%;
			margin-top:-2px;
			position:static;
		}
		.social{
			width:30%;
			padding:30px 0 20px;
		}
		.copy p{
			font-size:10px;
			padding:0;
		}
		.social i
		{
			font-size:20px;
			width:31%;
		}
		.about-block{
			width:100%;
		}
		.contact-block{
			display:block;
		}
		.form-block{
			width:100%;
			min-height:100%;
			max-height:100%;		}
		.enq-form{
			width:100%;
		}
		.enq-form form input, .enq-form form textarea{
			width:100%;
		}
		.prod-head{
			padding-top:64px;
		}
		.link-block{
			margin:15px 0;
			padding-bottom:15px;
		}
		.link-block a{
			font-size:10px;
		}
		.link-block i{
			font-size:10px;
			padding:0 2px 0 2px;
		}
		.content-block h4{
			font-size:14px;
			line-height:24px;
			margin-bottom:20px;
		}
		.content-block{
			width:95%;
		}
		.content-block p{
			font-size:12px;
			line-height:24px;
		}
		.content-block span{
			margin:25px auto;
		}
		.footer-menu-block{
			margin:0 auto;
		}
		footer h3{
			font-size:18px;
		}
		.footer-menu li a{
			font-size:10px;
		}
		footer p{
			font-size:12px;
		}
		.overlay-2 .text{
			margin:30% auto;
		}
		.text h3{
			font-size: 1em;
			margin-bottom: 15px;
			line-height: 24px;
			}
			.text a{
				font-size: 1em;
				padding: 5px;
			}
			.effect{
				margin-bottom:20px;
			}
			.pic-block .row{
				margin:0;
			}
			.pic-block{
				margin:40px auto;
			}
			
}
@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media only screen and (max-width:500px)
{
	.text-block p{
		font-size:22px;
		line-height:40px;
	}