/* STANDARD CSS */

body{
	padding: 0px;
	margin: 0px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

body *{
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}	

/* FONTS */

h1{
	font-weight: 700;
	font-size: 32px;
	color: #ff5151;
	margin: 0px;
	margin-bottom: 20px;
}

h2{
	font-weight: 800;
	font-size: 25px;
	color: #666666;
	margin: 0px;
	margin-bottom: 20px;
}

h3{
	font-weight: 700;
	font-size: 18px;
	color: #666666;
	margin: 0px;
}


p{
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	margin-top: 0px;
	line-height: 22px;
}

p.intro-para{
	color: #000;
}

/* CONTAINERS */

.container-main{
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}

.box100{
	float: left;
	width: 100%;
}

.box50{
	float: left;
	width: 50%;
}

.box33{
	float: left;
	width: 33.3%;
}

.box25{
	float: left;
	width: 25%;
}

.box20{
	float: left;
	width: 20%;
}

.section-pad{
	padding-top: 50px;
	padding-bottom: 50px;
}

.background-block{
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    padding-top: 75px;
    padding-bottom: 75px;
}

.center{
	text-align: center;
}

/* from elements */

input{
	float: left;
	width: 100%;
	border: 1px solid #cfcfcf;
	background-color: #fff;
	padding: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 16px;
	color: #777777;
	font-family: 'Open Sans', sans-serif;
	-webkit-transition: .2s;
    transition: .2s;
}

input:hover{
	border: 1px solid #a9a9a9;}

input:focus{
	border: 1px solid #a9a9a9;}

input.btn{
	background: #ff5151;
}

select{
	width: 100%;
	float: left;
	border: 1px solid #cfcfcf;
	background-color: #fff;
	padding: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: 'Oxygen', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #000;
}


textarea{
	float: left;
	width: 100%;
	min-height: 200px;
	border: 1px solid #cfcfcf;
	background-color: #fff;
	padding: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-weight: 400;
	font-size: 16px;
	color: #777777;
	font-family: 'Open Sans', sans-serif;
	-webkit-transition: .2s;
    transition: .2s;
}

textarea:hover{
	border: 1px solid #a9a9a9;}

textarea:focus{
	border: 1px solid #a9a9a9;}

/* Buttons */

.btn-main{
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	background-color: #ff5151;
	border: 3px solid #a62e2e;
	-moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  border-radius: 1px;	
	text-shadow:rgba(0,0,0,.2)1px 1px 1px;
	-webkit-transition: .3s;
   transition: .3s;
}

.btn-main:hover{
	background-color: #a62e2e;
	border: 3px solid #a62e2e;
}


.button{
	font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
    text-transform: uppercase;
    padding: 7px;
    padding-top: 7px;
    background-color: #a62e2e;
    border: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: .3s;
    transition: .3s;
}

.button:hover{
	background-color: #ff5151;
}

#nav a.header-btn{
	font-size: 18px;
	font-weight: 200;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding: 7px;
	background-color: #ff5151;
	border: none;
	-moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
	background-image: linear-gradient(120deg, #ff5151 0%, #8a1717 100%);
	background-color : #ff5151;
	position: relative;
	z-index: 1;
}

#nav a.header-btn::before{
	position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	background-image: linear-gradient(120deg, #8a1717 0%, #ff5151  100%);
	z-index: 2;
  transition: opacity 0.5s linear;
  opacity: 0;
}

#nav a.header-btn:hover::before{
  opacity: 1;
}



#nav a.header-btn span {
  position: relative;
  z-index: 3;
	color: #fff;
}

/* Header */

#logo-container{
 	float: left;
	width: 100%;
	max-width: 250px;
}

#logo-container img{
	width: 100%;
	max-width: 250px;
}

#header{
	background: #f6f6f6;
	padding-top: 25px;
	padding-bottom: 25px;
}

#header-banner{
	position: absolute;
	top: 0;
	left: 0;
  z-index: 99;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #e0e0e0;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.5);
	padding-left: 10px;
	padding-right: 10px;
}

#header-banner span{
	color: #000;
    font-weight: 200;
    font-size: 18px;	
}

/* Menu */

#container-menu{
}

/* MENU */

#nav{
	float: right;
  padding-top: 15px;
}

#nav ul{
	float: left;
	list-style: none;
	padding: 0px;
	margin: 0px;
	padding-top: 7px;
	
}

#nav li{
	float: left;
	margin-right: 10px;
	margin-left: 10px;
}

#nav li a{
	float: left;
	padding: 7px;
	padding-left: 7px;
	padding-right: 7px;
	padding-bottom: 7px;
	color: #686868;
	font-weight: 200;
	font-size: 18px;
	text-decoration: none;
	 -webkit-transition: .3s;
    transition: .3s;
    text-transform: uppercase;
}

