@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
}
body::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 border-radius: 10px;
 background-color: #F5F5F5;
}
body::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 body::-webkit-scrollbar-thumb {
 background-color: #666;
}
h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0;
	padding: 0
}
a, button {
	text-decoration: none;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
img {
	max-width: 100%
}
/* CSS Document */

/* CSS header & slider */

.header-slider-main-wrap {
	background: url(../images/slider-bg.jpg) no-repeat top;
	background-size: cover;
	position: relative;
	overflow: hidden;
	padding-bottom: 90px
}

.header-slider-main-wrap:before {
	content: "";
	background: #fff;
	height: 124px;
	clip-path: polygon(50% 0%, 96% 0, 100% 30%, 0 28%, 4% 0);
	position: absolute;
	bottom: -92px;
	width: 78%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.header-main-wraper {
	padding: 20px 25px;
	border-top: 5px solid #CAFC01;
}
.header-main-wraper .site-logo-wrap img {
	width: 45px;
}
.header-navigation-wrap ul {
	list-style: none;
	text-align: center;
}
.header-navigation-wrap ul li {
	display: inline-block;
	padding: 12px 30px;
}
.header-navigation-wrap ul li a {
	color: #fff;
	font-size: 16px;
	opacity: 0.5;
	font-weight: 300;
}
.header-navigation-wrap ul li a:hover {
	opacity: 1;
}
.btn-header-order {
	text-align: right;
	padding: 12px 0;
}
.btn-header-order a {
	padding: 10px 30px;
	color: #fff;
	font-size: 12px;
	background: #282828;
	border-radius: 6px;
	font-weight: 500
}
.btn-header-order a:hover {
	background: #CAFC01;
	color: #000
}
.hero-area-wraper h1 {
	text-align: center;
	font-size: 120px;
	line-height: 180px;
	color: #fff;
	font-weight: 600;
	letter-spacing: -2px
}
.hero-area-wraper h1 span {
	display: block;
	text-transform: uppercase;
	color: #CAFC01;
	font-size: 275px;
	letter-spacing: -15px
}
.drone-image-hero {
	margin-top: -230px;
}
.hero-bottom-text {
	width: 32%;
	margin-top: -160px;
	margin-left: -80px;
}
.hero-bottom-text h2 {
	color: #fff;
	font-size: 40px;
	line-height: 42px;
}
.hero-bottom-text h2 span {
	display: block;
	color: #CAFC01;
}
.hero-bottom-text p {
	font-size: 19px;
	line-height: 28px;
	color: #fff;
	opacity: 0.5;
	padding: 15px 0;
	font-weight: 300
}
.hero-btn-wrap {
	margin-top: 15px;
	margin-bottom: 30px;
}
.hero-btn-wrap a {
	border: 1px solid #CAFC01;
	padding: 10px 20px;
	color: #CAFC01;
	border-radius: 6px;
	margin-right: 15px;
	font-size: 13px;
	font-weight: 500
}
.hero-btn-wrap a:nth-child(1) {
	background: #282828 !important;
	border: 1px solid #282828 !important;
	color: #fff !important;
}
.hero-btn-wrap a img {
	margin-left: 10px;
	margin-top: -2px;
}
.hero-btn-wrap a:hover {
	background: #CAFC01 !important;
	border: 1px solid #CAFC01 !important;
	color: #000 !important
}
.hero-btn-wrap a:hover img {
	filter: brightness(0%);
}
.sky {
	position: absolute;
	top: 37%;
	left: -74px;
	right: 0;
	margin: 0 auto;
}
.drone {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 60px;
	background: #333;
	border-radius: 10px;
	animation: hoverUpDown 4s ease-in-out infinite;
}
.propeller {
	position: absolute;
	top: -15px;
	width: 30px;
	height: 10px;
	background: #555;
	border-radius: 10px;
	animation: spin 0.2s linear infinite;
}
.propeller.left {
	left: 10px;
}
.propeller.right {
	right: 10px;
}
.camera {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 10px;
	background: #222;
	border-radius: 50%;
}
 @keyframes spin {
 0% {
transform: rotate(0deg);
}
 100% {
transform: rotate(360deg);
}
}
 @keyframes hoverUpDown {
 0% {
transform: translate(-50%, -50%) translateY(0);
}
 50% {
transform: translate(-50%, -50%) translateY(-20px);
}
 100% {
transform: translate(-50%, -50%) translateY(0);
}
}
.hero-right-video {
	width: 200px;
	background: url(../images/shape-bg-video.svg) no-repeat top;
	padding: 25px 17px 20px 17px;
	text-align: center;
	background-size: cover;
	position: absolute;
	bottom: 90px;
	right: 100px;
}
.hero-right-video h5 {
	color: #000;
	font-size: 24px;
	font-weight: 600;
	margin-top: 10px;
}
.hero-right-video p {
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	padding-bottom: 15px
}
.video-image-wrp {
	background: url(../images/bg-video.jpg) no-repeat top;
	background-size: cover;
	height: 130px;
	border-radius: 15px
}
.video-play-button {
	position: absolute;
	z-index: 10;
	top: 70%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 15px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	padding: 9px 24px 18px 28px;
}
.video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	animation: pulse-border 1800ms ease-out infinite;
}
.video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	transition: all 200ms;
}
.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 18px solid #000000;
	border-top: 10px solid transparent;
	border-bottom: 12px solid transparent;
}
 @keyframes pulse-border {
 0% {
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
 opacity: 1;
}
 100% {
 transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
 opacity: 0;
}
}

.fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 11111;
	background:#0f0f0f;
}
.fixed .site-logo-wrap img {
    width: 35px;
	position:relative;
	top:5px;
}
/* CSS header & slider */

/* CSS content */

.service-main-wraper {
	padding: 40px 0 80px 0;
	position: relative
}
.top-drone-image {
	position: absolute;
	top: -302px;
	width: 348px;
	left: 0;
	right: -400px;
	margin: 0 auto;
}
.service-main-wraper h4 {
	text-align: center;
}
.service-main-wraper h4 span {
	background: #F5FED1;
	padding: 8px 15px;
	color: #AACF15;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 6px;
	position: relative;
	z-index: 111
}
.service-main-wraper h2 {
	text-align: center;
	font-size: 50px;
	color: #000;
	padding: 15px 0 5px 0;
	font-weight: 600;
	letter-spacing: -1px
}
.service-main-wraper p {
	font-size: 18px;
	color: #6E6E6E;
	text-align: center;
	padding-bottom: 40px;
}
.listing-service-wrap {
	padding: 25px;
	background: #F2F2F2;
	border-radius: 15px;
}
.listing-service-wrap:hover {
	background: #CAFC01;
	transition: ease-in 0.5s;
	-moz-transition: ease-in 0.5s;
	-webkit-transition: ease-in 0.5s;
	-ms-transition: ease-in 0.5s;
	-o-transition: ease-in 0.5s;
}
.listing-service-wrap:hover p {
	color: #000;
}
.listing-service-wrap:hover .list-heading-icon {
	background: #000;
	transition: ease-in 0.8s;
	-moz-transition: ease-in 0.8s;
	-webkit-transition: ease-in 0.8s;
	-ms-transition: ease-in 0.8s;
	-o-transition: ease-in 0.8s;
}
.listing-service-wrap:hover .list-heading-icon img {
	filter: brightness(0) invert(1);
}
.list-heading-wrap {
	display: flex;
	gap: 15px;
	align-items: center;
}
.list-heading-wrap .list-heading-icon {
	width: 60px;
	height: 60px;
	background: #CAFC01;
	text-align: center;
	padding-top: 18px;
	border-radius: 50%;
}
.list-heading-wrap .list-heading-text {
	width: 70%;
	float: left;
	font-size: 22px;
	color: #000;
	font-weight: 600;
	line-height: 26px;
}
.list-heading-wrap .list-heading-text span {
	display: block;
}
.listing-service-wrap p {
	font-size: 17px;
	margin: 15px 0;
	padding: 0;
	line-height: 26px;
	text-align: left
}
.service-list-image {
	height: 240px;
	overflow: hidden;
	border-radius: 15px;
}
.owl-nav {
	position: absolute;
	top: 190px;
	width: 100%;
	text-align: right;
}
.owl-nav button {
	border: none;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	color: #fff !important;
	padding-top: 0;
	display: inline-block;
	font-size: 28px;
	margin-right: 5px;
}
.owl-prev {
	position: absolute;
	left: -70px;
	background: #F4F4F4 url(../images/left-arrow.svg) no-repeat top !important;
	background-position: 50% !important;
	background-size: 30% !important;
}
.owl-next {
	position: absolute;
	right: -70px;
	background: #F4F4F4 url(../images/right-arrow.svg) no-repeat top !important;
	background-position: 50% !important;
	background-size: 30% !important;
}
.owl-prev:hover {
	background-color: #CAFC01 !important;
}
.owl-next:hover {
	background-color: #CAFC01 !important;
}
.why-choose-main-wraper {
	padding: 80px 0 60px 0;
	background: url(../images/whychoose-bg.jpg) no-repeat top;
	background-size: cover;
	position: relative;
}
.why-choose-main-wraper:before {
	content: "";
	position: absolute;
	background: url(../images/drone-2.png) no-repeat top;
	background-size: contain;
	width: 400px;
	height: 210px;
	background-size: contain;
	top: -70px;
	right: -50px
}
.why-choose-main-wraper h5 {
	text-align: center;
}
.why-choose-main-wraper h5 span {
	background: #B7DC18;
	padding: 8px 15px;
	color: #1F2116;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 6px;
	position: relative;
	z-index: 111;
}
.why-choose-main-wraper h2 {
	text-align: center;
	font-size: 50px;
	color: #000;
	padding: 15px 0 5px 0;
	font-weight: 600;
	letter-spacing: -1px;
}
.why-choose-main-wraper p {
	font-size: 18px;
	color: #000;
	text-align: center;
	padding-bottom: 40px;
}
.listing-why-choos-wrp ul {
	list-style: none;
	margin-top: 20px
}
.listing-why-choos-wrp ul li {
	background: url(../images/why-choose-bg.svg) no-repeat top;
	background-size: cover;
	padding: 35px;
	height: 260px;
	position: relative;
}
.listing-why-choos-wrp ul li:hover {
	position: relative;
	top: -10px;
	transition: ease-in 0.8s;
	-moz-transition: ease-in 0.8s;
	-webkit-transition: ease-in 0.8s;
	-ms-transition: ease-in 0.8s;
	-o-transition: ease-in 0.8s;
}
.listing-why-choos-wrp ul li:nth-child(2) {
	background: url(../images/why-choose-bg-1.svg) no-repeat top;
	background-size: cover;
	padding-top: 60px;
}
.listing-why-choos-wrp ul li .list-why-choose .why-choose-icon {
	width: 65px;
	height: 55px;
	background: #CAFC01;
	text-align: center;
	border-radius: 6px;
	padding-top: 15px;
}
.listing-why-choos-wrp ul li .list-why-choose h4 {
	font-size: 22px;
	color: #fff;
	margin: 15px 0 15px 0;
}
.listing-why-choos-wrp ul li .list-why-choose span {
	font-size: 16px;
	color: #989898;
}
.list-why-choose-text strong {
	position: absolute;
	top: 30px;
	right: 30px;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
}
.listing-why-choos-wrp ul li:nth-child(2) strong {
	top: 50px;
}
.list-why-choose-image {
	text-align: center;
}
.list-why-choose-image img {
	width: 400px;
}
.order-now-btn {
	text-align: center;
	margin-top: 35px
}
.order-now-btn a {
	padding: 15px 40px;
	background: #0F0F0F;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 6px
}
.our-product-main-wrap {
	padding: 80px 0;
	position: relative;
}
.our-product-main-wrap:before {
	content: "";
	position: absolute;
	background: url(../images/drone-4.png) no-repeat top;
	background-size: contain;
	width: 400px;
	height: 210px;
	background-size: contain;
	top: -70px;
	left: 30px
}
.our-product-main-wrap h6 {
	text-align: center;
}
.our-product-main-wrap h6 span {
	background: #F5FED1;
	padding: 8px 15px;
	color: #AACF15;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 6px;
	position: relative;
	z-index: 111;
}
.our-product-main-wrap h2 {
	text-align: center;
	font-size: 50px;
	color: #000;
	padding: 15px 0 5px 0;
	font-weight: 600;
	letter-spacing: -1px;
}
.our-product-main-wrap p {
	font-size: 18px;
	color: #6E6E6E;
	text-align: center;
	padding-bottom: 40px;
}
.product-listing-wrap {
	background: url(../images/products-bg.svg) no-repeat top;
	background-size: cover;
	padding: 35px;
}
.product-listing-wrap h4 {
	font-size: 22px;
	color: #000;
	font-weight: 600;
	line-height: 26px;
	margin-top: 25px;
	margin-bottom: 30px;
	text-align: center;
}
.product-price-btn {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 22px;
	color: #000;
	font-weight: 600;
}
.product-price-btn span {
	position: relative;
	top: 20px;
}
.product-price-btn a {
	display: inline-block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #CAFC01;
	position: absolute;
	right: 30px;
	bottom: 30px;
	text-align: center;
	padding-top: 5px;
}
.product-price-btn a img {
	width: 15px;
}
.product-image-wrap {
	height: 230px;
	overflow: hidden;
	padding-top: 25px;
}
.our-product-main-wrap .owl-carousel .owl-stage-outer {
	overflow: visible;
}
.our-product-main-wrap .owl-nav {
	top: 44%;
}
.our-product-main-wrap .owl-nav .owl-prev {
	position: absolute;
	left: -28px;
	background: #eaeaea url(../images/left-arrow.svg) no-repeat top !important;
	background-position: 50% !important;
	background-size: 30% !important;
}
.our-product-main-wrap .owl-nav .owl-next {
	position: absolute;
	right: -28px;
	background: #eaeaea url(../images/right-arrow.svg) no-repeat top !important;
	background-position: 50% !important;
	background-size: 30% !important;
}
.demo-cta-video-wrap {
	padding: 80px 0 60px 0;
	background: url(../images/bg-video-section.jpg) no-repeat top;
	background-size: cover !important;
	position: relative;
}
.demo-cta-video-wrap h5 {
	text-align: center;
}
.demo-cta-video-wrap h5 span {
	background: #AACF15;
	padding: 8px 15px;
	color: #000;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 6px;
	position: relative;
	z-index: 111;
}
.demo-cta-video-wrap h2 {
	text-align: center;
	font-size: 50px;
	color: #fff;
	padding: 15px 0 0px 0;
	font-weight: 600;
	letter-spacing: -1px;
}
.demo-cta-video-wrap p {
	font-size: 18px;
	color: #fff;
	text-align: center;
	padding-bottom: 40px;
	opacity: 0.4
}
.video-image-drone {
	width: 80%;
	margin: auto;
}
.demo-cta-video-wrap .video-play-button {
	top: 58%;
}
.learn-more-contact {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 30px;
}
.learn-more-contact a {
	border: 1px solid #CAFC01;
	padding: 10px 20px;
	color: #CAFC01;
	border-radius: 6px;
	margin-right: 15px;
	font-size: 13px;
	font-weight: 500;
}
.learn-more-contact a:nth-child(1) {
	background: #282828 !important;
	border: 1px solid #282828 !important;
	color: #fff !important;
}
.learn-more-contact a img {
	margin-left: 10px;
	margin-top: -2px;
}
.learn-more-contact a:hover {
	background: #CAFC01 !important;
	color: #000 !important
}
.learn-more-contact a:hover img {
	filter: brightness(0%);
}


