/* CSS Document */
html, body{
  	font-family: 'Open Sans', sans-serif;
    font-size: 100%;
	transition: background-color 0.5s ease;
  	background: #fff;
	margin:0px;
	padding:0px;
	text-align:center;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

ul{
	list-style:none;
	margin:0px;
	padding:0px;
}

body a{
	font-size:12px;	
	font-family: 'Crimson Text', serif;
	text-decoration:none;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}

a:hover{
	text-decoration:underline;
	
}

h1,h2,h3,h4,h5,h6{
	margin:0px;
	padding:0px;
    letter-spacing: 1px;
	font-family: 'Days One', sans-serif;	
}

p{
	margin:0px;
	padding:0px;
	font-family: 'Crimson Text', serif;
}

li{
	font-family: 'Cabin', sans-serif;
}

ol{
	margin:0px;
	padding:0px;
}

img{
	border-width:0px;
}
input{
    box-sizing: border-box;	
}

.full{
	width:100%;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.container{
	width:94%;
	margin:0 3%;
}

.clear{
	clear:both;
}

::-webkit-scrollbar {
  width: 6px; 
   background-color:#CCCCCC;
  -webkit-border-radius: 80px;
}
::-webkit-scrollbar:hover {
  background-color: rgba(0,0,0,0.61);
}

::-webkit-scrollbar-thumb:vertical {
  background: #CC9933;
  -webkit-border-radius: 80px;
}
/*::-webkit-scrollbar-thumb:vertical:active {
  background: rgba(0,0,0,0.61);
  -webkit-border-radius: 80px;
}*/

.tollfree-blink{
	-webkit-animation-name: toll-free-blink; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1s; /* Safari 4.0 - 8.0 */
    animation-name: toll-free-blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes toll-free-blink {
    0%   {color:red;}
    25%  {color:yellow;}
    50%  {color:#fff;}
    75%  {color:green;}
    100% {color:red;}
}

/* Standard syntax */
@keyframes toll-free-blink {
    0%   {color:red;}
    25%  {color:yellow;}
    50%  {color:#fff;}
    75%  {color:green;}
    100% {color:red;}
}


/*=================header=====================*/

header{
	width:100%;	
}

.header{
	width:100%;	
	background:rgb(255, 254, 226);
    border-top: 4px solid #f6c200;
}

.header .logo{
	width:187px;
	height:auto;
	float:left;
	top:-9px;
	left:3%;
	position:absolute;
	z-index:999;
}

.header .logo img{
	width:100%;
	height:auto;	
}

.header .header-right{
	display:block;
	margin-left:246px;
}

.header .top-bar{
    display: block;
    background: #000;
    border-left: 2px solid #ca9f03;
    border-right: 2px solid #ca9f03;
    border-bottom: 3px solid #ca9f03;
    border-bottom-left-radius: 27%;
    border-bottom-right-radius: 27%;
    box-shadow: 0px 2px 12px #000000;
    padding: 5px 0px 8px;
}

.header .top-bar .top-bar-left{
    float: left;
    padding: 0px 10px 0px;
}

.header .top-bar .top-bar-right{
    float: right;
}

.header .top-bar ul{
    display: block;
}

.header .top-bar ul li{
    display: inline-block;
    margin-right: 13px;
    position: relative;
}

.header .top-bar ul li a{
    font-size: 16px;
    color: #FFF;
	cursor:pointer;
}

.header .top-bar ul li a:hover{
    color: #f6c200;
	text-decoration:none;
}

.header .top-bar ul li a i{
    margin-right: 5px;
}



/*================menu=================*/

.menu{
    position: relative;
    text-align: center;
    z-index: 32;
    background: #fffee7;
    //box-shadow: 1px 7px 24px #6a6969;
}

.menu i{    
	position: absolute;
    right: 19px;
    cursor: pointer;
    top: -23px;
    padding: 10px 10px;
    background: #f5c200;
    color: #000;
    display: none;
}

.menu ul{
	margin:0px 0px;
	padding:0px;	
}

.menu ul li{
	display: inline-block;;
}

.menu ul > li:hover > a{
	color:#FFF;	
}

.menu ul li a{
	display:block;
	font-size:13px;
	padding:15px 7px;
	color:#2b2b2b;
    font-weight: normal;
	text-decoration:none;
	text-transform:uppercase;
	position:relative;
	font-family: 'Days One', sans-serif;	
}

.menu ul li a.new-icon:after{
    display: block;
    background: url(../images/new-flashing.gif) right no-repeat;
    position: absolute;
    content: "";
    width: 37px;
    height: 11px;
    top: 5px;
    right: -14px;
    background-size: cover;
}

.menu ul li:hover > a{
    color: #000000;
    background: #f5c200;
}

.menu ul .menu_active > a{
    color: #000000;
    background: #f5c200;
}

.menu ul ul{
	min-width:200px;
	padding:5px;
	background:#ddae00;
	position:absolute;
	z-index:30;
	visibility:hidden;
	opacity:0;
	
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	
}



.menu ul li:hover ul{
	visibility:visible;
	opacity:1;
}

.menu ul ul li{
	display:block;	
}

.menu ul ul li a{
    padding: 10px;
    display: block;
    line-height: 18px;
    color: #000000;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Cabin', sans-serif;
}

.menu ul ul li:hover > a{
	background: #fff;
    color: #704f18;
}

.menu ul ul .menu_active > a{
	background: #fff;
    color: #704f18;
}

/*==================== adtocard ==================*/

.adtocard{
    position: absolute;
    right: -3px;
    top: 25px;
    min-width: 281px;
    background: #fffee7;
    z-index: 99;
    padding: 10px;
	display:none
}

.adtocard ul{
    display: block;
}

.adtocard ul li{
    display: block !important;
    margin: 0 !important;
    padding: 5px 5px 5px 90px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

.adtocard ul li:hover{
    background: #f7f3f3;
}

.adtocard ul li:after{
    display: table;
    content: "";
    clear: both;
}

.adtocard ul li img{
    width: 75px;
    height: auto;
    margin-left: -85px;
    float: left;
}

.adtocard ul li a{
	display:block;
}

.adtocard ul li h5{
    display: block;
    color: #404040;
    font-size: 13px;
    letter-spacing: 0.4px;
    padding: 2px 0px;
}

.adtocard ul li h5:hover{
	color: #a28000;
}

.adtocard ul li .amount{
    position: relative;
    font-size: 18px;
    padding-left: 13px;
    color: #444;
    font-weight: 700;
}

.adtocard ul li .amount:after{
    position: absolute;
    font-family: 'FontAwesome';
    content: "\f156";
    font-size: 18px;
    color: #444;
    left: 0;
    top: 3px;
}

.adtocard ul li .product_counter{
    display: block;
    width: 31px;
    position: relative;
    margin: 5px 29px;
}

.adtocard ul li .product_counter .decrease{
    display: inline-block;
    padding: 0px 7px;
    background: #f6c100;
    border-radius: 100%;
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: -28px;
    cursor: pointer;
    color: #000;
    font-size: 17px;
}

.adtocard ul li .product_counter .increase{
    display: inline-block;
    padding: 0px 7px;
    background: #f6c100;
    border-radius: 100%;
    font-weight: 900;
    position: absolute;
    top: 1px;
    right: -28px;
    cursor: pointer;
    color: #000;
    font-size: 17px;
}

.adtocard ul li .product_counter .increase:hover, .adtocard ul li .product_counter .decrease:hover{
    color: #f6c100;
    background: #000;
}

.adtocard ul li .product_counter .count_product{
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #CCC;
    height: 25px;
    font-size: 13px;
}

/*==================== Security Guards ==================*/

.security-guards{
    width: 100%;
    padding: 40px 0px 5px;
    position: relative;
    z-index: 0;
}

.security-guards h1{
    display: block;
    padding: 10px 72px 8px 58px;
    color: #151414;
    text-transform: uppercase;
    text-align: left;
    font-size: 22px;
    position: relative;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.security-guards h1 .more{
    position: absolute;
    right: 15px;
    top: 13px;
    font-weight: 900;
    color: #3475d2;
    text-transform: uppercase;
    font-size: 15px;
    text-decoration: none;
}

.security-guards h1 .more:hover{
	color: #9c7c00;
}

.security-guards h1:after{
    content: "\f218";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    padding: 9px 11px;
    background: #f5c200;
    color: #0a0a0a;
}

.security-guards .security-guards-col{
    display: block;
	overflow:hidden;
}

.security-guards .security-guards-col .security-guards-inner{
    display: block;
    margin: 20px 0px;
}

.security-guards .security-guards-col a{
    display: block;
	text-decoration:none;
}

.security-guards .security-guards-col .zoom-img{
	display:block;
	overflow:hidden;	
	position:relative;
    max-height: 148px;
}

.security-guards .security-guards-col .zoom-img img{
    width: 100%;
    height: auto;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.security-guards .security-guards-col:hover .zoom-img img{
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.security-guards .security-guards-col .zoom-img:after{
    content: "";
    width: 65px;
    height: 72px;
    position: absolute;
    top: -73px;
    left: 6px;
    background: url(../images/logo.png) center no-repeat;
    transition: 0.5s all;
    -webkit-transition: 1.0s all;
    -moz-transition: 1.0s all;
    -o-transition: 1.0s all;
    -ms-transition: 1.0s all;
}

.security-guards .security-guards-col:hover .zoom-img:after{
	top: 0px;
}

.security-guards .security-guards-col .zoom-img .shot-information{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000a6;
	display:none;
	overflow:auto;
}

.security-guards .security-guards-col:hover .zoom-img .shot-information{
	display:block;
}

.security-guards .security-guards-col .zoom-img .shot-information ul{
    padding: 10px 10px 33px;
    list-style: inside;
    list-style-type: square;
}

.security-guards .security-guards-col .zoom-img .shot-information ul li{
    text-align: left;
    color: #CCC;
    font-size: 14px;
    padding: 3px 8px;
}

.security-guards .security-guards-col .amount{
    display: inline-block;
    position: absolute;
    bottom: 0;
    z-index: 9;
    background: #f5c200;
    padding: 4px 10px;
    right: 0;
    color: #000;
    font-size: 16px;
    font-weight: 900;
}

.security-guards .security-guards-col .amount i{
    margin-right: 6px;
}

.security-guards .security-guards-col .amount strike{
    margin-right: 5px;
}

.security-guards .security-guards-col h3{
    font-size: 14px;
    text-align: center;
    padding: 17px 10px;
    background: #f1f1f1;
    color: #252525;
    font-weight: 600;
}

.security-guards .security-guards-col:hover h3{
	color:#735b02;
}

.security-guards .security-guards-col .addtocart{
    position: relative;
    display: inline-block;
    padding: 10px 10px 10px 33px;
    background: #ffcb00;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #07080d;
	cursor:pointer;
}

.security-guards .security-guards-col .addtocart:after{
    content: "\f217";
    position: absolute;
    font-family: 'FontAwesome';
    left: 8px;
    top: 8px;
    font-size: 18px;
}

.security-guards .security-guards-col .addtocart:hover{
    background: #070709;
    color: #fc0;
}

/*==================== cctv-information ==================*/

.product-list-panel{
    float: left;
    width: 271px;
    margin-left: -2%;
}

.product-list-panel:after{
    content: "";
    width: 300px;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    height: 100%;
    background: #f5f5f5;
    z-index: -1;
}

.product-list-panel h3{
    color: #004e86;
    display: block;
    text-align: left;
    font-size: 15px;
    position: relative;
    padding: 10px 5px 10px 20px;
}

.product-list-panel h3:after{
    content: "\f0da";
    position: absolute;
    display: block;
    left: 6px;
    top: 10px;
    font-family: 'FontAwesome';
}

.product-list-panel ul{
    margin-bottom: 10px;
    margin-left: 21px;
}

.product-list-panel ul li{
    text-align: left;
}

.product-list-panel ul li a{
    padding: 3px 0;
    display: block;
    font-size: 16px;
	position:relative;
}

.product-list-panel ul li a:hover:after, .product-list-panel ul li a.active:after{
	content: "\f0da";
    position: absolute;
    display: block;
    right: 6px;
    top: 6px;
    font-family: 'FontAwesome';
}

.product-list-panel ul li a:hover, .product-list-panel ul li a.active{
    text-decoration: none;
    color: #004e86;
    background: #FFF;
    padding: 5px 10px 5px;
}

.product-grid-panel{
	display:block;
	margin-left:300px;
}

/*==================== cctv-information ==================*/

.cctv-information{
	width:100%;
	padding:40px 0px;
	background:url(../images/cctv-banner.jpg) center fixed;
	background-size:cover;
	position:relative;
	z-index:0;
}

.cctv-information:after{
	content:"";
	background:#f5c200d9;
	position:absolute;
	display:block;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
}

.cctv-information img{
    width: 100%;
    border-radius: 100%;
	height:auto;
}

.cctv-information h2{
    text-align: center;
    font-size: 23px;
    text-transform: uppercase;
    color: #000;
    padding: 10px 0px 20px;
}

.cctv-information p{
    padding: 5px 20px;
    font-size: 19px;
}

.cctv-information .readmore{
    margin-top: 25px;
    display: inline-block;
    padding: 10px 15px;
    background: #000;
    color: #FFF;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.cctv-information .readmore:hover{
    background: #CCC;
    color: #000;
}

/*==================== security-about ==================*/

.security-about{
	padding:40px;
	background:url(../images/business-benner.jpg) center fixed;
	background-size:cover;
	z-index:0;
	position:relative;
}

.security-about:after{
	content:"";
	background:#fffc;
	z-index:-1;
	top:0;
	left:0;
	position:absolute;
	width:100%;
	height:100%;
}

.security-about h5{
    display: block;
}

.security-about h3{
    display: block;
    padding: 10px 0px;
    color: #3c3c3c;
}

.security-about .small-line{
    display: inline-block;
    height: 5px;
    background: #fcc802;
    width: 111px;
    margin: 11px 0px;
}

.security-about .security-about-col{
    display: block;
    margin-top: 30px;
    background: #ffffff94 url(../images/about-section-bg.png) center no-repeat;
    padding: 69px 0;
}

.security-about .vertical-line{
    display: inline-block;
    height: 2px;
    background: #dadad8;
    width: 80%;
    margin: 45px 0px;
}

.security-about a{
	text-decoration:none;
}

.security-about h4{
    font-size: 18px;
    padding: 5px 0px;
}

.security-about p{
    font-size: 17px;
    padding: 5px 0px;
}


/*====================inner-slide============*/

.inner-slide{
    width: 100%;
    position: relative;
}

.inner-slide:after{
    content: "";
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.33);	
}

.inner-slide img{
    width: 100%;
    height: auto;
}

.inner-slide .inner-box{
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.inner-slide .inner-box h2{
    display: block;
    font-size: 25px;
    text-transform: uppercase;
    color: #ffca00;
	font-weight:900;
}

.inner-slide .inner-box ul{
    display: block;
    margin-top: 18px;
}

.inner-slide .inner-box ul li{
    display: inline-block;
    padding-left: 27px;
    color: #fffdba;
    font-size: 15px;
}

.inner-slide .inner-box ul li i{
    position: absolute;
    margin-top: 0px;
    font-size: 20px;
    margin-left: -21px;
    color: #ffca00;
}

.inner-slide .inner-box ul li a{
    color: #fffee7;
    font-size: 16px;
    font-family: 'Cabin', sans-serif;
}

/*==================== Enquiry ==================*/

.simple-content{
    width: 100%;
    display: block;
    padding: 40px 0px;
	min-height:500px;
}

.simple-content h2{
    display: block;
    font-size: 18px;
    text-align: left;
    padding: 10px 0px;
    color: #a98501;
}

.simple-content p{
    padding: 6px 0px;
    text-align: left;
    font-size: 17px;
}

.simple-content .amount{
    display: table;
    background: #f5c200;
    padding: 4px 10px;
    color: #000;
    font-size: 16px;
    font-weight: 900;
}

.simple-content .amount i{
    margin-right: 6px;
}

.simple-content .amount strike{
    margin-right: 5px;
}

.simple-content img{
    max-width: 100%;
    height: auto;
}

.simple-content ul{
    list-style: outside;
    list-style-type: square;
    margin-left: 20px;
}

.simple-content ul li{
    padding: 6px 0px;
    text-align: left;
    font-size: 14px;
}

.simple-content ul li a{
    padding: 6px 0px;
    text-align: left;
    font-size: 15px;
    color: #00847e;
}

.simple-content ul li a:hover{
	color: #000000;
}

/*==================== Contact ==================*/

.contact-info{
    display: block;
    padding: 40px 0px;
    background: #fffee2;
}

.contact-info .contact-info-col{
    background: #FFF;
    padding: 15px 0px 20px;
    box-shadow: 0px 1px 42px #e2e2e2;
    margin-bottom: 23px;
}

.contact-info .contact-info-col .contact-info-col-inner{
    margin: 0 10px;
}

.contact-info .contact-info-col h2{
    display: block;
    padding: 5px 20px 13px 0px;
    text-align: center;
    font-size: 16px;
    border-bottom: 2px solid #eae8b0;
    margin-bottom: 20px;
}

.contact-info .contact-info-col ul{
	display:block;
}

.contact-info .contact-info-col ul li{
    display: block;
    padding: 5px 10px 5px 40px;
    text-align: left;
    position: relative;
    font-size: 15px;
}

.contact-info .contact-info-col ul li i{
    position: absolute;
    left: 1px;
    top: 7px;
    color: #a78400;
    font-size: 15px;
    width: 30px;
    text-align: center;
}

.contact-info .contact-info-col ul li a{
    font-size: 17px;
    color: #01709a;
    text-decoration: none;
}

.contact-info .contact-info-col ul li a:hover{
	color: #a78417;
}

/*==================== Enquiry ==================*/

.contact-form{
    display: block;
    padding: 40px 0px;
}

.contact-form h1{
    display: inline-block;
    text-align: center;
    font-size: 19px;
    margin-bottom: 57px;
    padding: 5px 19px 11px;
    border-bottom: 5px solid #d0ac22;
    text-transform: uppercase;
    font-family: 'Crimson Text', serif;
    font-weight: 700;
}

.contact-form label{
    display: block;
    text-align: left;
    font-size: 16px;
    font-family: 'Cabin', sans-serif;
    padding-left: 1px;
}

.contact-form input, .contact-form textarea{
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #dadada;
    padding: 8px 10px;
}

::placeholder{
	font-size:14px;	
	color:#999;
}

.contact-form input[type="submit"]{
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    background: #d0ac22;
    color: #292929;
    padding: 10px 22px;
    margin-top: 10px;
}

.contact-form input[type="submit"]:hover{	
    background: #292929;
    color: #d0ac22;
}

/*==================== message-box ==================*/

.message-box{
    display: block;
    border: 2px solid #a07f03;
    text-align: left;
    box-shadow: 0px 0px 22px #484848;
}

.message-box .message-box-inner{
    margin: 10px 10px;
}

.message-box h3{
    text-align: left;
    font-size: 16px;
    margin-bottom: 18px;
    padding: 10px 11px;
    display: inline-block;
    border-bottom: 2px solid #ba9300;
    color: #000;
}

.message-box .message-box-col{
    display: block;
    padding: 8px;
}

.message-box .message-box-col input{
    width: 100%;
    padding: 10px 8px;
    font-size: 13px;
    border: 1px solid #ece9e9;
}

.message-box .message-box-col textarea{
    width: 100%;
    padding: 10px 8px;
    font-size: 13px;
    border: 1px solid #ece9e9;
}

.message-box .message-box-col input[type="submit"]{
    border: none;
    background: #bbb862;
    color: #000;
    font-weight: 900;
}

.message-box .message-box-col input[type="submit"]:hover{
    background: #a07f03;
    color: #FFF;
}

/*==================== footer ==================*/

.footer{
	padding:40px 0px;
	background:url(../images/footer.jpg) center no-repeat;
	background-size:cover;
	position:relative;
	z-index:0;
}

.footer:after{
    content: "";
    background: #151414f5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer .up{
    display: block;
	margin-bottom:40px;
}

.footer .up .col-md-4{
	margin:50px 0px;
}

.footer .up i{
    font-size: 26px;
    padding: 31px 34px;
    color: #fff;
    background: #9c7b00;
    border-radius: 100%;
}

.footer .up h4{
    font-size: 16px;
    padding: 10px 10px;
    color: #FFF;
    text-transform: uppercase;
    margin-top: 12px;
}

.footer .up p, .footer .up a{
    font-size: 18px;
    color: #cecece;
    padding: 2px 0;
}

.footer .up a:hover{
	color:#9c7b00;
}

.footer .up p i{
    background: none;
    padding: 0;
    margin-right: 10px;
    font-size: 18px;
}

.footer .up .dotted:after{ 
    position: absolute;
    top: 0;
    right: -51%;
    overflow: hidden;
    width: 100%;   
    line-height: 100px;
    content: '\2022\2022\2022\2022\2022\2022\2022\2022\2022\2022\2022\2022';
    letter-spacing: 14px;
    color: #adadad;
    font-size: 20px;
}

.footer .bottom .social{
    display: block;
}

.footer .bottom .social li{
    display: inline-block;
    padding: 10px 8px;
}

.footer .bottom .social a{
    text-decoration: none;
}

.footer .bottom .social a i{
    font-size: 17px;
    color: #929292;
}

.footer .bottom .social a img{
	width:30px;
	height:30px;
}

.footer .bottom .social a:hover i{
    color: #9c7b00;
}

.footer .bottom p{
    font-size: 16px;
    color: #a2a2a2;
    letter-spacing: 0.6px;
}

.footer .bottom a{
    font-size: 16px;
    color: #9c7b00;
    text-decoration: none;
}

.footer .bottom a:hover{
	color: #efcd51;
}


/*==================== login ==================*/

.popup-panel{
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 999;
    background: #0000008c;
    overflow: hidden;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.popup-panel.show-login{
	display: block;
}

.popup-panel .login{
    display: inline-block;
    max-width: 385px;
    background: #FFF;
    top: -374px;
    padding: 30px 25px;
	position:relative;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.popup-panel:hover .login{
	top: 42px;
}

.popup-panel .login .login-inner{
    display: block;
}

.popup-panel .login h1{
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #6f5700;
    font-weight: 900;
}

.popup-panel .login h1 i{
    margin-right: 10px;
    font-size: 18px;
}

.popup-panel .login .login-form{
    margin-top: 28px;
}

.popup-panel .login .login-form i{
    position: absolute;
    top: 0px;
    left: 16px;
    color: #6f5700;
    width: 30px;
    padding: 9px 0;
    text-align: center;
    background: #e4e4e4;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.popup-panel .login input{
    margin-bottom: 20px;
    padding: 2px 11px 2px 35px;
    border: 1px solid #e4e4e4;
}

.popup-panel .login input[type="submit"]{
    padding: 5px 20px;
    border: 0;
    background: #6f5700;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
	margin-bottom:0;
    margin-top: 10px;
}

.popup-panel .login input[type="submit"]:hover{
    background: #dcdcdc;
    color: #6f5700;
}

.popup-panel .fa-close{
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 9px 10px;
    background: #6f5700;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.popup-panel .fa-close:hover{
	background: #CCC;
    color: #6f5700;
}

/*==================== Register ==================*/

.login-register{
	
}

.login-register .register-link{
    display: block;
    padding: 8px 10px;
    background: #ffcf19;
    text-align: center;
    font-size: 18px;
    color: #880506;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.login-register .register-link:hover{
	 color: #383838;
	 background: #f9f4e3;
}

/*==================== exam-login ==================*/

.exam-login{
    background: #f9f4e3;
    margin-top: 20px;
    padding: 15px 0px;
    position: relative;
}

.exam-login .exam-login-inner{
    margin: 0 20px;
}

.exam-login h2{
    position: relative;
    color: #880506;
    display: block;
    padding: 14px 0px 20px 36px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
}

.exam-login h2 i{
    position: absolute;
    top: 12px;
    left: 0px;
    color: #000000;
    font-size: 22px;
}

.exam-login .exam-login-col{
    padding: 7px 0px;
    position: relative;
}

.exam-login .exam-login-col input, .exam-login .exam-login-col textarea{
    display: block;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 7px 10px;
    font-size: 14px;
}

.exam-login .exam-login-col select{
    display: block;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 8px 10px;
    font-size: 14px;
}

.exam-login .exam-login-col input[type="submit"]{
    display: inline-block;
    width: auto;
    padding: 7px 23px;
    background: #880506;
    color: #fdfdfd;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.exam-login .exam-login-col input[type="submit"]:hover{
    background: #cc0002;
    color: #ffca00;
}

.exam-login .exam-login-col input[type="button"]{
    display: inline-block;
    width: auto;
    padding: 7px 23px;
    background: #06C;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.exam-login .exam-login-col input[type="submit"]:hover{
    background: #999;
    color: #06C;
}

.exam-login .exam-login-col .forgot-password{
    position: absolute;
    top: 15px;
    right: 0px;
    font-size: 16px;
    color: #00689a;
}

.exam-login .exam-login-col .forgot-password:hover{
	color: #880506;
}

.exam-login .row{
    background: #f3f1f1;
    padding: 5px 0px 0;
    text-align: left;
    margin-bottom: 5px;
}

.exam-login .row h4{
    padding: 5px 13px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 900;
    color: #0f61fc;
}

.exam-login .row p{
    padding: 0 14px;
    font-size: 15px;
}

.exam-login .exam-login-col label{
    display: block;
    text-align: left;
    font-size: 12px;
    color: #232222;
    padding: 1px;
}

.exam-login .exam-login-col label span{
    color: #960000;
    font-size: 17px;
    font-weight: 900;
    margin-left: 5px;
}

.exam-login .exam-login-col strong{
    display: block;
    min-height: 28px;
    text-align: left;
    font-size: 13px;
    padding: 4px 2px;
    color: #940404;
}

.fontawsome-bullet{
    display: block;
    list-style: none !important;
}

.fontawsome-bullet li{
    padding-left: 24px !important;
}

.fontawsome-bullet li i{
    position: absolute;
    margin-left: -20px;
    margin-top: 4px;
}

.table{
	width:100%;
	border: 1px solid #efefef;
	margin-top:20px;
}

.table thead{
    background: #007fab;
    color: #ffffff;
}

.table thead th{
    text-align: center;
    border: 1px solid #e2e2e2;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    padding: 11px 0px !important;
}

.table tbody{
	
}

.table tbody tr{
    background: #e2dfdf;
}

.table tbody tr:nth-child(odd){
    background: #CCC;
}

.table tbody tr:hover{
	background: #fff;
}

.table tbody tr td{
    font-size: 14px;
    border: 1px solid #e8e8e8;
	vertical-align:middle;
}

.application-phase{
    display: block;
}

.application-phase li{
    float: left;
    width: 25%;
}

.application-phase li i{
    margin-right: 7px;
}

.application-phase li a{
    display: block;
    padding: 10px 15px;
    margin: 0 2px;
    background: #036602;
    color: #f0be02;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
	position:relative;
}

.application-phase li a:hover, .application-phase li a.active{
    background: #f5c100;
    color: #660202;
    font-weight: 900;
}

.application-phase li a.active:after{
    content: "\f0d7";
    font-family: 'FontAwesome';
    font-size: 43px;
    display: block;
    position: absolute;
    left: 45%;
    bottom: -35px;
    color: #f5c100;
}

.has-error{
    display: block;
    padding: 10px 10px 10px 49px;
    margin-bottom: 20px;
    background: #FFF;
    font-size: 14px;
    color: #920000;
    position: relative;
    text-align: left;
}

.has-error i{
    background: #920000;
    color: #FFF;
    padding: 8px 10px;
    position: absolute;
    left: 5px;
    top: 5px;
}

.member{
		
}

.member img{
		
}

.member h1{
		
}

.member h1{
		
}

.scroll-news{
    position: relative;
    background: #ececec;
    padding: 11px 21px 11px 162px;
    overflow: hidden;
}

.scroll-news:after{
    display: block;
    position: absolute;
    content: "Latest News";
    left: 0;
    top: 0;
    padding: 11px 10px;
    background: #f5c200;
    color: #000000;
    font-weight: 900;
    width: 131px;
}

.scroll-news:before{
    font-family: 'FontAwesome';
    display: block;
    position: absolute;
    content: "\f0da";
    left: 129px;
    top: -32px;
    font-size: 76px;
    color: #f5c200;	
}

.scroll-news ul{
    list-style: outside;
    list-style-type: square;
}

.scroll-news ul li{
    display: inline-block;
    list-style-type: square;
    list-style: outside;
    margin-right: 25px;
    position: relative;
}

.scroll-news ul li a{
    font-size: 14px;
    color: #9a0000;
    font-weight: bold;
}

.exam-registration-print{
    float: right;
    display: inline-block;
    padding: 6px 13px;
    margin-bottom: 12px;
    background: #007fda;
    font-size: 17px;
    text-transform: uppercase;
    color: #fdfe00;
}

.exam-registration-print i{
    color: #f6c200;
    font-size: 17px;
    margin-right: 4px;
}

.exam-registration-print:hover{
	background: #ffca00;
	color: #000000;
}

.exam-registration-print:hover i{
    color: #005a8e;
}


/*==================== Responsive ==================*/



@media screen and (max-width: 1179px)
{
	.menu ul li a{
		font-size: 10px;
		padding: 15px 5px;
	}
}

@media screen and (max-width: 980px)
{
	
	.header .container{
		width: auto;
		margin: 0;
	}
	
	.header a.logo{    
		display: block;
		margin-right: 0;
		position: relative;
		top: 0;
		margin: 9px 24px 9px 0px;
		width: 90px;
	}
	
	.header .name{
		height:auto;
		width:100%;	
		float:none;
	}
	
	.header .header-right{
		float: none;
		width: 100%;
		padding-top: 0px;
		margin: 0;
	}
	
	.header .top-bar {
		border-bottom-left-radius: 0%;
		border-bottom-right-radius: 0%;
	}
	
	.header .top-bar .top-bar-left{
		float: none;
		display: block;
	}
	
	.header .top-bar .top-bar-right{
		float: none;
		display: block;
	}
	
	.header .top-bar ul li {
		margin-bottom: 4px;
	}
	
	.menu{
		position: absolute;
		float: none;
		width: 90%;
		left: 5%;
    	top: 106px;
	}

	.menu i{
    	display: table;
    	background: #f5c200;
	}
	
	.menu > ul{
    	display: none;
		position: absolute;
		width: 100%;
    	background: #fffee2;
    	margin-top: 12px;
		z-index:9999;
		left:0;
	}
	
	.menu ul li{
    	display: block;
	}
	
	.menu ul li a{
    	padding: 11px 13px;
    	color: #af0007;
	}
	
	.menu ul ul{
		display:none;
		position:relative;
	}
	
	.menu ul li:hover > ul{
		display:block;
	}
	
	.cctv-information .cctv-information-col1{
		width: 100%;
		display: none;
	}
	
	.security-about .col-xs-offset-4{
		margin:0;	
	}
	
	.security-about .text-right .vertical-line{
		margin-bottom: 45px !important;
	}
	
	.security-about .text-left .vertical-line{
		margin-top: 229px !important;
	}
	
	.inner-slide img{
    	min-height: 126px;
	}
	
	.inner-slide .inner-box {
		top: 22%;
	}
	
	.inner-slide .inner-box h2 {
		font-size: 23px;
	}
	
	.product-list-panel{
		display: block;
		float: none;
		width: 100%;
		margin: 0 0 20px 0;
		position: relative;
	}
	
	.product-grid-panel{
    	margin: 37px 0 30px 0;
	}
	
	.footer .up .dotted:after{
		display:none;
	}
	
	
}