#nav li a:hover{
	color: #000;
}

#nav li.current a{
	color: #000;
}

/* Footer */

#footer-container{
	padding-top: 50px;
	text-align: center;
	background: #2e2e2e;
}

#footer-logos{
	padding-bottom: 15px;
}

#footer-copyright{
	color: #fff;
	font-size: 15px;
	padding-bottom: 15px;
}

.footer-call-to-action{
	padding-bottom: 50px;
}

.footer-call-to-action span{
	font-size: 30px;
	color: #fff;
	font-weight: 300;
}

.footer-call-to-action a{
	color: #ff5151;
	text-decoration: none;
}

.footer-call-to-action a:hover{
	text-decoration: underline;
}


#footer-copyright{
	font-size: 16px;
  color: #fff;
  font-weight: 300;
}

#footer-copyright span.small{
	font-size: 16px;
}

/* BANNER SLIDER */

#homepage-slider{
	float: left;
	width: 100%;
	min-height: 600px;
	z-index: 0;
	overflow: hidden;
	position: relative;
}

#homepage-slider .box33 img{
	display: inline-block;
	max-width: 60px;
	vertical-align: top;
}

#homepage-slider .box33 span{
float: left;
	width: 100%;
	color: #ede238;
	vertical-align: top;
	font-size: 18px;
	padding-top: 10px;
  font-weight: 800;
	text-transform: uppercase;
}

.banner{
	float: left;
	width: 100%;
	min-height: 600px;
	padding-bottom: 50px;
	text-align: center;
	background-size:  cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.banner-short{
	padding-top: 130px;
	height: 300px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

.banner-short h1{
	color: #fff;
	font-size: 40px;
	font-weight: 800;
	margin: 0px;
	line-height: 45px;
	text-transform: uppercase;
}

#project-slider .banner{
	height: 700px;
}

#banner-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    width: 200px;
    display: inline-block;
    padding: 25px;
    background-image: url(../images/header-background.png); 
    -webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
}

#banner-logo img{
    width: 100%;
}


#project-slider #banner-logo{
	top: 50px;
	margin: 50px 0 0 -100px;
	text-align: center;
	padding: 15px;
}

#project-slider #banner-logo h1{
	color: #fff;
	margin: 0px;
	padding: 0px;
}


.banner-txt span strong{
    color: #67b541;
}



.banner-txt{
	display: inline-block;
	width: 100%;
	max-width: 1200px;
	margin-top: 120px;
	padding-bottom: 10px;
	/*background-image: url(../images/banner-txt-background.png);*/
	
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	text-align: center;
	
	/*background-image: url(../images/banner-txt-background.png);*/
	padding: 25px;
}

.banner-txt h1{
	color: #fff;
	font-size: 60px;
	font-weight: 800;
	margin: 0px;
	line-height: 75px;
	text-transform: uppercase;}

.banner-txt h1 span{
	color: #ff5151;
    font-size: 90px;
}

.banner-txt p{
	display: inline-block;
	color: #fff;
	font-size: 30px;
    line-height: 35px;
	font-weight: 300;
	max-width: 700px;}

.banner-button{
	float: left;
	width: 100%;
}


/*.banner-txt a{
	display: inline-block;
	font-weight: 800;
	color: #fff;
	font-size: 14px;
	background-color: #3079dc;
	padding: 8px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 15px;
	text-decoration: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-o-border-radius:2px;
	border-radius: 2px;
	background-image: url(../images/icons/right-arrow-small.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center left;
	text-decoration: none;
	text-transform: uppercase;
	 -webkit-transition: .3s;
    transition: .3s;}

.banner-txt a:hover{
	background-color: #f9540b;
}
*/

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto{
	bottom: 30px;
}

.bx-wrapper .bx-pager.bx-default-pager a{
	background: #fff;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active{
		background: #ff5151;

}

/* HOMEPAGE */

.free-setup-box{
    padding-top: 50px;
}

.free-setup-box p{
	color: #ede238;
	font-weight: 800;
	text-transform: uppercase;
}

.free-setup-banner{
	background: #ede238;
	text-align: center;
	padding-top: 25px;
	padding-bottom: 25px;
	position: absolute;
	bottom: 100px;
	left: 0px;
}

.free-setup-banner h2{
	color: #252525;
	text-transform: uppercase;
  font-size: 30px;
  font-weight: 800;
}

.free-setup-banner .box33{
	padding: 25px;
}

.free-setup-banner .box33 img{
	display: inline-block;
	max-width: 60px;
	vertical-align: top;
}

.free-setup-banner .box33 span{
	display: inline-block;
	color: #252525;
	vertical-align: top;
	font-size: 18px;
	padding-top: 20px;
  font-weight: 800;
	padding-left: 20px;
}

.homepage-intro{
	padding-right: 75px;
}