.demo-cta-video-wrap:before {
    content: "";
    position: absolute;
    background: url(../images/drone-5.png) no-repeat top;
    background-size: contain;
    width: 400px;
    height: 210px;
    background-size: contain;
    top: -30px;
    right: -50px;
}
.faq-main-wraper{
	padding:60px 0;
	position:relative;
}
.faq-main-wraper:before {
    content: "";
    position: absolute;
    background: url(../images/drone-7.png) no-repeat top;
    background-size: contain;
    width: 500px;
    height:500px;
    background-size: contain;
    top: -130px;
    left: -50px;
}
.faq-main-wraper h5{
	text-align:center
}
.faq-main-wraper h5 span{
    background: #F5FED1;
    padding: 8px 15px;
    color: #AACF15;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
    z-index: 111;
}
.faq-main-wraper h3{
	text-align: center;
    font-size: 50px;
    color: #000;
    padding: 15px 0 5px 0;
    font-weight: 600;
    letter-spacing: -1px;
}
.faq-main-wraper p{
	font-size: 18px;
    color: #6E6E6E;
    text-align: center;
    padding-bottom: 40px;
}
.faq-main-wraper .accordion{
	width:85%;
	margin:0 auto;
}
.faq-main-wraper .accordion-item{
	margin-bottom:15px;
	background:#F2F2F2;
	border:none;
	border-radius:10px !important
}
.faq-main-wraper .accordion-item button{
	background:none !important;
	color:#000 !important;
	padding:18px 22px;
	box-shadow:none;
	outline:none;
	font-size:17px
}
.faq-main-wraper .accordion-item .accordion-body{
	border-top:1px solid #DADADA;
}
.faq-main-wraper .accordion-item .accordion-body p{
	padding:0;
	margin:0;
	text-align:left;
	font-size:16px;
}
.faq-main-wraper .accordion-button::after{
	background-image:url(../images/arrow-collapse.svg);
	width:2rem;
	height:2rem;
	background-size:100%;
}
.right-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  transition: right 0.4s ease;
  z-index: 1001;
  padding: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.right-drawer.active {
  right: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

#closeDrawer {
  background: none;
  border: none;
  font-size: 24px;
  float: right;
  cursor: pointer;
}
#openDrawer{
    position: absolute;
    right: 0;
    top: 31px;
    background: #cafc01;
    right: 24px;
    color: #000;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 6px;
	display:none;
}
/* CSS content */

