/*

	Template Name: Hawkeye

*/


/*======================================================*/
/* FONTS */
/*======================================================*/
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url("assets/fonts/Lato/Lato-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: italic;
  src: url("assets/fonts/Lato/Lato-Italic.ttf") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 300;
  font-style: normal;
  src: url("assets/fonts/Lato/Lato-Light.ttf") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  font-style: normal;
  src: url("assets/fonts/Lato/Lato-Bold.ttf") format("opentype");
}




/*======================================================*/
/* GENERAL */
/*======================================================*/

*{
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

body{
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 300;
	color: #FFF;
}

body.logged-in{
	
}

a{
	color: #06cd0a;
	text-decoration: underline;
	transition: all .2s;
}

.container{
	max-width: 100%;
	width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.row{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.column{
	display: flex;
	flex-direction: column;
}

section{
	max-width: 100%;
}

video{
	max-width: 100%;
	width: 100%;
	height: auto;
}

h1,h2,h3,
h4,h5,h6{
	font-family: 'Lato', sans-serif;
	color: #06cd0a;
	font-weight: 300;
	text-transform: uppercase;
	margin: 0 0 30px;
}

h1{}
h2{
	font-size: 38px;
}
h3{
	font-size: 22px;
}
h4{}


@media(max-width: 1200px){
	h2{
		font-size:32px;
	}
}
@media(max-width: 767px){
	h2{
		font-size: 28px;
	}
}


p{
	font-family: 'Lato', sans-serif;
	color: #FFF;
}

a{
	font-family: 'Lato', sans-serif;
}


input:not([type=submit]),
textarea,
select{
	display: inline-block;
	width: 100%;
	background: initial;
	border: 1px solid #FFF;
	border-radius: 0!important;
	font-size: 18px;
	line-height: 1.3;
	color: #FFF;
	padding: 18px 20px;
	transition: all .2s;
}
input:not([type=submit]):focus,
textarea:focus,
select:focus{
	outline: none;
	border: 1px solid #06cd0a;
}

input[type=submit]{
	width: fit-content;
	margin-left: auto;
	padding: 20px 50px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 400;
	color: #FFF;
	background: none;
	border: 1px solid #FFF;
	border-radius: 0!important;
	transition: all .2s;
	cursor: pointer;
}
input[type=submit]:hover{
	border: 1px solid #06cd0a;
	color: #06cd0a;
	outline: none;
}


.scroll-to-me{
	position: relative;
	top: -150px;
	display: block;
	visibility: hidden;
}
@media(max-width: 715px){
	.scroll-to-me{
		position: relative;
		top: -200px;
		display: block;
		visibility: hidden;
	}
}
@media(max-width: 400px){
	.scroll-to-me{
		position: relative;
		top: -230px;
		display: block;
		visibility: hidden;
	}
}


.show-mobile{ display: none; }
@media(max-width: 768px){
	.show-mobile{ display: block; }
	.hide-mobile{ display: none; }
}



/*======================================================*/
/* HEADER */
/*======================================================*/
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	transition: all .3s;
}
header.sticky{
	background-color: rgba(0,0,0,.5);
}
body.logged-in header{ top: 32px; }
	header .header-container{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: center;
		padding: 25px 30px;
	}
		header .header-container .logo{}
		header .header-container .menu-box{}
			header .header-container .menu-box ul.menu{
				display: flex;
				flex-direction: row;
				flex-wrap: wrap;
				justify-content: center;
				align-content: center;
				margin: 0;
				padding: 0;
			}
				header .header-container .menu-box ul.menu li{
					list-style-type: none;
					display: flex;
					flex-direction: column;
					margin: 0 5px;
				}
					header .header-container .menu-box ul.menu li a{
						display: inline-block;
						padding: 15px;
						font-family: 'Lato', sans-serif;
						font-size: 18px;
						line-height: 1;
						color: #FFF;
						text-transform: uppercase;
						text-decoration: none!important;
					}
					header .header-container .menu-box ul.menu > li:last-child a{
						border: 1px solid #FFF;
					}
					header .header-container .menu-box ul.menu li:hover a{
						color: #06cd0a;
						border-color: #06cd0a;
					}

					
				header .header-container .menu-box ul.menu > li{

				}

@media(max-width: 799px){
	header .header-container .menu-box ul.menu li a{
		padding: 15px 10px;
	}
}
@media(max-width: 767px){
	body{
		margin-top: 113px;
	}
	header{
		background-color: rgba(0,0,0,.5);
	}
	header .header-container{
		justify-content: center;
	}
}
@media(max-width: 715px){
	body{
		margin-top: 163px;
	}
}
@media(max-width: 599px){
	header .header-container{
		justify-content: center;
	}
	header .header-container .menu-box ul.menu li{
		margin: 5px 2px;
	}
		header .header-container .menu-box ul.menu li a{
			padding: 10px 5px;
			font-size: 16px;
		}
}
@media(max-width: 400px){
	body{
		margin-top: 207px;
	}
}




/*======================================================*/
/* BLOCKS */
/*======================================================*/


/* HERO BLOCK */
section.hero-banner{
	position: relative;
	display: inline-block;
	width: 100%;
}
	.hero-banner .banner{
		line-height: 0;
	}
	.hero-banner .overlay-text{
		position: absolute;
		bottom: 10%;
		right: 30px;
		display: inline-block;
		width: 70%;
	}
		.hero-banner .overlay-text img{
			display: inline-block;
			width: 100%;
			height: auto;
		}


/* ABOUT SECTION */
.about-section{
	display: inline-block;
	width: 100%;
	padding: 80px 0;
	background-attachment: fixed;
	background-position: right;
	background-repeat: no-repeat;
}
	.about-section h2{
		margin: 0 0 30px;
		font-weight: 300;
		color: #06cd0a;
		text-transform: uppercase;
	}
	.about-section .content{
		max-width: 100%;
		width: 545px;
		color: #FFF;
	}
		.about-section .content strong{
			display: inline-block;
			max-width: 410px;
		}

/* VIDEOS SECTION */
.videos{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}
	.videos .video{
		display: flex;
		flex-direction: column;
		width: 33.3333%;
		flex: 0 0 33.3333%;
	}
		.videos .video .poster{
			position: relative;
			display: inline-block;
			height: 0;
			padding-bottom: 56.65%;
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			transition: all .3s;
			cursor: pointer;
		}
		.videos .video .poster:after{
			position: absolute;
			top: calc(50% - 20.5px);
			left: calc(50% - 20.5px);
			z-index: 999;
			content: '';
			width: 41px;
			height: 41px;
			background-image: url('assets/images/play-btn.png');
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
		}
		.videos .video .poster .overlay{
			position: absolute;
			top: 0;
			left: 0;
			z-index: 999;
			width: 100%;
			height: 100%;
			background-color: rgba(0,0,0,.8);
			opacity: 0;
			transition: all .3s;
		}
		.videos .video .poster:hover .overlay{
			opacity: 1;
		}

	.video-popup{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10000;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.8);
	}
		.video-popup .bg{
			position: absolute;
			top: 0;
			left: 0;
			z-index: 999;
			width: 100%;
			height: 100%;
		}
		.video-popup .close{
			position: absolute;
			top: 50px;
			right: 50px;
			z-index: 999;
			display: flex;
			flex-direction: column;
			flex-wrap: wrap;
			align-content: center;
			justify-content: space-between;
			width: 30px;
			height: 30px;
			padding: 5px;
			cursor: pointer;
		}
			.video-popup .close .line{
				display: inline-block;
				width: 100%;
				height: 2px;
				background-color: #FFF;
				transition: all .3s;
			}
			.video-popup .close:hover .line{
				background-color: #06cd0a;
			}
			.video-popup .close .line:first-child{ transform: rotate(45deg) translate(6px,6px); }
			.video-popup .close .line:last-child{ transform: rotate(-45deg) translate(7px,-6px); }
		.video-popup .video-inner{
			display: flex;
			flex-direction: column;
			flex-wrap: wrap;
			align-content: center;
			justify-content: center;
			width: 100%;
			height: 100%;
		}
			.video-popup .video-inner video{
				position: relative;
				z-index: 999;
				max-width: 100%;
				width: 1200px;
				height: auto;
			}

@media(max-width: 768px){
	.videos .video{
		width: 50%;
		flex: 0 0 50%;
	}
}
@media(max-width: 449px){
	.videos .video{
		width: 100%;
		flex: 0 0 100%;
	}
}



/* Info Section */
.info-section{
	padding: 0 0 40px;
}
	.info-section .product-image{

	}
		.info-section .product-image img{
			max-width: 100%;
			width: 100%;
			height: auto;
		}
	.info-section .row{
		margin-top: 50px;
	}
		.info-section .row .column{
			justify-content: center;
		}
		.info-section .row .column.left{
			width: calc(200% / 3);
			flex: 0 0 calc(200% / 3);
		}
		.info-section .row .column.right{
			width: calc(100% / 3 );
			flex: 0 0 calc(100% / 3);
			padding-left: 50px;
		}
			.info-section h2{ margin-bottom: 0; }
			.info-section .pdf-box{
				position: relative;
				display: inline-block;
				max-width: 100%;
				width: 400px;
				margin: 0 auto;
				text-align: center;
				padding: 50px 20px 30px;
				border: 1px solid #06cd0a;
				border-top: 0;
			}
			.info-section .pdf-box:before,
			.info-section .pdf-box:after{
				content: '';
				position: absolute;
				top: 0;
				width: calc( 50% - 46px);
				height: 1px;
				background-color: #06cd0a;
			}
			.info-section .pdf-box:before{
				left: 0;
			}
			.info-section .pdf-box:after{
				right: 0;
			}
				.info-section .pdf-box .spec-img{
					position: absolute;
					top: -31px;
					left: calc(50% - 31px);
					z-index: 999;
					width: 62px;
					height: 62px;
					background-image: url(assets/images/spec-arrow.png);
					background-size: contain;
					background-position: center;
					background-repeat: no-repeat;
				}
				.info-section .pdf-box h3{
					text-transform: initial;
				}
				.info-section .pdf-box .pdf{
					margin-bottom: 10px;
				}
					.info-section .pdf-box .pdf a{
						font-weight: 700;
						color: #FFF;
						text-decoration: none;
					}
					.info-section .pdf-box .pdf a:hover{
						color: #06cd0a;
					}

@media(max-width: 1023px){
	.info-section .row .column.left{
		width: 60%;
		flex: 0 0 60%;
	}
	.info-section .row .column.right{
		width: 40%;
		flex: 0 0 40%;
	}
	.info-section .row .column.left{ padding-right: 20px; }
	.info-section .row .column.right{ padding-left: 20px; }
}
@media(max-width: 768px){

	.info-section{
		margin-top: 50px;
	}

	.info-section h2{
		width: 100%;
		text-align: center;
		margin-bottom: 25px;
	}

	.info-section .row{
		margin-top: 0;
	}
		.info-section .row .column.left{
			width: 100%;
			flex: 0 0 100%;
		}
		.info-section .row .column.right{
			width: 100%;
			flex: 0 0 100%;
		}
		.info-section .row .column.left{ padding-right: 0px; }
		.info-section .row .column.right{ margin-top: 75px; padding-left: 0px; }
}


/* Info Section */
.camera-section{
	padding: 120px 20px 20px;
/*	background-image: url(assets/images/camera-bg-1-min.png), url(assets/images/camera-bg-2-min.png);*/
/*	background-image: url(assets/images/camera-bg-1-v2.jpg), url(assets/images/camera-bg-2-min.png);*/
	background-image:  url(assets/images/hawkeye-mobile-camera-background-V2.jpg), url(assets/images/hawkeye-mobile-camera-background-V2.jpg);
	background-position: left bottom, right top;
	background-repeat: no-repeat, no-repeat;
}
	.camera-section .cameras{
	}
		.camera-section .cameras .column{
			width: 50%;
			flex: 0 0 50%;
			flex-wrap: wrap;
			align-content: center;
			justify-content: center;
			padding: 30px;
		}
			.camera-section .cameras .column img{

			}
	.camera-section .row.camera-info{
		margin: 100px 0;
	}
		.camera-section .row .column{
			justify-content: center;
		}
		.camera-section .row .column.left{
			width: calc(100% / 3);
			flex: 0 0 calc(100% / 3);
			padding-right: 50px;
		}
		.camera-section .row .column.right{
			width: calc(200% / 3);
			flex: 0 0 calc(200% / 3);
		}
			.camera-section h2{ margin-bottom: 0; }
			.camera-section .pdf-box{
				position: relative;
				display: inline-block;
				max-width: 100%;
				width: 400px;
				margin: 0 auto;
				text-align: center;
				padding: 50px 20px 30px;
				border: 1px solid #06cd0a;
				border-top: 0;
			}
			.camera-section .pdf-box:before,
			.camera-section .pdf-box:after{
				content: '';
				position: absolute;
				top: 0;
				width: calc( 50% - 46px);
				height: 1px;
				background-color: #06cd0a;
			}
			.camera-section .pdf-box:before{
				left: 0;
			}
			.camera-section .pdf-box:after{
				right: 0;
			}
				.camera-section .pdf-box .spec-img{
					position: absolute;
					top: -31px;
					left: calc(50% - 31px);
					z-index: 999;
					width: 62px;
					height: 62px;
					background-image: url(assets/images/spec-arrow.png);
					background-size: contain;
					background-position: center;
					background-repeat: no-repeat;
				}
				.camera-section .pdf-box h3{
					text-transform: initial;
				}
				.camera-section .pdf-box .pdf{
					margin-bottom: 10px;
				}
					.camera-section .pdf-box .pdf a{
						font-weight: 700;
						color: #FFF;
						text-decoration: none;
					}
					.camera-section .pdf-box .pdf a:hover{
						color: #06cd0a;
					}

	.camera-section .testimonials-container{
		position: relative;
		max-width: 100%;
		width: 790px;
		margin: 0 auto;
		padding: 20px;
		border-bottom: 1px solid #06cd0a;
	}
	.camera-section .testimonials-container:before,
	.camera-section .testimonials-container:after{
		content: '';
		position: absolute;
		top: 0;
		width: calc( 50% - 34px);
		height: 1px;
		background-color: #06cd0a;
	}
	.camera-section .testimonials-container:before{
		left: 0;
	}
	.camera-section .testimonials-container:after{
		right: 0;
	}
		.camera-section .testimonials-container .testimonials-icon{
			position: absolute;
			top: -15px;
			z-index: 999;
			left: calc(50% - 24px);
			width: 48px;
			height: 31px;
			background-image: url("assets/images/testimonials-icon.png");
			background-size: initial;
			background-position: center;
			background-repeat: no-repeat;
			padding: 0 20px;

		}
		.camera-section .testimonials{

		}
			.camera-section .testimonials .testimonial{
				text-align: center;
			}
				.camera-section .testimonials .testimonial .content{
					font-size: 20px;
					font-weight: 700;
				}
				.camera-section .testimonials .testimonial .author{ font-size: 20px; color: #FFF; }
				.camera-section .testimonials .testimonial .title{ font-size: 20px; color: #FFF; }
				.camera-section .testimonials .testimonial .company{ font-size: 20px; color: #FFF; }
				.camera-section .testimonials .testimonial .website a{ 
					font-size: 20px;
					color: #FFF;
				}

	.slick-arrow{
		position: absolute;
		top: calc(50% - 15px);
		width: 30px;
		height: 30px;
		padding: 5px;
		cursor: pointer;
		transition: all .2s;
	}
	.slick-arrow.prev{
		left: -37px;
	}
	.slick-arrow.next{
		right: -37px;
	}
		.slick-arrow .line{
			display: inline-block;
			width: 100%;
			height: 1px;
			background-color: #06cd0a;
		}
		.slick-arrow.prev .line:nth-child(1){ transform: rotate(-45deg) translate(9px, -14px); }
		.slick-arrow.prev .line:nth-child(2){ transform: rotate(45deg) translate(-21px, -16px); }
		.slick-arrow.next .line:nth-child(1){ transform: rotate(45deg) translate(-9px, -14px); }
		.slick-arrow.next .line:nth-child(2){ transform: rotate(-45deg) translate(21px, -16px); }

.brands_partners-header{
	display: inline-block;
	width: 100%;
	text-align: center;
	margin: 100px auto 0;
}
.brands_partners-container{
	max-width: 100%;
	width: 1245px;
	margin: 0 auto;
	padding: 70px 20px 100px;
}
	.brands_partners{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: center;
		justify-content: center;
		gap: 50px;
	}
		.brands_partners .brands_partner{
			opacity: .8;
			transition: all .2s;
		}
		.brands_partners .brands_partner:hover{
			opacity: 1;
		}


@media(max-width: 1023px){
	.camera-section .cameras .column img{
		width: 280px;
	}
}
@media(max-width: 1023px){
	.camera-section .row .column.left{
		width: 40%;
		flex: 0 0 40%;
	}
	.camera-section .row .column.right{
		width: 60%;
		flex: 0 0 60%;
	}
	.camera-section .row .column.left{ padding-right: 20px; }
	.camera-section .row .column.right{ padding-left: 20px; }
}
@media(max-width: 768px){

	.camera-section{
		padding-top: 40px;
/*		background-image:  url(assets/images/camera-bg-1-v2.jpg);*/
		background-image:  url(assets/images/hawkeye-mobile-camera-background-V2.jpg);
		background-position: right top;

	}

	.camera-section h2{
		width: 100%;
		text-align: center;
		margin-bottom: 25px;
		font-size: 25px;
	}

	.camera-section .row{
		margin-top: 0;
	}
		.camera-section .row.camera-info{
			flex-direction: column-reverse;
			margin-top: 0;
		}

		.camera-section .cameras .column{
			width: 100%;
			flex: 0 0 100%;
			flex-wrap: wrap;
			align-content: center;
		}
			.camera-section .cameras .column img{
				width: 250px;
			}
		.camera-section .row .column.left{
			width: 100%;
			flex: 0 0 100%;
		}
		.camera-section .row .column.right{
			width: 100%;
			flex: 0 0 100%;
		}
		.camera-section .row .column.left{ margin-top: 75px; padding-right: 0px; }
		.camera-section .row .column.right{ padding-left: 0px; }
}



/* Contact Section */
.contact-section{
	background-size: contain;
	background-position: left bottom;
	background-repeat: no-repeat;
}
	.contact-form-container{
		max-width: 100%;
		width: 580px;
		margin:  0 0 0 auto;
	}
		.contact-form-container .content{
			line-height: 1.6;
		}
			.contact-form-container .content a{
				text-decoration: none;
				color: #FFF;
			}
	.contact-form-container form.wpcf7-form{
		
	}
		.contact-form-container form.wpcf7-form p{
			display: flex;
			flex-direction: row;
			gap: 25px;
			max-width: 100%;

		}
		.contact-form-container form.wpcf7-form p:last-of-type{
			flex-direction: row-reverse;
		}
			.contact-form-container form.wpcf7-form p label{
				display: flex;
				flex-direction: column;
				flex: 1;
			}
				.contact-form-container form.wpcf7-form p label span{
					width: 100%;
				}
					.contact-form-container form.wpcf7-form p label span input,
					.contact-form-container form.wpcf7-form p label span textarea{
						width: 100%;
					}

@media(max-width: 1023px){
	.contact-section{
		background-image: initial!important;
	}
		.contact-form-container{
			margin: 0 auto;
		}
}


/*======================================================*/
/* HOMEPAGE */
/*======================================================*/

/* About Section */
.zoomscroll.no-overflow{
	overflow: hidden;
}



/*======================================================*/
/* FOOTER */
/*======================================================*/
.copyright{
	display: inline-block;
	width: 100%;
	padding: 60px 0;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #FFF;
}



/*======================================================*/
/* GENERAL */
/*======================================================*/