.homepage-intro h2{
    color: #ff5151;
    text-transform: uppercase;
    text-align: center;
    font-size: 35px;
	line-height: 40px;
}

.homepage-why-anpr{
	background-image: url(../images/banner/anpr.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
	text-align: center;
	padding-top: 75px;
	padding-bottom: 75px;
}

.homepage-why-anpr h2{
	text-transform: uppercase;
	color: #fff;
	font-size: 60px;
}

.homepage-why-anpr img{
	width: 100%;
	max-width: 100px;
}

.why-apr-items{
	display: inline-block;
	max-width: 800px;
	padding-top: 50px;
}

.why-apr-icon{
	float: left;
	width: 25%;
}

.why-apr-text{
	float: left;
	width: 75%;
	padding-left: 25px;
	text-align: left;
	padding-top: 0px;
}

.homepage-why-anpr .box100{
	padding-bottom: 50px;
}

.why-apr-text h3{
	text-transform: uppercase;
	color: #fff;
font-size: 20px;
}	

.why-apr-text p{
	margin-bottom: 0px;
	color: #fff;
}

.homepage-images{
	padding-top: 100px;
}

.homepage-images img{
	width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.img-block img{
	width: 100%;
}

.img-block .box50{
	padding: 1px;
}

.hiw{
	background-color: #e1e1e1;

}

.hiw h2 {
  text-transform: uppercase;
  color: #666666;
  font-size: 60px;
	text-align: center;
}

a.hiw_link {
    display: block;
    float: left;
    width: 160px;
    height: 180px;
    padding: 10px;
    background-color: #fc5050;
    text-align: center;
    font-family: 'Oxygen', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-right: 0px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px;
    -webkit-transition: .3s;
    transition: .3s;
}

.hiw-box{
	position: relative;
	border: 5px solid #e1e1e1;
	overflow: hidden;
}

.hiw-box img{
	width: 100%;
}

.hiw-box-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	border: 50px solid transparent;
	overflow: hidden;
  height: 140px;
	background: rgba(0,0,0,0.5);
  -webkit-transition: .3s;
  transition: .3s;
	
}

.hiw-box-text h4{
	color: #fff;
	font-size: 30px;
	margin-top: 0px;
	text-transform: uppercase;
}

.hiw-box-text p{
	color: #fff;
}

.hiw-box:hover .hiw-box-text{
	height: 500px;
	background: rgba(162,39,39,0.7);
}



.homepage-included{
	background-image: url(../images/banner/anpr4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
	text-align: center;
	padding-top: 75px;
	padding-bottom: 75px;
}

.homepage-included h2{
	text-transform: uppercase;
	color: #fff;
	font-size: 60px;
}

.homepage-included img{
	width: 100%;
	max-width: 100px;
}

.ticks-list {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: inline-block;
	max-width: 800px;
}

	
.ticks-list li{
    float: left;
	width: 50%;
    padding-left: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-image: url(../images/icons/tick-icon.png);
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 20px;
    font-weight: 800;
	text-align: left;
	color: #fff;
	margin-bottom: 25px;
     border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}	

/* LOGO SCROLLER */

#logo_scroller_container{
	float: left;
	width: 100%;
	padding: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #fff;
	margin-top: 15px;
	margin-bottom: 30px;}

#logo_scroller_container img{
	max-width: 190px;
	max-height: 55px;
	margin-right: 25px;}

/* GENERAL PAGE CSS */

.right-col-images img{
	width: 100%;
}

.page-intro{
	padding-right: 75px;
}

.page-intro h1{
	text-transform: uppercase;
  font-size: 40px;
}

.page-intro h2{
    color: #ff5151;
    text-transform: uppercase;
    text-align: center;
    font-size: 35px;
	line-height: 40px;
}

.section-icon {
    float: left;
    width: 25%;
		max-width: 300px;
	padding-top: 50px;
	padding-right: 15px;
}

.section-icon img {
		float: left;
	width: 100%;
    max-width: 145px;
}

.section-text {
  float: right;
  width: 75%;
	text-align: left;
}

.about-blocks .box100{
	padding-bottom: 50px;
}

.section-text p{
	color: #fff;
}

.section-text h2{
	color: #fff;
text-transform: uppercase;
}

.section-text ul li {
    padding-left: 30px;
    margin: 0px;
    margin-bottom: 10px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    font-weight: 600;
	text-align: left;
font-size: 18px;
}