/* CSS footer */

.footer-main-wraper{
	background:url(../images/bg-video-section.jpg) no-repeat top;
	padding-top:60px;
	padding-bottom:30px;
	background-size:cover;
}
.footer-logo{
	text-align:center;
}
.footer-main-wraper ul{
	list-style:none;
	padding:20px 0;
	border-bottom:1px solid #505050;
	border-top:1px solid #505050;
	text-align:center;
	margin:30px 0;
}
.footer-main-wraper ul li{
	display:inline-block;
	padding:0 25px;
}
.footer-main-wraper ul li a{
	color:#fff;
	opacity:0.5;
}
.footer-main-wraper ul li a:hover{
	opacity:1;
}
.copy-right-wrap{
	text-align:center;
	font-size:16px;
	color:#fff;
}

/* CSS footer */

/* CSS media */

@media (max-width:1300px) and (min-width:1170px) {
.header-navigation-wrap ul li {
    display: inline-block;
    padding: 12px 15px;
}
.hero-area-wraper h1 {
    font-size: 80px;
    line-height: 137px;
}
.hero-area-wraper h1 span {
    font-size: 175px;
}
.sky{
	display:none;
}
.hero-bottom-text {
    width: 35%;
    margin-left: 0;
}
.service-list-image {
    height: 200px;
}

}
@media screen and (max-width:1169px) {
.header-navigation-wrap {
	display:none;
}
.btn-header-order {
	display:none;
}
.hero-area-wraper h1 {
	font-size: 40px;
        line-height: 66px;
		margin-top:30px
}
.hero-area-wraper h1 span{
	font-size:80px;
	letter-spacing:0;
}
.hero-bottom-text{
	position:static;
	margin:0;
	width:80%;
	margin:0 auto;
	margin-top:20px
}
.hero-bottom-text a{
	display:block;
	text-align:center;
	margin-bottom:10px;
}
.hero-bottom-text h2{
	display:none;
}
.hero-bottom-text p{
	display:none;
}
.sky{
	display:none;
}
.drone-image-hero{
	margin-top:30px;
}
.hero-right-video{
	display:none;
}
.top-drone-image{
	display:none;
}
.service-main-wraper h2{
	font-size:40px;
}
.why-choose-main-wraper:before{
	display:none;
}
.service-main-wraper{
	padding-bottom:40px;
}
.why-choose-main-wraper h2{
	font-size:40px;
}
.why-choose-main-wraper p{
	padding-bottom:20px;
}
.no-mobile{
	display:none;
}
.why-choose-main-wraper {
    background: #cafc01;
}
.our-product-main-wrap:before{
	display:none;
}
.our-product-main-wrap h2{
	font-size:40px;
}
.our-product-main-wrap .owl-nav{
	display:none;
}
.demo-cta-video-wrap:before{
	display:none;
}
.faq-main-wraper:before{
	display:none;
}
.faq-main-wraper h3{
	font-size:40px;
}
.faq-main-wraper .accordion{
	width:100%;
}
.footer-main-wraper {
    background: #0f0f0f;
}

.footer-main-wraper ul li{
	display:block;
}
#openDrawer{
	display:block;
}
.menu-drawer ul{
	list-style:none;
	padding:40px 0;
}
.menu-drawer ul li a{
	font-size:15px;
	color:#000;
	padding:14px 0;
	border-bottom:1px solid #e8e8e8;
	display:block;
}
}

/* CSS media */