.section-text ul {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

/* KEY BENEFITS */

.key-benefits span {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    margin-top: 0px;
    line-height: 22px;
}

.key-benefits{
	padding-top: 50px;
	padding-bottom: 50px;
}

.key-benefits h2{
    text-transform: uppercase;
    color: #666666;
    font-size: 60px;
    text-align: center;
}

.key-benefits .box50{
    padding-left: 25px;
    padding-right: 25px;
}	

.tick-box-left span {
    float: left;
    padding-left: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-image: url(../images/icons/tick-icon.png);
    background-repeat: no-repeat;
    background-position: left center;
}


.tick-box-right span {
    float: left;
    padding-left: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-image: url(../images/icons/tick-icon.png);
    background-repeat: no-repeat;
    background-position: left center;
}

/* FAQ */

.faq-page strong{
    color: #ff5151;
}

.faq-page p{
	max-width: 800px;
}

/* FORMS */

.form-field-row{
	float: left;
	width: 100%;
  padding-bottom: 10px;
}

.form-container{
	display: inline-block;
	width: 100%;
	max-width: 650px;
	padding: 25px;
	background: #efefef;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
	margin-top: 25px;
}

.form-container h2{
	color: #666666;
	font-size: 30px;
}

.form-container h3{
	margin-bottom: 10px;
	margin-top: 20px;
	text-transform: uppercase;
}

.form-field{
	float: left;
    padding-right: 10px;

    width: 50%;
}

.form-field-single{
	width: 100%;
}

.form-container .btn-main{
	padding: 10px;
	background: #0c8bdb;
	float: none;
	display: inline-block;
	border: none;
	max-width: 200px;
	cursor: pointer;
	font-weight: 600;
    font-size: 18px;
}

.form-container .btn-main:hover{
	background: #1ea1f4;
}

.enquiry-page{
	text-align: center;
}

#txtInput{
	 max-width: 200px;
	display: inline-block;
	float: none;
}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 1200px) {

.container-main{
	padding-left: 10px;
	padding-right: 10px;
	float: left;

}
}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 980px) {

.homepage-intro{
	width: 100%;
	padding-right: 0px;
}

.homepage-images{
	width: 100%;
	padding-top: 20px;
}

.banner-txt{
	margin-top: 75px;
}

.hiw-box-text{
	height: 100%;
  border: 25px solid transparent;
}

.hiw-box-text h4{
	margin-bottom: 5px;
	font-size: 25px;
}

.homepage-intro h2{
	text-align: left;
}



}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 820px) {

#logo-container{
	max-width: 100%;
	text-align: center;
}

#nav{
	float: none;
	display: inline-block;
}

#container-menu{
	float: left;
	width: 100%;
	text-align: center;
}


}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 780px) {

#logo-container{
	max-width: 100%;
	text-align: center;
}

#nav{
	width: 100%;
	text-align: center;
}

#nav ul{
	float: none;
	display: inline-block;
}

}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 780px) {

.banner-txt h1 span{
	font-size: 50px;
}

.banner-txt h1{
	font-size: 40px;
    line-height: 50px;
}

.banner-txt p{
	font-size: 25px;
	line-height: 30px;
}

.banner-txt .box33{
	padding-left: 15px;
	padding-right: 15px;
}

.homepage-why-anpr h2{
    font-size: 35px;
    line-height: 45px;
}

.key-benefits h2{
    font-size: 35px;
    line-height: 45px;
}

.hiw h2{
    font-size: 35px;
    line-height: 45px;
}

.homepage-included h2{
    font-size: 40px;
    line-height: 50px;
}

.box50{
	width: 100%;
}

.page-intro {
    padding-right: 0px;
}



}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 700px) {

.form-field{
	width: 100%;
	padding-bottom: 10px;
}

.form-field-row-multiple{	
	padding-bottom: 0px;
}
	


}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 450px) {

.enquiry-page{
	text-align: left;
}

.enquiry-page h1{
text-transform: uppercase;
    font-size: 40px;
}

.banner{
	min-height: 780px;
}

h1{
	text-align: center;
	line-height: 45px;
}

.banner-txt .box33{
	width: 100%;
	padding-bottom: 15px;
}

.free-setup-box{
	padding-top: 25px;
}

.ticks-list li{
	width: 100%;
}

#homepage-slider .box33 img{
	max-width: 40px;
}

.banner-txt{
	margin-top: 120px;
}

.hiw-box{
	height: 320px;
	overflow: hidden;
}

.hiw-box img{
	width: auto;
	height: 100%;
}

.section-icon{
	width: 100%;
	max-width: 100%;
	padding-top: 0px;
	padding-bottom: 25px;
	text-align: center;
}

.section-text{
	width: 100%;
}

.section-icon img{
	float: none;
	max-width: 120px;
}

.section-text h2{
	text-align: center;
}	

}

/* SMartphones and Tablets */
@media only screen 
and (min-width : 1px) 
and (max-width : 380px) {

#nav{
	padding-top: 5px;
}
	
/*#nav .btn-list{
	float: left;
	width: 100%;
	text-align: center;
}

#nav li a.header-btn{
	float: none;
	display: inline-block;
}*/

}






