/*-------------------- DEFAULT STYLES --------------------*/
html{
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
body{
	color: #a4a4a4;
	font-size: 17px;
	line-height: 1.47em;
	font-family: 'Open Sans', serif;
	min-width: 320px;
	background: #131213;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
}
*{
	box-sizing:border-box;
	outline:none !important;
}
*:before, *:after{
	box-sizing:border-box;
}
.hide{
	display:none;
}
b, strong{
	font-weight:bold;
}
button, input[type="button"], input[type="submit"]{
	transition: .3s ease;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
button[disabled], html input[disabled]{
	cursor:default;
}
button::-moz-focus-inner, input::-moz-focus-inner{
	padding:0;
	border:0;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="search"],textarea{
	display: block;
	width: 100%;
	height: 46px;
	padding: 8px 10px 10px 42px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	background-color: transparent;
	font-weight: 500;
	transition: .3s ease;
}
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea{
	border: 1px solid #5f5f5f;
}
textarea{
	resize: none;
	height: 184px;
	padding-top: 16px;
}
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus{
	border-color: #45a7ef;
}
input::-moz-placeholder {             color: #5a595a; font-weight: 700;}
input::-webkit-input-placeholder {    color: #5a595a; font-weight: 700;}
input:-ms-input-placeholder {         color: #5a595a; font-weight: 700;}
input::-ms-input-placeholder {        color: #5a595a; font-weight: 700;}
input::placeholder {                  color: #5a595a; font-weight: 700;}
textarea::-moz-placeholder {          color: #5a595a; font-weight: 700;}
textarea::-webkit-input-placeholder { color: #5a595a; font-weight: 700;}
textarea:-ms-input-placeholder {      color: #5a595a; font-weight: 700;}
textarea::-ms-input-placeholder {     color: #5a595a; font-weight: 700;}
textarea::placeholder {               color: #5a595a; font-weight: 700;}

a{
	transition: .3s ease;
	text-decoration: none;
	color: #45a7ef;
}
.page-title .title,
h1,h2,h3,h4,h5,h6{
	color: #fff;
	font-weight: 700;
	line-height: 1.5em;
	text-transform: uppercase;
}
.page-title .title,
h1{
	font-size: 42px;
}
h2{
	font-size: 35px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	text-align: center;
}
h2::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 140px;
	height: 2px;
	background-color: #45a7ef;
	transform: translate(-50%,0);
}
h3{
	font-size: 29px;
}
h4{
	font-size: 24px;
	letter-spacing: 0.1em;
}
h5{
	font-size: 20px;
	letter-spacing: 0.07em;
}
h6{
	font-size: 17px;
	letter-spacing: 0.05em;
}
.slogan{
	max-width: 710px;
	margin: 0 auto 55px;
	text-align: center;
}
.s-bg{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.title a{
	color: #fff;
}
.title a:hover{
	color: #45a7ef;
}
.title-line-left{
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 20px;
}
.title-line-left:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: #45a7ef;
}

/*-------------------- S-ANIMATE --------------------*/
.s-anim{
	transition: 1s ease;
	transform: translateY(60px);
	opacity: 0;
}
.s-anim-active{
	transform: translateY(0);
	opacity: 1;
}
/*-------------------- HEADER --------------------*/
header{
	background: rgba(19, 18, 19, 0.6);
	padding: 32px 0;
	min-height:50px;
	position: fixed;
	top: 0;
	left: 0;
	width:100%;
	min-height:50px;
	color: #fff;
	display: flex;
	align-items: center;
	z-index: 24;
	transition: .5s ease;
	border-bottom: 1px solid transparent;
}
header.header-scroll{
	padding: 10px 0;
	background: rgba(19, 18, 19, 1);
	border-color: rgba(69,167,239,.7);
}
header a{
	color: #fff;
}
.nav-menu {
	width:320px !important;
	position: absolute;
	left: -100%;
	top: 100%;
	margin-top: 1px;
	z-index: 3;
	background: rgba(19, 18, 19, 1);
	height: calc(100vh - 52px);
	transition: .3s ease-in-out;
	opacity: 0;
}
header.header-scroll .nav-menu{
	background: rgba(19, 18, 19, 1);
}
.nav-menu.active{
	left: 0;
	opacity: 1;
}
@media (min-width:992px){
	.nav-menu{
		margin-top: 0;
		display:block !important;
		width:auto !important;
		position: static;
		left: auto;
		top: auto;
		background-color: transparent;
		z-index: 0;
		padding-right: 28px;
		height: auto;
		opacity: 1;
	}
	header.header-scroll .nav-menu{
		height: auto;
		background-color: transparent;
	}
}
.nav-list li{
	display:block;
	vertical-align:top;
	position: relative;
}
@media (min-width:992px){
	.nav-list{
		display: flex;
		-ms-align-items: center;
		align-items: center;
		justify-content: center;
	}
	.nav-list>li{
		display:inline-block;
		text-align:left;
		margin-right: 40px;
	}
	.nav-list>li:last-child{
		margin-right: 0;
	}
}
.nav-list li.dropdown ul{
	min-width: 100%;
	background: #292929;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
	display: none;
	padding: 5px 0 !important;
}
.nav-list li.dropdown ul li{
	text-align: left;
	margin-bottom: 10px;
}
.nav-list li.dropdown ul li:last-child{
	margin-bottom: 0;
}
.nav-list li.dropdown ul li a{
	text-transform: uppercase;
	text-decoration: none;
	font-size: 15px;
}
.nav-list li.dropdown ul li.active a{
	color: #45a7ef;
}
@media (min-width:992px){
	.nav-list li.dropdown ul{
		padding: 20px !important;
		display: block !important;
		left: 0;
		position: absolute;
		top: 100%;
		margin-top: 17px;
		min-width: 200px;
		transition: all 0.3s ease-in;
		opacity: 0;
		pointer-events: none;
		transform: translateY( 30px );
	}
	.nav-list li.active ul{
		pointer-events: auto;
		transition-timing-function: ease-out;
		opacity: 1;
		transform: translateY( 0px );
	}
	.nav-list li.dropdown ul li{
		display: block;
	}
	.nav-list li.dropdown2 ul {
		left: 100%;
		top: 0;
	}
.nav-list li.dropdown ul li a{
	font-size: 12px;
}
}
.nav-list>li>a{
	font-size:14px;
	text-decoration:none;
	padding:0;
	display:block;
}
.nav-list li a{
	font-weight: 700;
	letter-spacing: 0.05em;
	position: relative;
	text-transform:uppercase;
	line-height:19px;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	transition:all 0.3s ease;
}
.nav-list li a i{
	margin-left: 5px;
	font-size: 14px;
	line-height: 19px;
	font-weight: 700;
}
.nav-list>li>a:before{
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: .3s ease;
}
.nav-list>li.active>a:before{
	width: 100%;
}
.nav-list li a:hover{
	color:#45a7ef;
}
.nav-list>li>a:hover:before{
	background-color:#45a7ef;
	width: 100%;
}
.nav-btn{
	display:block;
	height:50px;
	position:absolute;
	right:0;
	top:50%;
	width:60px;
	padding:10px 15px;
	display:block;
	z-index:2;
	overflow:hidden;
	transform: translate(0,-50%);
}
@media (min-width:992px){
	.nav-btn{
		display:none;
	}
}
.nav-btn span{
	background-color:#fff;
	height:2px;
	width:100%;
	display:block;
	margin:6px 0;
	position:relative;
	transition:all 0.4s ease, visibility 0.1s ease;
}
.nav-btn:hover span:nth-child(2){
	margin-left: -8px;
}
.nav-btn.active span{
	height: 2px;
	transform-origin:0;
}
.nav-btn.active span:first-child{
	transform:rotate(45deg);
}
.nav-btn.active span:last-child{
	margin-top: 11px;
	transform:rotate(-45deg);
}
.nav-btn.active span:nth-child(2){
	visibility:hidden;
}
.header-icon{
	display: flex;
	justify-content: flex-end;
}
.header-icon li{
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
}
.header-icon li:before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	right: 0;
	height: 18px;
	width: 1px;
	background-color: rgba(255,255,255,.4);
}
.header-icon li:last-child:before{
	display: none;
}
.header-icon li .icon{
	color: #fff;
	padding: 0 10px;
	font-size: 18px;
	line-height: 21px;
	position: relative;
}
.header-icon li:last-child .icon{
	padding-right: 0;
}
.header-icon li .icon:hover{
	color: #45a7ef;
}
.header-icon li.search form{
	position: absolute;
	top: 100%;
	right: 0;
	width: 0;
	opacity: 0;
	overflow: hidden;
	display: flex;
	margin-top: 17px;
	transition: .4s ease;
}
.header-icon li.search.active form{
	width: 290px;
	opacity: 1;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.header-icon li.search form input[type="search"]{
	width: 260px;
	padding: 0 10px 0 15px;
	border-right: none;
	background: #fff;
	color: #a4a4a4;
	border-color: #fff;
}
.header-icon li.search form button,
.header-icon li.search form input[type="search"]{
	height: 46px;
}
.header-icon li.search form button{
	width: 40px;
	border: 2px solid #45a7ef;
	background: #45a7ef;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.header-icon li.search form button:hover{
	background-color: transparent;
	color: #45a7ef;
}
.header-icon li.favorites a span{
	width: 16px;
	line-height: 16px;
	border-radius: 50%;
	color: #fff;
	background-color: #01de9c;
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	position: absolute;
	top: -3px;
	right: 3px;
}
body.no-scroll{
	overflow: hidden;
}

/* Logo container */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image */
.logo img {
  height: 65px;             /* default desktop height */
  width: auto;              /* keep original aspect ratio */
  max-width: 100%;          /* don’t overflow container */
  display: block;
}

/* Scale down for tablets */
@media (max-width: 992px) {
  .logo img {
    height: 34px;
  }
}

/* Scale down for mobile */
@media (max-width: 576px) {
  .logo img {
    height: 28px;
  }
}


/*-------------------- HOME 1 MAIN --------------------*/
.main-slider-cover{
	position: relative;
	overflow: hidden;
}
.main-slider-for .slider-track {
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.main-slide-for{
	height: 900px;
	position: relative;
	overflow: hidden;
}
.main-slide-for img,
.main-slide-for video{
	display: block;
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.main-slide-for img{
	object-fit: cover;
	height: 100%;
	max-width: 100%;
	width: 100%;
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	transform: scale(1.2) rotate(5deg);
}

.main-slide-for.slick-active img {
	transform: scale(1) rotate(0);
}
.main-slider-nav{
	max-width: 754px;
	position: absolute;
	bottom: 55px;
	right: 0;
	z-index: 1;
	margin-right: -10px;
	padding-bottom: 53px;
}
.main-slide-nav{
	padding: 0 10px;
	transition: .3s ease;
	position: relative;
}
.main-slide-nav .img-cover{
	position: relative;
	border-bottom: 5px solid #000;
	transition: .3s ease;
	border-radius: 8px;
}
.main-slide-nav .img-cover:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .5;
	z-index: 1;
	transition: .3s ease;
	border-radius: 8px;
}
.main-slide-nav img{
	height: 152px;
	object-fit: cover;
	width: 100%;
	display: block;
	transition: .3s ease;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 6px;
}
.main-slide-nav.slick-current .img-cover:before,
.main-slide-nav:hover .img-cover:before{
	opacity: 0;
}
.main-slide-nav:hover .img-cover{
	border-color: #45a7ef;
}
.main-slide-nav.slick-current,
.main-slide-nav:hover img{
	box-shadow: none;
}
.main-slide-nav span{
	position: absolute;
	font-size: 36px;
	font-weight: 700;
	bottom: 20px;
	left: 0;
	opacity: .3;
	z-index: 2;
	transition: .3s ease;
	color: #fff;
}
.main-slide-nav.slick-current span,
.main-slide-nav:hover span{
	opacity: 1;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.main-slider-nav .slick-arrow{
	position: absolute;
	width: 115px;
	height: 38px;
	bottom: 0;
	left: 10px;
	background-color: #131213;
	display: block;
	text-align: center;
	transition: .3s ease;
}
.main-slider-nav .slick-arrow:hover{
	background-color: #45a7ef;
}
.main-slider-nav .slick-arrow-next.slick-arrow{
	left: 130px;
}
.main-slider-nav .slick-arrow i{
	color: #fff;
	margin: auto;
	line-height: 38px;
}
.main-slide-for .container{
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	padding-bottom: 55px;
	z-index: 1;
}
.slide-info{
	position: relative;
	max-width: 57.5%;
	width: 100%;
	color: #fff;
	z-index: 2;
	padding: 19px 30px 28px 0;
	min-height: 211px;
	
}
.slide-info:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 2000px;
	height:100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
	border-bottom-right-radius: 6px;
	border-top-right-radius: 6px;
}
.slide-info h3{
	font-size: 42px;
	max-width: 660px;
	transform: translateX(-500px);
	opacity: 0;
	transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
	margin-bottom: 10px;
}
.main-slide-for.slick-current .slide-info h3{
	transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .3s;
	transform: translateX(0);
	opacity: 1;
}
.slide-info p{
	color: #c9c9c9;
	max-width: 644px;
	transform: translateX(-500px);
	opacity: 0;
	transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
.main-slide-for.slick-current .slide-info p{
	transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .4s;
	transform: translateX(0);
	opacity: 1;
}
.slide-info a{
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.03em;
	display: inline-block;
	margin-top: 20px;
	transform: translateX(-500px);
	opacity: 0;
	transition: all .3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
.main-slide-for.slick-current .slide-info a{
	transition: .6s cubic-bezier(0.22, 0.61, 0.36, 1) .5s;
	transform: translateX(0);
	opacity: 1;
}
.main-slide-for.slick-current .slide-info:hover a{
	transition: .6s ease;
}
.main-slide-for.slick-current .slide-info a:hover{
	transition-delay: 0s;
	color: #45a7ef;
}
/*-------------------- HOME 1 BEST PRICES --------------------*/
.best-prices{
	padding: 150px 0;
	overflow: hidden;
}

.title-left{
	text-align: left;
	margin-bottom: 20px;
}
.title-left:before{
	left: 0;
	transform: none;
}
.price-img-cover{
	padding: 0 60px;
	position: relative;
}
.price-img-cover img{
	max-width: 100%;
	display: block;
	border-radius: 6px;
}
.price-img-cover .price-drone{
	position: absolute;
	width: auto;
	z-index: 1;
	top: -30px;
	right: -143px;
	max-width: none;
	animation: levitation 20s linear 0s infinite normal;
	
}
@keyframes levitation {
	from{
		transform: rotate(0deg) translateX(50px) rotate(0deg);
	}
	to{
		transform: rotate(360deg) translateX(50px) rotate(-360deg);
	}
}
.price-info ul{
	display: flex;
	flex-wrap: wrap;
	margin: 25px 0 10px;
}
.price-info ul li{
	border: 2px solid #5f5f5f;
	border-radius: 4px;
	font-weight: 700;
	font-size: 13px;
	line-height: 26px;
	text-align: center;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #fff;
	padding: 0 14px;
	margin: 0 20px 10px 0;
	transition: .3s ease;
	cursor: default;
}
.price-info{
	padding: 0 0 50px 92px;
	position: relative;
	z-index: 2;
}
.about-info .title-left,
.price-info .title-left{
	margin-bottom: 52px;
}
.price-info ul li:hover{
	border-color: #45a7ef;
}
.price-info .price{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5em;
	color: #45a7ef;
	margin-bottom: 52px;
}

/*------------------ SERV-BLOCK ------------------*/
.serv-block{
	display: flex;
	justify-content: space-between;
}
.serv-block-item{
	height: 717px;
	width: 25%;
	position: static;
	position: relative;
	overflow: hidden;
	color: #fff;
}
.border-item{
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 2px solid #45a7ef;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%);
	z-index: 3;
	opacity: 0;
	transition: .3s ease;
}
.serv-block-item:hover .border-item{
	opacity: 1;
	transform: translate(-50%,-50%);
}
.serv-block-item:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #000;
	opacity: .2;
	transition: .4s ease;
}
.serv-block-item:hover:before{
	opacity: 0;
}
.serv-block-item:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: .4s ease;
	background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0;
}
.serv-block-item:hover:after{
	opacity: 1;
}
.serv-block-item img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 2.5s ease-out;
}
.serv-block-item:hover img{
	transition: 5s ease-in-out;
	transform: scale(1.2);
}
.serv-block-info{
	z-index: 3;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translate(0,50%);
	transition: .4s ease-in-out;
	padding: 55px 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.serv-block-item:hover .serv-block-info{
	bottom: 0;
	transform: translate(0,0);
}
.serv-block-info h4{
	width: 100%;
	position: relative;
	transition: .5s ease;
}
.serv-block-info p{
	transform: translateY(80px);
	transition: .3s ease;
	opacity: 0;
	width: 100%;
	height: 0;
	margin-top: 20px;
}
.serv-block-item:hover .serv-block-info p{
	opacity: 1;
	transform: translateY(0px);
	transition: .4s ease .2s;
	height: 96px;
	overflow: hidden;
}
.serv-block-info span{
	width: 100%;
	opacity: 0;
	margin-top: 30px;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #45a7ef;
	display: inline-block;
	transform: translateY(80px);
	transition: .3s ease;
}
.serv-block-item:hover .serv-block-info span{
	opacity: 1;
	transform: translateY(0px);
	transition: .4s ease .3s;
}

/*------------------------- S-BLOG -------------------------*/
.s-blog{
	padding: 166px 0 180px;
}
.post-item .prod-thumbnail{
	margin-bottom: 23px;
}
.post-item .prod-thumbnail a{
	display: block;
}
.post-item .prod-thumbnail img{
	width: 100%;
	display: block;
	object-fit: cover;
	height: 370px;
	transition: .3s ease;
}
.post-item .prod-thumbnail img:hover{
	opacity: .7;
}
.meta.top{
	color: #c7c7c7;
	margin-bottom: 35px;
}
.meta{
	font-weight: 500;
	font-size: 14px;
}
.meta.bottom{
	margin-top: 12px;
}
.post-item .post-comments{
	margin-right: 19px;
}
.post-item .btn{
	margin-top: 43px;
}

/*--------------------- S-INFO-BG ---------------------*/
.s-info-bg{
	padding: 166px 0 180px;
	min-height: 776px;
	background-image: url(../img/bg-2.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	position: relative;
}
.mask{
	position: relative;
}
.mask .container{
	position: relative;
	z-index: 1;
}
.mask:before,
.s-info-bg:before{
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
}
.s-info-bg .container{
	position: relative;
	z-index: 1;
	text-align: center;
}
.s-info-bg .slogan{
	color: #fff;
}
.s-info-cover{
	max-width: 876px;
	margin: 0 auto;
}
.s-info-bg .btn{
	margin-top: 60px;
}
.opportunitie-item,
.block-icon{
	background: #292929;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
	min-height: 206px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 6px;
	position: relative;
	transition: .3s ease;
}
.opportunitie-item:hover,
.item.active .block-icon,
.block-icon:hover{
	background-color: #45a7ef;
}
.support:before,
.opportunitie-item:before,
.block-icon:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 2px solid #45a7ef;
	border-radius: 6px;
	transition: .4s ease;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	pointer-events: none;
}
.opportunitie-item:hover:before,
.item.active .block-icon:before,
.block-icon:hover:before{
	border-color: #fff;
}
.block-icon img{
	margin-bottom: 21px;
	transition: .3s ease;
	max-height: 100px;
	max-width: 100%;
}
.item.active .block-icon img,
.block-icon:hover img{
	margin-bottom: 16px;
}
.block-icon h6{
	position: relative;
	letter-spacing: 0.1em;
	padding-top: 18px;
	transition: .3s ease;
	text-align: center;
}
.item.active .block-icon h6,
.block-icon:hover h6{
	padding-top: 13px;
}
.block-icon h6:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 50px;
	height: 2px;
	background-color: #45a7ef;
	transition: .3s ease;
}
.item.active .block-icon h6:before,
.block-icon:hover h6:before{
	background-color: #292929;
}

/*------------------------ S-SHOP ------------------------*/
.s-related-products{
	padding: 166px 0 100px;
}
.s-shop{
	padding: 166px 0 100px;
}
.we-offer-bottom .block-icon,
.s-shop .block-icon{
	min-height: 168px;
}
.we-offer-bottom .block-icon h6,
.s-shop .block-icon h6{
	font-size: 14px;
}
.prod-item{
	margin-bottom: 80px;
}
.prod-item .prod-thumbnail{
	margin-bottom: 20px;
}
.prod-item .prod-thumbnail .prod-img{
	display: block;
	position: relative;
	height: 350px;
}
.prod-item .prod-thumbnail{
}
.prod-item .prod-thumbnail img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .3s ease;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}
.s-shop .prod-item .prod-thumbnail .prod-img{
	height: 440px;
}
.prod-content .title{
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 41px;
}
.prod-content .title:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 53px;
	height: 2px;
	background-color: #45a7ef;
}
.prod-content p{
	margin-bottom: 16px;
}
.prod-item .price{
	font-weight: 700;
	font-size: 24px;
	color: #45a7ef;
	line-height: 1.5em;
}
.prod-item .price .old-price{
	color: #fff;
	text-decoration: line-through;
	text-decoration-color: #45a7ef;
	margin-right: 5px;
}
.prod-item .btn{
	margin-top: 41px;
}
.tabs-content{
	position: relative;
}
.tab{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	transform: translateY(50px);
	width: 100%;
}
.tab.visible-content{
	pointer-events: auto;
	z-index: 15;
	transition-timing-function: ease-in-out;
	transition-delay: 0.3s;
	opacity: 1;
	transform: translateY(0px);
}
.prod-tabs{
	display: flex;
	max-width: 1260px;
	margin: 0 auto 40px;
}
.prod-tabs .item{
	width: 16.66%;
	margin-right: 20px;
}
.prod-tabs .item:last-child{
	margin-right: 0;
}
.prod-item:hover .prod-link-cover{
	opacity: 1;
}
.prod-link-cover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: rgba(41, 41, 41, 0.7);
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: .3s ease-in-out;
}
.prod-link-cover li:not(:last-child){
	margin-right: 10px;
}
.prod-link-cover li a{
	display: block;
	width: 40px;
	background: #45a7ef;
	border: 2px solid #45a7ef;
	box-sizing: border-box;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
	line-height: 36px;
	text-align: center;
	font-size: 18px;
	color: #fff;
}
.prod-link-cover li a:hover{
	background-color: #333;
	border-color: #fff;
}
/*------------------- NEW-PRODUCT -------------------*/
.s-product{
	padding-bottom: 180px;
}
.new-product{
	padding: 166px 0 0;
}
.slider-new-product{
	margin-left: -15px;
	margin-right: -15px;
}
.slide-new-product{
	padding: 0 15px;
}
.prod-item .lable{
	position: absolute;
	min-width: 60px;
	line-height: 24px;
	text-align: center;
	padding: 0 5px;
	top: 20px;
	left: 20px;
	z-index: 2;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	display: none;
}
.lable-new{
	background-color: #45a7ef;
}
.lable-sale{
	background-color: #de0136;
}
.prod-item.new .lable-new{
	display: block;
}
.prod-item.sale .lable-sale{
	display: block;
}
.slider-new-product .slick-arrow{
	position: absolute;
	top: 144px;
	z-index: 2;
	color: #fff;
	font-size: 40px;
	transition: .3s ease;
	padding: 10px;
}
.slider-new-product .slick-arrow.slick-arrow-next {
	right: -30px;
}
.slider-new-product .slick-arrow.slick-arrow-prev {
	left: -30px;
}
.slider-new-product .slick-arrow:hover{
	color: #45a7ef;
}

/*----------------------- S-BANNERS -----------------------*/
.s-banners{
	padding: 100px 0 166px;
}
.baner-item{
	padding: 30px 40px;
	height: 473px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	position: relative;
}
.baner-item:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,.4);
	z-index: 1;
}
.baner-item img{
	width: 100%;
	height: 100%;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	position: absolute;
	transition: 3s ease-in-out;
}
.baner-item:hover img{
	transform: translate(-50%,-50%) scale(1.2);
	transition: 5s ease-in-out;
}
.baner-item-content{
	width: 100%;
	position: relative;
	z-index: 2;
	color: #fff;
}
.baner-item-content .btn{
	margin: 54px 0 23px;
}
.banner-sale{
	font-style: italic;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
/*-------------------- S-OPPORTUNITIES --------------------*/
.s-opportunities{
	min-height: 902px;
	background-image: url(../img/bg-3.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	text-align: center;
	padding: 166px 0 180px;
}
.s-opportunities .container{
	z-index: 2;
	position: relative;
}
.s-opportunities:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	pointer-events: none;
}
.s-opportunities .slogan{
	color: #fff;
	margin-bottom: 58px;
}
.s-opportunities .btn{
	margin-top: 60px;
}
.slider-opportunities{
	max-width: 1196px;
	margin: 0 auto;
}
.slider-opportunities .title{
	font-size: 96px;
	line-height: 1em;
	margin-bottom: 69px;
	color: #45a7ef;
}
.opportunities-cover{
	max-width: 904px;
	margin: 0 auto;
	position: relative;
}
.opportunitie-item .item-wrap{
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}
.opportunitie-item .item-wrap .numb{
	font-size: 48px;
	letter-spacing: 0.05em;
	line-height: 1em;
}
.opportunitie-item .item-wrap .item-value{
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.1em;
	display: block;
}
.opportunitie-item h6{
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #45a7ef;
	max-width: 126px;
	margin: 18px auto 0;
	transition: .3s ease;
}
.opportunitie-item:hover h6{
	color: #fff;
}
.slider-opportunities .slick-arrow{
	position: absolute;
	top: 12px;
	z-index: 2;
	color: #fff;
	font-size: 60px;
	transition: .3s ease;
	padding: 10px;
}
.slider-opportunities .slick-arrow:hover{
	color: #45a7ef;
}
.slider-opportunities .slick-arrow.slick-arrow-prev{
	left: -13px;
}
.slider-opportunities .slick-arrow.slick-arrow-next{
	right: -13px;
}

/*------------------- S-TESTIMONIALS -------------------*/
.s-testimonials.bg-testimonials{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	min-height: 830px;
	padding: 166px 0 180px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.s-testimonials.bg-testimonials .slogan{
	color: #fff;
}
.s-testimonials.bg-testimonials.mask:before{
	background-color: rgba(0, 0, 0, 0.6);
}
.s-testimonials{
	padding: 166px 0;
}
.slider-testimonials{
	margin-left: -15px;
	margin-right: -15px;
}
.slide-testimonial{
	padding: 75px 15px 0;
	text-align: center;
}
.testimonial-item{
	background: #272727;
	padding: 44px;
	position: relative;
}
.testimonial-item:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 2px solid #45a7ef;
	transition: .4s ease;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	pointer-events: none;
}
.testimonial-item img{
	position: relative;
	z-index: 1;
	margin: -116px auto 11px;
	width: 130px;
	height: 130px;
	object-fit: cover;
	border-radius: 50%;
}
.testimonial-item .name{
	letter-spacing: 2px;
}
.testimonial-item .prof{
	font-weight: 700;
	font-size: 13px;
	line-height: 8px;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #aaa;
	margin: 5px 0 8px;
}
.testimonial-item .testimon-content{
	font-style: italic;
	letter-spacing: 0.05em;
	color: #fff;
	position: relative;
	padding: 32px 35px;
}
.testimonial-item .testimon-content:before{
	content: '\f10d';
	font-family: FontAwesome;
	font-style: normal;
	left: 6px;
	top: -2px;
}
.testimonial-item .testimon-content:after{
	content: '\f10e';
	font-family: FontAwesome;
	font-style: normal;
	right: 6px;
	bottom: -2px;
}
.testimonial-item .testimon-content:after,
.testimonial-item .testimon-content:before{
	position: absolute;
	font-size: 24px;
	line-height: 32px;
	color: rgba(255, 255, 255, 0.1);
}
.slider-testimonials .slick-dots{
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.slider-testimonials .slick-dots li{
	border: 2px solid #fff;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin-right: 16px;
	position: relative;
	transition: .3s ease;
}
.slider-testimonials .slick-dots li:last-child{
	margin-right: 0;
}
.slider-testimonials .slick-dots li button{
	position: absolute;
	font-size: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	transition: .3s ease;
	border-radius: 50%;
}
.slider-testimonials .slick-dots li:hover,
.slider-testimonials .slick-dots li.slick-active{
	border-color: transparent;
}
.slider-testimonials .slick-dots li:hover button,
.slider-testimonials .slick-dots li.slick-active button{
	background: #45a7ef;
}

/*--------------------- S-testimonial end ---------------------*/




/*-------------------- S-CONTACTS --------------------*/
.s-main-contacts.s-contacts{
	padding-top: 0;
}
.s-contacts{
	padding: 180px 0;
}
.s-contacts .container{
	position: relative;
}
.s-contacts .form-cover{
	max-width: 1170px;
	margin: 0 auto;
}
.form-cover{
	display: flex;;
	flex-wrap: wrap;
	justify-content: space-between;
}
.form-cover li{
	margin-bottom: 20px;
	position: relative;
}
.inp-name,
.inp-phone,
.inp-email{
	width: calc(33.33% - 20px);
}
.inp-text:before,
.inp-name:before,
.inp-phone:before,
.inp-email:before{
	content: '';
	position: absolute;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	top: 14px;
	left: 16px;
}
.inp-name:before{
	content: '\f007';
}
.inp-phone:before{
	content: '\f095';
}
.inp-email:before{
	content: '\f1fa';
}
.inp-text:before{
	content: '\f27b';
	top: 16px;
}
.inp-text{
	width: 100%;
}
.checkbox-wrap{
	text-align: center;
	margin-bottom: 33px;
}
.checkbox-cover{
	position: relative;
	display: inline-block;
}
.checkbox-cover p{
	position: relative;
	padding-left: 38px;
	font-size: 14px;
	font-weight: 600;
}
.checkbox-cover p:before{
	content: '';
	display: inline-block;
	border: 1px solid #5f5f5f;
	width: 26px;
	height: 26px;
	line-height: 24px;
	font-family: FontAwesome;
	font-size: 14px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	color: #fff;
}
.checkbox-cover input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	margin: 0;
}
.checkbox-cover input:checked + p:before{
	content: '\f00c';
}
.btn-form-cover{
	text-align: center;
	
}
.btn-form-cover span{
	display: inline-block;
	position: relative;
}
#success_page{
	color: #fff;
}
#success_page h3{
	color: #45a7ef;
}
#message{
	position: absolute;
	left: 0;
	width: 100%;
	top: 100%;
	text-align: center;
	color: #fff;
	margin: 30px 0;
}
#message .error_message{
	color: #f23849;
}

/*------------------------ S-MAP ------------------------*/

/* Full-bleed wrapper */
.map-fullbleed {
  width: 100vw;      /* span the full viewport width */
  margin-left: 50%;
  transform: translateX(-50%); /* escape any parent container padding */
  overflow: hidden;
}

/* Set the map height and make it responsive */
.map-fullbleed iframe {
  display: block;
  width: 100%;
  height: 520px;     /* adjust to taste */
  border: 0;
}

/* Optional: taller on large screens, shorter on small */
@media (min-width: 1200px) { .map-fullbleed iframe { height: 640px; } }
@media (max-width: 640px)  { .map-fullbleed iframe { height: 420px; } }


/*------------------------ FOOTER ------------------------*/
footer{
	padding-top: 96px;
	background-color: #0e0e0e;
}
footer h5{
	margin-bottom: 34px;
}
.footer-subscribe h5{
	margin-bottom: 43px;
}
.footer-info p{
	opacity: .6;
}
.blok-link li:not(:last-child){
	margin-bottom: 15px;
}
.blok-link li a{
	text-transform: capitalize;
	text-decoration: underline;
}
.blok-link li a:hover{
	text-decoration: none;
}
.search-form,
.subscribe-form{
	position: relative;
}
.search-form:before,
.subscribe-form:before{
	position: absolute;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
	top: 14px;
	left: 16px;
	z-index: 1;
	pointer-events: none;
}
.subscribe-form:before{
	content: '\f1fa';
}
.search-form:before{
	content: '\f002';
}
.subscribe-form input[type="email"],
.search-form input[type="text"]{
	padding-right: 75px;
}
.search-form input[type="submit"],
.subscribe-form input[type="submit"]{
	border: none;
	margin: 0;
	padding: 0 18px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	z-index: 1;
	font-weight: 700;
	font-size: 14px;
	line-height: 46px;
	text-transform: uppercase;
	color: #fff;
	background-color: transparent;
}
.search-form input[type="submit"]:hover,
.subscribe-form input[type="submit"]:hover{
	color: #45a7ef;
}
.footer-bottom{
	margin-top: 45px;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo img{
	max-width: 100%;
}
.footer-menu{
	display: flex;
	justify-content: center;
}
.footer-menu li{
	margin-right: 40px;
}
.footer-menu li:last-child{
	margin-right: 0;
}
.footer-menu li a{
	display: block;
	line-height: 30px;
	text-align: center;
	text-transform: capitalize;
}
.soc-link{
	display: flex;
	align-items: center;
}
footer .soc-link{
	justify-content: flex-end;
}
.soc-link li:not(:last-child){
	margin-right: 25px;
}
.soc-link li a{
	color: #fff;
	width: 20px;
	line-height: 20px;
	font-size: 18px;
}
.soc-link li a:hover{
	color: #45a7ef;
}
.copyright{
	text-align: center;
	padding: 41px 0;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}
.copyright .rovadex{
	color: #fff;
}
.copyright .rovadex:hover{
	color: #45a7ef;
}
/*------------------- PAGE-TITLE -------------------*/
.page-title{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 250px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding-top: 86px;
}
.page-title .title{
	text-align: center;
}
.breadcrumbs ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.breadcrumbs li a,
.breadcrumbs li{
	position: relative;
	letter-spacing: 0.01em;
	color: #fff;
}
.breadcrumbs li:not(:last-child):after{
	content: '/';
	display: inline-block;
	padding: 0 5px;
}
.breadcrumbs li a:hover{
	color: #45a7ef;
}

/*--------------------- ABOUT-TOP ---------------------*/
.about-top{
	padding: 180px 0;
}
.contacts-top.about-top{
	padding: 180px 0 166px;
}
.about-top-cover{
	align-items: center;
}
.about-img img{
	max-width: 100%;
	display: block;
}
.about-info p{
	margin-bottom: 16px;
}
.about-info p a:hover{
	color: #fff;
}
.about-cont{
	display: flex;
	flex-wrap: wrap;
	padding-top: 32px;
	margin-bottom: 22px;
}
.about-cont li:not(:last-child){
	margin-right: 21px;
}
.about-cont li a{
	display: flex;
	align-items: center;
}
.about-cont li a i{
	color: #fff;
	font-size: 18px;
	margin-right: 11px;
	transition: .3s ease;
}
.about-cont li a:hover,
.about-cont li a:hover i{
	color: #fff;
}
.about-top-block{
	margin-top: 80px;
}
.about-block{
	display: flex;
	align-items: center;
	background: #292929;
	min-height: 150px;
	padding: 20px;
	position: relative;
	color: #fff;
	transition: .3s ease;
	border-radius: 6px;
}
.about-block:hover{
	background-color:  #434343;
	transform: translateY(-4px);
}
.about-block:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 2px solid #45a7ef;
	border-radius: 6px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	pointer-events: none;
	transition: .3s ease;
}
.about-block:hover:before{
	border-color: #fff;
}
.about-block-icon{
	min-width: 100px;
	text-align: center;
	padding-right: 10px;
	border-radius: 6px;
}
.about-block-icon img,
.about-block-icon svg{
	max-width: 100%;
	max-height: 100%;
}
.about-block-icon svg{
	fill: #45a7ef;
	transition: .3s ease;
}
.about-block:hover .about-block-icon svg{
	fill: #fff;
}
.about-block-info .title{
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 20px;
	border-radius: 6px;
}
.about-block-info .title:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: #45a7ef;
	transition: .3s ease;
	border-radius: 6px;
}
.about-block:hover .about-block-info .title:before{
	background-color: #292929;
}
.about-info-text{
	letter-spacing: 0.07em;
	text-transform: capitalize;
}




/*---------------------- S-INFOGRAPHICS ----------------------*/
.s-info-bg.s-infographics{
	min-height: 678px;
}
.s-infographics .number{
	font-weight: 700;
	font-size: 48px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	line-height: normal;
	padding-bottom: 6px;
}
.s-infographics .block-icon h6 {
	padding-top: 25px;
	min-height: 68px;
	font-weight: 600;
}
.s-infographics h2{
	margin-bottom: 30px;
}

/*-------------------------- S-TEAM --------------------------*/
.s-team{
	padding: 36px 0 40px;
}
.team-img{
	position: relative;
	overflow: hidden;
	margin-bottom: 24px;
	border-radius: 6px;
}
.team-img:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 2px solid #45a7ef;
	border-radius: 6px;
	transition: .3s ease;
	z-index: 1;
	pointer-events: none;
	
}
.team-img img{
	display: block;
	width: 100%;
	height: 100%;
	height: 319px;
	object-fit: cover;
}
.team-info{
	text-align: center;
	color: #fff;
}
.team-info .soc-link{
	justify-content: center;
}
.team-info .soc-link li:not(:last-child) {
	margin-right: 15px;
}
.team-info .prof{
	letter-spacing: 0.07em;
	text-transform: capitalize;
	margin-bottom: 22px;
	color: #aaa;
}

/*-------------------- S-CLIENTS --------------------*/
.s-clients{
	padding: 180px 0;
	text-align: center;
}
.s-clients img{
	max-width: 100%;
}
.s-clients.s-clients-home{
	padding-top: 0;
}

/*-------------------- S-WE-OFFER --------------------*/
.s-we-offer{
	padding: 166px 0 180px;
}
.offer-item-img{
	margin-bottom: 20px;
}
.offer-item-img img{
	width: 100%;
	max-height: 440px;
	object-fit: cover;
	display: block;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
}
.offer-item-content h4{
	letter-spacing: 0.07em;
	margin-bottom: 21px;
}
.we-offer-bottom{
	margin-top: 75px;
}

/*---------------- S-DISCOUNT-PROGRAM ----------------*/
.s-discount-program{
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 166px 0 174px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	min-height: 590px;
	color: #fff;
	text-align: center;
}
.s-discount-program.mask:before{
	background-color: rgba(0,0,0,.7);
}
.baner-item-content h2,
.s-discount-program h2{
	margin-bottom: 51px;
}
.sale-cover{
	margin-top: 23px;
}
.sale-cover .sale{
	font-style: italic;
	font-weight: bold;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/*-------------------- S-VIDEO --------------------*/
.s-video{
	padding: 166px 0;
}
.slide-video{
	height: 640px;
	width: 100%;
	position: relative;
}
.slide-video video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	min-width: 100%;
	min-height: 100%;
	position: relative;
}
.slider-video .slick-dots{
	display: flex;
	justify-content: center;
	position: absolute;
	z-index: 2;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%,0);
	transition: .4s ease-in-out;
	opacity: 0;
}

.slider-video .slick-dots li{
	border: 2px solid #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-right: 16px;
	position: relative;
	transition: .3s ease;
}
.slider-video .slick-dots li:last-child{
	margin-right: 0;
}
.slider-video .slick-dots li.slick-active{
	border-color: #45a7ef;
	pointer-events: none;
}
.slider-video .slick-dots li:hover{
	background-color: #45a7ef;
	border-color: #45a7ef;
}
.slider-video .slick-dots li button{
	position: absolute;
	font-size: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background-color: transparent;
	transition: .3s ease;
	border-radius: 50%;
}
.slider-video .slick-arrow{
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 2;
	color: #fff;
	font-size: 46px;
	font-weight: 400;
	transition: .3s ease;
	padding: 10px;
	opacity: 0;
	transition: .4s ease-in-out;
}
.slider-video:hover .slick-arrow,
.slider-video:hover .slick-dots{
	opacity: 1;
}
.slider-video .slick-arrow:hover{
	color: #45a7ef;
}
.slider-video .slick-arrow.slick-arrow-prev {
	left: 15%;
}
.slider-video .slick-arrow.slick-arrow-next {
	right: 15%;
}

/*----------------------- S-GALLERY -----------------------*/
.s-gallery{
	padding-bottom: 166px;
}
.gallery-cover{
	margin-left: -15px;
	margin-right: -15px;
}
.gallery-item{
	width: 33.33%;
	padding: 15px;
	transition: .3s ease;
}
.gallery-item a{
	display: block;
	overflow: hidden;
	position: relative;
}
.gallery-item a:before{
	content: '\f00e';
	font-family: 'FontAwesome';
	position: absolute;
	color: #fff;
	font-size: 40px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-40%);
	z-index: 3;
	opacity: 0;
	transition: .3s ease-in-out;
}
.gallery-item a:hover:before{
	transform: translate(-50%,-50%);
	opacity: 1;
}
.gallery-item a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	background: linear-gradient(145deg, rgba(69,167,239,.8) 0%,rgba(41,41,41,0) 95%);
	transition: .3s ease-in-out;
}
.gallery-item a:hover:after{
	opacity: 1;
}
.gallery-item a:hover img{
	opacity: .6;
}
.gallery-item img{
	width: 100%;
	display: block;
	transition: .3s ease-in-out;
}
.gal-item{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 150px;
	background: rgba(41, 41, 41, 0.7);
	color: #fff;
	text-align: center;
	padding: 20px 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	z-index: 1;
	transition: .5s ease-in-out;
}
.gallery-item a:hover .gal-item{
	bottom: -100%;
}
.gal-item:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 2px solid #45a7ef;
	pointer-events: none;
	transition: .3s ease;
}
.gal-item .title{
	padding-bottom: 14px;
	margin-bottom: 21px;
	position: relative;
}
.gal-item .title:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 50px;
	height: 2px;
	background-color: #45a7ef;
	transition: .3s ease;
}
.gallery-tabs{
	display: flex;
	justify-content: center;
	max-width: 790px;
	padding-bottom: 10px;
	margin: 0 auto 15px;
}
.gallery-tabs .item{
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	padding: 0 14px;
	transition: .3s ease;
	position: relative;
	border-bottom: 2px solid #534e5f;
}
.gallery-tabs .item:before{
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0%;
	height: 2px;
	z-index: 1;
	background-color: #45a7ef;
	transition: .4s ease;
	transform: translate(-50%,0);
}
.gallery-tabs .item.active:before,
.gallery-tabs .item:hover:before{
	width: 100%;
}
.gallery-tabs .item:hover{
	color: #45a7ef;
}
.gallery-tabs .item.active{
	color: #45a7ef;
	pointer-events: none;
}
.gallery-tabs .item:last-child{
	margin-right: 0;
}

/*----------------------- TO-TOP -----------------------*/
.to-top{
	position: fixed;
	bottom: 30px;
	right: 20px;
	opacity: 0;
	pointer-events: none;
	z-index: 22;
	transition: .3s ease-in-out;
}
.to-top.active{
	opacity: 1;
	pointer-events: auto;
}
.to-top span{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #fff;
	border-right: none;
	border-top: none;
	display: block;
	position: relative;
	animation: rotate-to-top 20s linear 0s infinite normal;
	transition: .3s ease;
}
.to-top:hover span{
	border-color: #45a7ef;
}
@keyframes rotate-to-top {
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}
.to-top img{
	width: 20px;
	position: absolute;
	top: 0;
	right: 0;
	animation: to-top-drone 5s linear 0s infinite normal;
}
@keyframes to-top-drone {
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(-360deg);
	}
}
.to-top i{
	z-index: 1;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 20px;
	transition: .3s ease;
}
.to-top:hover i{
	color: #45a7ef;
}

/*-------------------- PAGINATION --------------------*/
.s-product .pagination-cover{
	margin-top: 20px;
}
.pagination{
	display: flex;
	justify-content: center;
}
.pagination-item:not(:last-child){
	margin-right: 8px;
}
.pagination-item a{
	font-weight: 600;
	font-size: 18px;
	line-height: 32px;
	width: 38px;
	text-align: center;
	border: 1px solid #2b2b2b;
	color: #fff;
	display: block;
}
.pagination-item a i{
	vertical-align: 1px;
}
.pagination-item.active a{
	border-color: #45a7ef;
	background-color: #45a7ef;
	pointer-events: none;
}
.pagination-item:hover a{
	border-color: #45a7ef;
}

/*----------------- S-SINGLE-PRODUCT -----------------*/
.s-single-product{
	padding: 180px 0 160px;
}
.slider-single-for{
	margin-bottom: 20px;
}
.single-for-img{
	display: block;
	position: relative;
}
.single-for-img:before {
	content: '\f00e';
	font-family: 'FontAwesome';
	position: absolute;
	color: #fff;
	font-size: 40px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-40%);
	z-index: 3;
	opacity: 0;
	transition: .3s ease-in-out;
}
.single-for-img:hover:before {
	transform: translate(-50%,-50%);
	opacity: 1;
}
.single-for-img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	background: linear-gradient(145deg, rgba(69,167,239,.8) 0%,rgba(41,41,41,0) 95%);
	transition: .3s ease-in-out;
}
.single-for-img:hover:after {
	opacity: 1;
}
.single-for-img img{
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.slider-single-nav{
	margin-left: -10px;
	margin-right: -10px;
}
.slide-single-nav{
	padding: 0 10px;
}
.single-nav-img{
	position: relative;
}
.single-nav-img:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #45a7ef;
	opacity: 0;
	transition: .3s ease-in-out;
}
.single-nav-img:hover:before,
.slide-single-nav.slick-current .single-nav-img:before{
	opacity: .5;
}
.single-nav-img img{
	width: 100%;
	height: 100px;
	object-fit: cover;
}
.single-price{
	font-size: 35px;
	font-weight: 700;
	color: #45a7ef;
	margin-bottom: 52px;
}
.single-text{
	margin-bottom: 40px;
}
.single-info{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 42px;
}
.single-info li{
	display: flex;
	align-items: center;
	width: calc(50% - 10px);
	padding: 15px 0;
	color: #fff;
}
.single-info li .single-img{
	width: 80px;
	height: 60px;
	text-align: center;
	margin-right: 10px;
}
.single-info li .single-img img{
	max-width: 100%;
	max-height: 100%;
}
.single-tab{
	padding-top: 150px;
}
.single-tab p{
	margin-bottom: 16px;
}
.single-tab .tab-nav{
	margin-bottom: 40px;
}
.reviews-list .review-item{
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
.reviews-list .item{
}
.reviews-list ul{
	padding-left: 100px;
}
.review-avatar{
	margin-right: 20px;
}
.review-avatar img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}
.review-content .name{
	font-size: 16px;
	font-weight: 600;
	color: #45a7ef;
	text-transform: capitalize;
	letter-spacing: 0.07em;
}
.review-content .date{
	font-size: 14px;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.4);
}
.faq-cover li:not(:last-child){
	padding-bottom: 38px;
	border-bottom: 1px solid #534e5f;
	margin-bottom: 53px;
}
.review-btn{
	margin-top: 16px;
	font-weight: 600;
	display: inline-block;
}

/*----------------------- S-NEWS -----------------------*/
.s-news{
	padding: 180px 0;
}
.post-item-cover{
	margin-top: 100px;
}
.post-item-cover:first-child{
	margin-top: 0;
}
.post-header{
	position: relative;
	margin-bottom: 20px;
}
.post-thumbnail img{
	max-width: 100%;
	width: 100%;
	max-height: 450px;
	object-fit: cover;
	display: block;
	transition: .3s ease;
}
.post-thumbnail img:hover{
	opacity: .7;
}
.post-thumbnail~.post-header-info{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	min-height: 150px;
	background: rgba(41, 41, 41, 0.8);
	padding: 25px 70px;
	flex-direction: column;
}
.post-header-info{
	position: relative;
}
.post-thumbnail~.post-header-info:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 2px solid #45a7ef;
	transition: .4s ease;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	pointer-events: none;
}
.post-header .post-thumbnail~.post-header-info .meta{
	text-align: center;
	margin: 0 auto;
}
.post-item-cover .post-header .meta{
	margin-bottom: 0;
}
.post-item-cover .meta{
	margin-left: -15px;
	margin-right: -15px;
	width: 100%;
}
.post-item-cover .meta span{
	padding: 10px 15px;
	text-transform: capitalize;
}
.post-header .post-thumbnail~.post-header-info .title{
	margin-bottom: 10px;
	text-align: center;
}
.post-item-cover .title{
	width: 100%;
	margin-bottom: 18px;
}
.post-item-cover .title a{
	color: #fff;
}
.post-item-cover .title a:hover{
	color: #45a7ef;
}
.post-content .text{
	padding-bottom: 11px;
}
.post-content .text p{
	margin-bottom: 25px;
}
.post-item-cover .btn{
	margin-top: 44px;
}
blockquote{
	margin: 15px 0;
	background: #45a7ef;
	padding: 38px 38px 38px 176px;
	color: #fff;
	position: relative;
}
blockquote p{
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.6em;
}
blockquote cite{
	font-weight: 600;
	font-size: 24px;
	line-height: 1.5em;
	margin-top: 24px;
	display: block;
}
blockquote cite:before{
	content: '—';
	display: inline-block;
	margin-right: 10px;
}
blockquote a{
	color: #fff;
}
blockquote a:hover{
	opacity: .7;
}
blockquote:before{
	content: '\f10e';
	position: absolute;
	top: 38px;
	left: 44px;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	font-size: 96px;
	line-height: 96px;
	color: #fff;
	opacity: 0.2;
}
.blog-cover .pagination-cover{
	margin-top: 100px;
}
.blog-cover .pagination{
	justify-content: flex-start;
}

/*-------------------- WIDGET --------------------*/
.widget{
	margin-top: 80px;
}
.widget:first-child{
	margin-top: 0;
}
.widget .title{
	text-transform: capitalize;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #2a2b2b;
	letter-spacing: 0;
}

/*widget-support*/
.support{
	background: #292929;
	padding: 50px 40px;
	position: relative;
	text-align: center;
}
.support img{
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
}
.support .name{
	font-weight: 600;
	font-size: 15px;
	line-height: 1.5em;
	text-transform: capitalize;
	color: #fff;
}
.support .name span{
	color: #45a7ef;
}
.support .title{
	font-weight: 600;
	font-size: 18px;
	text-transform: capitalize;
	color: #fff;
	margin-bottom: 23px;
}
.support .btn{
	margin-top: 30px;
}

/*widget-tags*/
.widget-tags ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
.widget-tags li{
	margin-right: 20px;
	margin-bottom: 10px;
}
.widget-tags li a{
	padding: 0 15px;
	display: block;
	line-height: 38px;
	color: #fff;
	background: #333;
	text-align: center;
	font-size: 14px;
}
.widget-tags li a:hover{
	background-color: #45a7ef;
}

/*widget-categories*/
.widget-archive li:not(:last-child),
.widget-categories li:not(:last-child){
	margin-bottom: 10px;
}
.widget-archive li a,
.widget-categories li a{
	position: relative;
	font-weight: 700;
	font-size: 17px;
	text-transform: capitalize;
	color: #45a7ef;
}
.widget-archive li a:before,
.widget-categories li a:before{
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 500;
	margin-right: 10px;
}

/*widget-recent-posts*/
.widget-recent-posts li:not(:last-child){
	margin-bottom: 20px;
}
.widget-recent-posts li a{
	font-weight: 700;
}
.widget-recent-posts li .date{
	display: block;
	margin-top: 4px;
}

/*widget-instagram*/
.widget-instagram ul{
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
.widget-instagram li{
	width: 33.33%;
	padding: 10px;
}
.widget-instagram li a{
	display: block;
}
.widget-instagram li img{
	width: 100%;
	display: block;
	height: 112px;
	object-fit: cover;
	transition: .3s ease;
}
.widget-instagram li a:hover img{
	opacity: .7;
}

/*-------------------- SINGLE BLOG --------------------*/
/*.autor-cover*/
.autor-cover{
	margin: 53px 0 37px;
	border-top: 1px solid #2a2b2b;
	border-bottom: 1px solid #2a2b2b;
	padding: 40px 0;
	display: flex;
	align-items: center;
}
.autor-cover img{
	width: 124px;
	height: 124px;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 30px;
}
.autor-cover .name{
	font-weight: 700;
	font-size: 20px;
	color: #45a7ef;
	margin-bottom: 6px;
}
.autor-cover p{
	max-width: 370px;
}

/*navigation*/
.navigation{
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	border-bottom: 1px solid #2a2b2b;
}
.navigation-item{
	width: calc(50% - 15px);
}
.navigation-right{
	text-align: right;
}
.navigation-item span{
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	color: #45a7ef;
	transition: .3s ease;
}
.navigation-item .title{
	position: relative;
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: #fff;
	transition: .3s ease;
}
.navigation-item.navigation-left .title{
	padding-left: 20px;
}
.navigation-item.navigation-right .title{
	padding-right: 20px;
}
.navigation-item .title:before{
	color: #45a7ef;
	font-family: 'FontAwesome';
	position: absolute;
	top: 1px;
}
.navigation-item.navigation-left .title:before{
	left: 0;
	content: '\f104';
}
.navigation-item.navigation-right .title:before{
	content: '\f105';
	right: 0;
}
.navigation-item:hover{
	opacity: .7;
}
.navigation-item:hover .title{
	color: #45a7ef;
}

/*reviews*/
.reviews{
	margin-top: 50px;
}
.reviews .title{
	margin-bottom: 20px;
	text-transform: capitalize;
	letter-spacing: 0;
}
.reviews-form{
	margin-top: 50px;
}
.reviews-form .inp-name,
.reviews-form .inp-email{
	width: calc(50% - 15px);
}

/*---------------------- S-ERROR ----------------------*/
.s-error{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 720px;
	padding: 166px 0 180px;
	text-align: center;
	overflow: hidden;
}
.s-error:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,.8);
}
.s-error .container{
	position: relative;
	z-index: 2;
}
.s-error .title{
	font-size: 170px;
	line-height: 180px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.s-error p{
	font-size: 26px;
	font-weight: 600;
	margin: 30px 0 50px;
	color: #fff;
}
.drone-error{
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 3;
	max-width: 500px;
	animation: levitation 20s linear 0s infinite normal;
}

/*----------------- S-PRAVICY-POLICY -----------------*/
.s-pravicy-policy{
	padding: 166px 0;
}
.s-pravicy-policy h3{
	margin-bottom: 5px;
}
.s-pravicy-policy h3:not(:first-child){
	margin-top: 30px;
}
.s-pravicy-policy ul{
	list-style-type: disc;
	padding-left: 15px;
	margin-top: 15px;
}

.s-pravicy-policy a:hover,
.review-btn:hover,
.widget-archive li a:hover,
.widget-recent-posts li a:hover,
.widget-categories li a:hover,
.offer-item-content a:hover,
.meta a:hover,
.blok-link li a:hover,
.copyright a:hover,
.footer-menu li a:hover{
	color: #fff;
}
/* -------------------- MEDIA --------------------- */
@media(max-width: 1700px){
	.slide-info {
		max-width: 52%;
	}
	.main-slider-nav{
		max-width: 650px;
	}
}
@media(max-width: 1440px){
	.main-slider-nav{
		max-width: 600px;
	}
	.main-slide-nav img {
		height: 120px;
	}
	.slide-info h3 {
		font-size: 34px;
	}
	.slide-info {
		padding: 8px 30px 17px 0;
		min-height: 178px;
	}
	.serv-block-item {
		height: 600px;
	}

}
@media(max-width: 1365px){
	.nav-list>li {
		margin-right: 32px;
	}
	.main-slide-for {
		height: 650px;
	}
	.slide-info h3 {
		font-size: 32px;
	}
	.serv-block-item {
		height: 540px;
	}
	.serv-block-info h4{
		font-size: 22px;
	}
	.s-shop .prod-item .prod-thumbnail .prod-img {
		height: 360px;
	}
	.s-opportunities {
		min-height: 780px;
	}
	.slider-opportunities .title {
		font-size: 86px;
	}
	.slider-opportunities .slick-arrow{
		top: 5px;
	}
	.testimonial-item img {
		margin-top: -98px;
		width: 120px;
		height: 120px;
	}
	.s-infographics .block-icon h6 {
		padding-top: 12px;
		min-height: 58px;
		font-size: 16px;
	}
	.s-infographics .number{
		margin-bottom: 4px;
		font-size: 46px;
	}
	.s-infographics h2 {
		margin-bottom: 20px;
	}
	.s-we-offer .block-icon img{
		max-height: 44px;
	}
	.prod-item .prod-thumbnail .prod-img {
		height: 300px;
	}
	.baner-item h2{
		font-size: 30px;
	}
	.slider-new-product .slick-arrow {
		top: 120px;
	}
	.single-for-img img {
		height: 474px;
	}
	.s-shop .block-icon{
		padding: 20px 16px;
	}
	.prod-tabs .item{
		margin-right: 10px;
	}
}
@media(max-width: 1279px){
	.slide-testimonial{
		padding-top: 55px;
	}
	.nav-list>li {
		margin-right: 30px;
	}
	.slide-info {
		max-width: 48%;
	}
	.main-slider-nav {
		max-width: 48%;
	}
	footer {
		padding-top: 65px;
	}
	footer h5 {
		margin-bottom: 25px;
	}
	.footer-subscribe h5 {
		margin-bottom: 30px;
	}
	.s-info-bg {
		min-height: 690px;
	}
	.slider-opportunities .title {
		font-size: 74px;
	}
	.slider-opportunities .slick-arrow{
		top: 0;
	}
	.s-testimonials.bg-testimonials{
		min-height: 750px;
	}
	.slider-new-product .slick-arrow {
		top: 130px;
	}
	.slider-new-product .slick-arrow{
		background: #45a7ef;
		border: 2px solid #45a7ef;
		font-size: 34px;
		width: 40px;
		line-height: 33px;
		padding: 0 10px;
		height: 40px;
		text-align: center;
	}
	.slider-new-product .slick-arrow.slick-arrow-next {
		right: 0px;
	}
	.slider-new-product .slick-arrow.slick-arrow-prev {
		left: 0px;
	}
	.slider-new-product .slick-arrow:hover{
		color: #fff;
		background-color: #333;
		border-color: #fff;
	}
	.drone-error{
		max-width: 410px;
	}
}
@media(max-width: 1199px){
	.about-top-cover{
		align-items: stretch;
	}
	.about-img{
		padding-top: 10px;
	}
	.about-img img{
		height: 415px;
		object-fit: cover;
	}
	.s-product .pagination-cover {
		margin-top: 0;
	}
	.s-discount-program{
		padding: 116px 0 124px;
	}
	.s-testimonials.bg-testimonials{
		padding: 116px 0 130px;
	}
	.s-product {
		padding-bottom: 130px;
	}
	.s-banners {
		padding: 50px 0 116px;
	}
	.new-product {
		padding: 116px 0 0;
	}
	.s-info-bg.s-infographics{
		padding-bottom: 100px;
	}
	.slide-testimonial {
		padding-top: 70px;
	}
	body{
		font-size: 15px;
	}
	h5 {
		font-size: 18px;
	}
	.nav-menu{
		padding-right: 0;
	}
	.nav-list>li {
		margin-right: 12px;
	}
	header {
		padding: 26px 0;
	}
	.slide-info h3 {
		font-size: 26px;
	}
	.main-slide-nav img {
		height: 105px;
	}
	.slide-info {
		padding: 10px 10px 10px 0;
		min-height: 163px;
	}
	.slide-info h3{
		margin-bottom: 5px;
	}
	.slide-info a{
		margin-top: 10px;
	}
	.footer-menu li {
		margin-right: 28px;
	}
	footer h5 {
		margin-bottom: 18px;
	}
	.footer-subscribe h5 {
		margin-bottom: 22px;
	}
	.blok-link li:not(:last-child) {
		margin-bottom: 10px;
	}
	.logo {
		font-size: 22px;
		line-height: 30px;
	}
	.logo-strong{
		padding-bottom: 2px;
	}
	h2 {
		font-size: 30px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	h4 {
		font-size: 22px;
	}
	h6{
		font-size: 16px;
	}
	.best-prices {
		padding: 130px 0;
		overflow-x: hidden;
	}
	.price-img-cover {
		padding: 0 60px 0 0;
	}
	.price-img-cover .price-drone{
		max-width: 450px;
		right: -30px;
	}
	.price-info {
		padding: 0 0 20px;
	}
	.s-we-offer{
		padding: 116px 0 100px;
	}
	.s-team,
	.s-blog {
		padding: 116px 0 130px;
	}
	.s-shop {
		padding: 116px 0 50px;
	}
	.s-testimonials {
		padding: 116px 0 130px;
	}
	.s-clients,
	.about-top,
	.s-contacts {
		padding: 130px 0;
	}
	.border-item {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	.serv-block-info h4 {
		font-size: 18px;
	}
	.serv-block-info{
		padding: 40px 25px;
	}
	.serv-block-item {
		height: 490px;
	}
	.serv-block-info p{
		margin-top: 10px;
	}
	.serv-block-info span{
		margin-top: 20px;
	}
	.serv-block-item:hover .serv-block-info p{
		height: 90px;
	}
	.serv-block-info p {
		line-height: 1.3em;
		font-size: 14px;
	}
	.s-blog .post-content .title{
		font-size: 16px;
	}
	.post-item .prod-thumbnail img{
		height: 280px;
	}
	.opportunitie-item, .block-icon{
		min-height: 190px;
	}
	.block-icon img {
		margin-bottom: 15px;
		max-height: 49px;
	}
	.block-icon h6 {
		padding-top: 16px;
		font-size: 15px;
	}
	.block-icon:hover img {
		margin-bottom: 10px;
	}
	.block-icon:hover h6 {
		padding-top: 8px;
	}
	.s-infographics .block-icon h6{
		padding-top: 12px;
	}
	.we-offer-bottom .block-icon, .s-shop .block-icon,
	.opportunitie-item, .block-icon {
		min-height: 170px;
	}
	.s-shop .prod-item .prod-thumbnail .prod-img {
		height: 300px;
	}
	.opportunitie-item .item-wrap .numb {
		font-size: 38px;
	}
	.s-opportunities {
		min-height: 670px;
	}
	.s-opportunities,
	.s-info-bg {
		padding: 116px 0 130px;
	}
	.testimonial-item{
		padding: 30px;
	}
	.testimonial-item:before{
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	.testimonial-item .testimon-content {
		padding: 24px 30px;
	}
	.page-title .title, h1 {
		font-size: 38px;
	}
	.page-title{
		padding-top: 66px;
	}
	.about-info p {
		margin-bottom: 16px;
	}
	.about-block-icon svg {
		max-height: 40px;
	}
	.about-block-icon {
		min-width: 60px;
	}
	.about-block-info .title{
		font-size: 16px;
	}
	.s-infographics .block-icon{
		margin-bottom: 30px;
	}
	.team-img img{
		height: 250px;
	}
	.team-img:before{
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
	.we-offer-bottom .block-icon{
		margin-bottom: 30px;
	}
	.contacts-top.about-top {
		padding: 130px 0 116px;
	}
	.slide-video {
		height: 500px;
	}
	.s-video {
		padding: 116px 0;
	}
	.s-video .slider-video .slick-arrow,
	.s-video .slider-video .slick-dots{
		opacity: 1;
	}
	.slider-video .slick-arrow.slick-arrow-prev {
		left: 5px;
	}
	.slider-video .slick-arrow.slick-arrow-next {
		right: 5px;
	}
	.slider-video .slick-dots{
		bottom: 30px;
	}
	.slider-video .slick-dots li{
		width: 14px;
		height: 14px;
	}
	.gallery-tabs .item{
		font-size: 18px;
	}
	.gal-item{
		padding: 20px 30px;
	}
	.gallery-item a:before{
		font-size: 30px;
	}
	.s-gallery {
		padding-bottom: 115px;
	}
	.baner-item {
		padding: 30px;
		height: 430px;
	}
	.baner-item h2 {
		font-size: 25px;
	}
	.s-single-product {
		padding: 130px 0 110px;
	}
	.single-tab {
		padding-top: 120px;
	}
	.single-for-img img {
		height: 370px;
	}
	.single-nav-img img {
		height: 90px;
	}
	.single-info li .single-img {
		width: 40px;
		height: 40px;
	}
	.single-info li{
		padding: 12px 0;
	}
	.single-text {
		margin-bottom: 30px;
	}
	.review-btn {
		margin-top: 5px;
	}
	.s-news {
		padding: 130px 0;
	}
	.post-thumbnail~.post-header-info{
		padding: 25px 50px;
	}
	.post-thumbnail img{
		max-height: 370px;
	}
	.blog-cover .pagination-cover,
	.post-item-cover {
		margin-top: 80px;
	}
	.support {
		padding: 40px 30px;
	}
	.support .title{
		margin-bottom: 8px;
	}
	.widget {
		margin-top: 45px;
	}
	.widget-tags li a {
		padding: 0 10px;
		line-height: 34px;
	}
	.widget-tags li {
		margin-right: 10px;
	}
	.widget-archive li a, .widget-categories li a{
		font-size: 15px;
	}
	.widget-instagram li img{
		height: 82px;
	}
	blockquote:before {
		top: 20px;
		left: 25px;
		font-size: 70px;
		line-height: 70px;
	}
	blockquote p {
		font-size: 20px;
		line-height: 1.5em;
	}
	blockquote cite {
		font-size: 20px;
	}
	blockquote {
		padding: 20px 20px 20px 115px;
	}
	.s-error .title {
		font-size: 130px;
		line-height: 150px;
	}
	.s-error p {
		font-size: 22px;
	}
	.s-error p{
		margin-bottom: 34px;
	}
	.drone-error {
		max-width: 330px;
	}
	.s-error {
		min-height: 620px;
		padding: 116px 0 130px;
	}
	.s-pravicy-policy{
		padding: 116px 0;
	}
	#message{
		margin: 20px 0;
	}
	#success_page h3{
		font-size: 25px;
	}
	.single-price,
	.about-info .title-left, .price-info .title-left,
	.price-info .price{
		margin-bottom: 42px;
	}
	.slogan{
		margin-bottom: 45px;
	}
	.meta.top {
		margin-bottom: 26px;
	}
	.single-info,
	.post-item .btn {
		margin-top: 33px;
	}
	.prod-content .title {
		margin-bottom: 31px;
	}
	.prod-item .btn {
		margin-top: 31px;
	}
	.s-opportunities .slogan {
		margin-bottom: 48px;
	}
	.slider-opportunities .title{
		margin-bottom: 59px;
	}
	.s-opportunities .btn,
	.slider-testimonials .slick-dots{
		margin-top: 50px;
	}
	.we-offer-bottom {
		margin-top: 45px;
	}
	.baner-item-content h2, .s-discount-program h2 {
		margin-bottom: 41px;
	}
	.s-anim {
		transform: translateY(0);
		opacity: 1;
	}
}

@media(max-width: 991px){
	.logo {
		font-size: 20px;
	}
	.slider-new-product .slick-arrow {
		top: 100px;
	}
	.gallery-tabs .item {
		font-size: 16px;
	}
	.s-info-bg {
		min-height: 640px;
	}
	header {
		background: rgba(19, 18, 19, 0.8);
	}
	.nav-menu-cover{
		padding: 0;
		-ms-flex: 0 0 0;
		flex: 0 0 0;
		max-width: 0;
	}
	.nav-menu-cover{
		position: static;
	}
	header.header-scroll,
	header{
		padding: 10px 0;
	}
	.nav-menu{
		padding: 30px 0;
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	}
	.nav-list>li{
		margin-right: 0;
	}
	.nav-list>li>a:before{
		display: none;
	}
	.nav-list>li>a{
		font-size: 16px;
	}
	.nav-list li a{
		line-height: 38px;
		padding: 0 15px;
	}
	.s-blog .post-item .btn{
		margin-top: 32px;
	}
	.nav-list li.dropdown ul li a{
		padding-left: 30px;
	}
	.nav-list li.dropdown ul li{
		margin-bottom: 0;
	}
	.nav-list li.dropdown2:hover>a,
	.nav-list li.dropdown:hover>a,
	.nav-list li a:hover{
		color: #fff;
	}
	.nav-list li.dropdown ul li.active a,
	.nav-list li.active a{
		color: #fff;
		background-color: #45a7ef;
	}
	.slide-info h3 {
		font-size: 22px;
	}
	.footer-menu li {
		margin-right: 10px;
	}
	.blok-link{
		order: 2;
		margin-top: 30px;
	}
	footer h5 {
		margin-bottom: 10px;
	}
	.footer-subscribe h5 {
		margin-bottom: 16px;
	}
	.price-img-cover {
		padding: 0;
	}
	.price-img-cover .price-drone {
		max-width: 400px;
		right: -30px;
	}
	.price-info{
		padding: 0;
	}
	.serv-block{
		flex-wrap: wrap;
	}
	.serv-block-item{
		width: 50%;
	}
	.post-item .prod-thumbnail img {
		height: 230px;
	}
	.meta {
		font-size: 13px;
	}
	.post-item .post-comments {
		margin-right: 12px;
	}
	.s-shop .prod-item .prod-thumbnail .prod-img {
		height: 240px;
	}
	.prod-content p {
		margin-bottom: 18px;
	}
	.prod-tabs{
		flex-wrap: wrap;
		margin: -15px -15px 15px;
	}
	.prod-tabs .item {
		width: 33.33%;
		padding: 15px;
		margin-right: 0;
	}
	.slider-opportunities .slick-arrow{
		font-size: 44px;
		top: -8px;
	}
	.slider-opportunities .title {
		font-size: 50px;
	}
	.slider-testimonials .slick-dots{
		margin-top: 40px;
	}
	.about-img{
		display: none;
	}
	.about-info-text {
		font-size: 13px;
	}
	.page-title {
		padding-top: 42px;
		min-height: 200px;
	}
	.team-img img {
		height: 200px;
	}
	.s-discount-program{
		min-height: 430px;
	}
	.about-block-icon svg {
		max-height: 34px;
	}
	.about-block-icon {
		min-width: 50px;
	}
	.slide-video {
		height: 400px;
	}
	.prod-item .prod-thumbnail .prod-img {
		height: 240px;
	}
	.prod-item .lable {
		top: 10px;
		left: 10px;
		font-size: 12px;
	}
	.baner-item:before{
		background-color: rgb(0,0,0,.6);
	}
	.single-price {
		font-size: 30px;
		margin-bottom: 22px;
	}
	.single-for-img img {
		height: 340px;
	}
	.single-nav-img img {
		height: 72px;
	}
	.slider-single-for {
		margin-bottom: 20px;
	}
	.single-info li {
		padding: 6px 0;
	}
	.single-info li .single-img {
		width: 34px;
		height: 34px;
	}
	.single-for-img:before{
		font-size: 30px;
	}
	.s-related-products {
		padding: 116px 0 80px;
	}
	.blog-cover{
		margin-bottom: 130px;
	}
	.widget-instagram li img {
		height: 180px;
	}
	.drone-error {
		max-width: 250px;
		top: 30px;
	}
	#success_page h3{
		font-size: 22px;
	}
	.price-img-block{
		padding-top: 10px;
		align-self: flex-start;
	}
	.main-slider-nav{
		bottom: 30px;
	}
	.main-slide-for .container{
		padding-bottom: 30px;
	}
	.serv-block .serv-block-item .serv-block-info {
		bottom: 0;
		transform: translate(0,0);
	}
	.serv-block .serv-block-item .serv-block-info p {
		max-height: 90px;
		height: auto;
		opacity: 1;
		transform: translateY(0px);
		transition: .4s ease .2s;
		overflow: hidden;
	}
	.serv-block .serv-block-item .serv-block-info span {
		opacity: 1;
		transform: translateY(0px);
		transition: .4s ease .3s;
	}
	.serv-block .serv-block-item:after{
		opacity: 1;
	}
	.main-slide-nav span{
		font-size: 30px;
	}
	.about-block{
		height: 100%;
	}
	.opportunitie-item .item-wrap .numb,
	.s-infographics .number {
		font-size: 34px;
	}
	.single-tab .tab-nav {
		margin-bottom: 34px;
	}
	.faq-cover li:not(:last-child) {
		padding-bottom: 28px;
		margin-bottom: 43px;
	}
	.single-price,
	.about-info .title-left,
	.price-info .title-left,
	.price-info .price {
		margin-bottom: 30px;
	}
	.about-cont{
		padding-top: 10px;
	}
	.single-info, .post-item .btn{
		margin-top: 0;
	}
	.single-text {
		margin-bottom: 22px;
	}
	.single-info{
		margin-bottom: 26px;
	}

}

@media(max-width: 860px){
	.header-icon{
		padding-right: 50px;
	}
}

@media(max-width: 767px){
	.s-info-bg.s-infographics {
		padding-bottom: 80px;
	}
	#message{
		margin: 10px 0;
		font-size: 14px;
	}
	#success_page h3{
		font-size: 20px;
	}
	.baner-item {
		padding: 40px 20px;
		height: 430px;
	}
	.baner-item h2 {
		font-size: 22px;
	}
	.baner-item-content .btn {
		margin: 41px 0 20px;
	}
	.s-product {
		padding-bottom: 110px;
	}
	.s-banners {
		padding: 30px 0 96px;
	}
	.new-product {
		padding: 96px 0 0;
	}
	.gal-item{
		display: none;
	}
	.s-video {
		padding: 96px 0;
	}
	.slide-video video{
		max-width: 767px;
	}
	.contacts-top.about-top {
		padding: 110px 0 96px;
	}
	.s-testimonials.bg-testimonials {
		min-height: 630px;
		padding: 96px 0 110px;
	}
	.page-title .title, h1 {
		font-size: 32px;
	}
	.block-icon{
		margin-bottom: 30px;
	}
	.main-slide-for .container{
		padding-bottom: 0;
	}
	.main-slider-nav{
		bottom: auto;
		position: relative;
		max-width: 100%;
		margin-top: 20px;
		padding-bottom: 0;
	}
	.main-slide-for {
		height: 530px;
	}
	.slide-info {
		padding: 10px 0 15px;
		min-height: 120px;
		max-width: 100%;
		width: 100%;
	}
	.slide-info:before{
		right: -15px;
	}
	.main-slide-nav span {
		font-size: 32px;
		bottom: 15px;
	}
	.footer-bottom {
		text-align: center;
    padding: 13px 0 26px;
	}
	footer .soc-link {
		justify-content: center;
		margin-top: 20px;
	}
	.footer-menu {
		margin-top: 8px;
	}
	.to-top {
		bottom: 15px;
		right: 15px;
	}
	.to-top span {
		width: 54px;
		height: 54px;
		background: #45a7ef;
		border: none;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	}
	.to-top i{
		font-size: 16px;
	}
	.to-top:hover i{
		color: #fff;
	}
	.blok-link li:not(:last-child) {
		margin-bottom: 8px;
	}
	.copyright {
		padding: 25px 0;
	}
	footer {
		padding-top: 60px;
	}
	.footer-logo{
		display: inline-block;
	}
	.price-img-cover img{
		width: 100%;
		max-height: 400px;
		object-fit: cover;
	}
	.price-img-cover .price-drone {
		max-width: 401px;
		right: 50px;
	}
	.best-prices {
		padding: 96px 0 110px;
	}
	.s-team{
		padding: 96px 0 57px;
	}
	.s-blog {
		padding: 96px 0 110px;
	}
	.s-shop {
		padding: 96px 0 30px;
	}
	.price-img-block{
		display: none;
	}
	h2{
		font-size: 25px;
	}
	h3{
		font-size: 22px;
	}
	h4 {
		font-size: 20px;
	}
	.s-blog .post-item{
		margin-bottom: 50px;
	}
	.s-blog .post-item:last-child{
		margin-bottom: 0;
	}
	.post-item {
		margin-top: 0;
	}
	.slogan{
		margin-bottom: 40px;
	}
	.post-item .prod-thumbnail img {
		height: 260px;
	}
	.s-info-bg .btn {
		margin-top: 0;
	}
	.s-opportunities,
	.s-info-bg {
		padding: 96px 0 110px;
	}
	.s-shop .block-icon{
		margin-bottom: 0;
	}
	.opportunitie-item{
		margin-bottom: 30px;
		min-height: 150px;
	}
	.s-opportunities .btn {
		margin-top: 10px;
	}
	.slider-opportunities .title {
		font-size: 40px;
	}
	.slider-opportunities .slick-arrow {
		top: -13px;
	}
	.testimonial-item img {
		margin-top: -80px;
		width: 100px;
		height: 100px;
	}
	.slide-testimonial{
		padding-top: 50px;
	}
	.s-testimonials {
		padding: 96px 0;
	}
	.s-contacts{
		padding: 96px 0 110px;
	}
	.s-clients {
		padding: 80px 0;
	}
	.about-top{
		padding: 96px 0 110px;
	}
	.about-img{
		display: none;
	}
	.about-top-block .col-12{
		margin-top: 30px;
	}
	.about-block{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 25px 20px;
	}
	.about-block-info .title {
		font-size: 18px;
	}
	.about-block-info .title:before{
		left: 50%;
		transform: translate(-50%,0);
	}
	.about-info-text {
		font-size: inherit;
	}
	.about-block-icon{
		padding-right: 0;
	}
	.about-top-block {
		margin-top: 57px;
	}
	.s-infographics .number {
		margin-bottom: 4px;
		font-size: 36px;
	}
	.team-item {
		padding-top: 0;
		margin-bottom: 50px;
	}
	.team-img img {
		height: 254px;
	}
	.s-discount-program{
		padding: 96px 0 104px;
	}
	.s-gallery {
		padding-bottom: 106px;
	}
	.single-for-img img {
		height: 390px;
	}
	.single-nav-img img {
		height: 100px;
	}
	.slider-single-nav{
		margin-bottom: 30px;
	}
	.s-single-product {
		padding: 110px 0 90px;
	}
	.single-tab {
		padding-top: 110px;
	}
	.s-related-products {
		padding: 96px 0 30px;
	}
	.sale-cover .sale{
		font-size: 18px;
	}
	.s-news {
		padding: 110px 0;
	}
	.blog-cover {
		margin-bottom: 110px;
	}
	.blog-cover .pagination-cover, .post-item-cover {
		margin-top: 60px;
	}
	.post-item-cover .meta span{
		padding: 10px;
	}
	.post-item-cover .meta {
		margin-left: -10px;
		margin-right: -10px;
	}
	.post-thumbnail~.post-header-info {
		padding: 25px 30px;
	}
	blockquote:before {
		font-size: 50px;
		line-height: 50px;
		left: 20px;
	}
	blockquote{
		padding-left: 80px;
	}
	blockquote p {
		font-size: 16px;
	}
	blockquote cite {
		font-size: 16px;
	}
	.s-error .title {
		font-size: 90px;
		line-height: 100px;
	}
	.s-error p {
		font-size: 20px;
	}
	.drone-error {
		display: none;
	}
	.s-error {
		padding: 86px 0 110px;
		min-height: auto;
	}
	.s-pravicy-policy{
		padding: 96px 0;
	}
	.serv-block-info {
		padding: 30px 20px;
	}
	.serv-block-item {
		height: 460px;
	}
	.s-we-offer {
		padding: 96px 0 80px;
	}
	.prod-item {
		margin-bottom: 80px;
	}
	.s-product .pagination-cover {
		margin-top: 0px;
	}
	.main-slider-nav{
		display: none;
	}
}

@media(max-width: 575px){
	.s-banners{
		padding-bottom: 70px;
	}
	.baner-item{
		margin-bottom: 30px;
		min-height: 380px;
	}
	.pagination-item a{
		width: 34px;
	}
	.s-discount-program h2{
		font-size: 24px;
	}
	.we-offer-bottom .block-icon h6, .s-shop .block-icon h6 {
		font-size: 13px;
	}
	.we-offer-item:not(:last-child){
		margin-bottom: 30px;
	}
	.clients-cover>div{
		margin-bottom: 30px;
	}
	.s-clients{
		padding: 110px 0 80px;
	}
	.page-title {
		padding-top: 40px;
	}
	.nav-menu {
		width: 100% !important;
	}
	.header-icon {
		justify-content: flex-start;
		margin-top: 8px;
		margin-left: -10px;
		padding-right: 0;
	}
	.logo img {
		max-width: 110px;
	}
	.header-icon li .icon{
		font-size: 15px;
	}
	header.header-scroll, header {
		padding: 10px 80px 10px 0;
	}
	.header-icon li.search form{
		right: auto;
		left: 0;
	}
	.footer-info{
		margin-bottom: 50px;
	}
	.blok-link {
		margin-top: 50px;
	}
	.footer-bottom {
		margin-top: 50px;
		padding: 26px 0;
	}
	.footer-menu,
	.footer-logo{
		display: none;
	}
	footer .soc-link{
		margin-top: 0;
	}
	.blok-link li:not(:last-child) {
		margin-bottom: 6px;
	}
	.price-info ul li {
		font-size: 12px;
		padding: 0 10px;
		margin: 0 10px 10px 0;
	}
	.s-shop .prod-item .prod-thumbnail .prod-img {
		height: 280px;
	}
	.slider-opportunities .title {
		font-size: 30px;
	}
	.slider-opportunities .slick-arrow {
		font-size: 34px;
	}
	.inp-name, .inp-phone, .inp-email {
		width: 100%;
	}
	.s-infographics .block-icon h6{
		font-size: 12px;
	}
	.s-infographics .number {
		font-size: 30px;
	}
	.team-img {
		margin-bottom: 10px;
	}
	.gallery-tabs .item {
		font-size: 15px;
	}
	.gallery-item{
		padding: 4px;
	}
	.prod-tabs{
		margin: 0 0 30px;
	}
	.prod-tabs .block-icon img{
		display: none;
	}
	.s-shop .block-icon:before,
	.prod-tabs .block-icon h6:before{
		display: none;
	}
	.s-shop .block-icon{
		min-height: auto;
		padding: 0 10px;
	}
	.prod-tabs,
	.gallery-tabs{
		flex-direction: column;
		align-items: center;
	}
	.prod-tabs .item {
		width: 100%;
		padding: 0;
	}
	.prod-tabs .item.active{
		pointer-events: none;
	}
	.prod-tabs .block-icon:hover h6{
		color: #fff;
	}
	.prod-tabs .item.active .block-icon h6,
	.prod-tabs .block-icon h6{
		padding: 0;
		line-height: 38px;
		text-align: center;
		font-size: 15px;
	}
	.gallery-tabs .item{
		background: #292929;
		box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
		line-height: 38px;
		width: 100%;
		border-bottom: none;
	}
	.gallery-tabs .item:before{
		display: none;
	}
	.gallery-tabs .item.active{
		background-color: #45a7ef;
		color: #fff;
	}
	.single-for-img img {
		height: 320px;
	}
	.single-nav-img img {
		height: 84px;
	}
	.review-avatar img {
		width: 60px;
		height: 60px;
	}
	.review-avatar {
		margin-right: 10px;
	}
	.reviews-list ul {
		padding-left: 15px;
	}
	.single-tab .tab-nav {
		margin-bottom: 30px;
	}
	.post-thumbnail~.post-header-info{
		position: relative;
	}
	.post-header-info .title{
		font-size: 16px;
	}
	.post-thumbnail~.post-header-info {
		padding: 20px;
	}
	.post-item-cover .meta span {
		padding: 10px 5px;
	}
	.post-item-cover .meta {
		margin-left: -5px;
		margin-right: -5px;
	}
	blockquote:before {
		font-size: 36px;
		line-height: 36px;
		left: 10px;
		top: 10px;
	}
	blockquote {
		padding: 10px 10px 10px 56px;
	}
	blockquote cite{
		margin-top: 10px;
	}
	.widget-instagram li img {
		height: 120px;
	}
	.nav-btn{
		top: 0;
		transform: none;
	}
	.testimonial-item {
		padding: 30px 15px;
	}
	.testimonial-item .testimon-content {
		padding: 24px 15px;
	}
	.header-icon{
		display: none;
	}
	.main-slide-for .container {
		padding-bottom: 0;
	}
	.autor-cover img {
		min-width: 90px;
		width: 90px;
		height: 90px;
		margin-right: 20px;
	}
}

@media(max-width: 479px){
	.reviews-form .inp-name, .reviews-form .inp-email {
		width: 100%;
	}
	.block-icon img {
		max-height: 40px;
	}
	.footer-menu{
		flex-wrap: wrap;
	}
	.footer-bottom .footer-menu li {
		margin: 0 10px;
		text-align: center;
	}
	.footer-menu li a{
		display: inline-block;
	}
	.serv-block-item {
		width: 50%;
		height: 230px;
	}
	.serv-block-info {
		padding: 20px;
	}
	.serv-block .serv-block-item .serv-block-info{
		height: 100%;
	}
	.serv-block .serv-block-item .serv-block-info span{
		font-size: 12px;
	}
	.serv-block-info p{
		display: none;
	}
	.serv-block-info h4 {
		font-size: 14px;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		transform: translate(0,-50%);
		margin: 0;
		padding: 0 20px;
	}
	.block-icon h6{
		font-size: 13px;
	}
	.opportunitie-item, .block-icon {
		min-height: 150px;
	}
	.opportunitie-item h6{
		font-size: 12px;
	}
	.opportunitie-item .item-wrap .numb {
		font-size: 24px;
	}
	.opportunitie-item .item-wrap .item-value {
		font-size: 10px;
		line-height: 14px;
	}
}

/* Reusable nav-style link (matches .nav-menu .nav-list li a) */
.link-nav {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;                 /* same as menu links */
  padding: 0;                  /* menu links use no extra padding */
  transition: all 0.3s ease;
}

.link-nav i {
  margin-left: 5px;            /* same spacing as menu caret */
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}

.link-nav::before {
  content: '';
  position: absolute;
  bottom: -2px;                /* underline sits just below text */
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;      /* initial underline color */
  transition: .3s ease;
}

.link-nav:hover {
  color: #45a7ef;              /* brand blue on hover */
}

.link-nav:hover::before {
  background-color: #45a7ef;   /* underline switches to brand blue */
  width: 100%;                 /* grow underline animation */
}

/* CTA variant of nav-style link */
.link-nav.link-highlight {
  background-color: #45a7ef;   /* brand blue */
  color: #fff;                 /* white text */
  padding: 12px 28px;          /* button-like padding */
  border-radius: 6px;          /* rounded edges */
}

.link-nav.link-highlight::before {
  display: none;               /* remove underline animation */
}

.link-nav.link-highlight:hover {
  background-color: #2e8fd1;   /* darker on hover */
  color: #fff;                 /* keep text white */
}

.hide {
  display: none !important;
}


.container-1 {
	height: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	padding-bottom: 55px;
	padding-left: 45px;
	padding-right: 45px;
	z-index: 1;
}

/* LiDAR accordion */
.lidar-accordion {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.lidar-accordion details {
  background: rgba(255, 255, 255, 0.044); /* 70% white */
  backdrop-filter: blur(8px); /* adds a subtle glass effect */
  
}
.lidar-accordion summary:hover {
  background: rgba(238, 246, 248, 0.153); /* lighter hover with transparency */
}

.lidar-accordion details:last-child {
  border-bottom: 0;
}

.lidar-accordion summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  padding: 14px 48px 14px 16px;
  outline: none;
  user-select: none;
}

/* Chevron indicator */
.lidar-accordion summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2e8fd1;  /* teal */
  border-bottom: 2px solid #2e8fd1;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform .2s ease;
}

.lidar-accordion details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Hover/focus states */
.lidar-accordion summary:hover {
  background: #eef6f8;
}
.lidar-accordion summary:focus {
  box-shadow: inset 0 0 0 2px rgba(222, 222, 222, 0.25);
  border-radius: 8px;
}

/* Content body */
.lidar-accordion .acc-body {
  padding: 0 16px 16px 16px;
  color: #ffffff;
  line-height: 1.55;
}



/* Optional: match your brand font if needed
.price-info, .lidar-accordion { font-family: 'Montserrat', 'Poppins', system-ui, sans-serif; }
*/


/* Animate the body instead of the whole details element */
.lidar-accordion .acc-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease;
  will-change: max-height, opacity;
}
.lidar-accordion details[open] .acc-body {
  max-height: 500px;   /* big enough for your content */
  opacity: 1;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lidar-accordion .acc-body {
    transition: none;
  }
}




/* Better reading width + spacing for the disclaimer */
.footer-info p {
  max-width: 80%;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 991.98px){
  .footer-info p { max-width: 100%; }
}

/* Consistent gaps in the footer */
footer .footer-top [class*="col-"] { margin-bottom: 0; }



/* ==== Glass effect without blurring icons or text ==== */

/* Each form row acts as the rounded glass container */
.form-cover > li {
  position: relative;
  border-radius: 6px;          /* roundness for the whole row */
  overflow: hidden;             /* clip the glass layer cleanly */
  margin-bottom: 18px;          /* spacing between rows */
}

/* The frosted “glass” layer sits behind the input/textarea */
.form-cover > li::after {
  content: "";
  position: absolute;
  inset: 0;                     /* top:0; right:0; bottom:0; left:0 */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: inherit;
  z-index: 1;                   /* behind input + icon */
  pointer-events: none;         /* clickable input still works */
}

/* Inputs/textarea sit above the glass, with transparent bg */
.form-cover input,
.form-cover textarea {
  position: relative;
  z-index: 2;                   /* above the glass layer */
  background: transparent;      /* let the glass show through */
  border: 1px solid transparent;/* keep template sizing, but invisible border */
  color: #fff;
  width: 100%;
  padding: 12px 14px;           /* base padding */
  border-radius: 12px;          /* match the row radius */
}

/* Extra left padding so icons don’t overlap text */
.form-cover .inp-name input,
.form-cover .inp-phone input,
.form-cover .inp-email input { padding-left: 44px; }
.form-cover .inp-text textarea {
  padding-left: 52px;
  padding-top: 14px;
  min-height: 160px;
}

/* Keep the field “glow” on focus */
.form-cover input:focus,
.form-cover textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.35);
  border-color: rgba(0, 170, 255, 0.65);
}

/* === Icon positioning (crisp, not blurred) === */
/* Your template likely draws icons with ::before on each li. Ensure they sit above glass. */
.form-cover .inp-name::before,
.form-cover .inp-phone::before,
.form-cover .inp-email::before,
.form-cover .inp-text::before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;                   /* above the glass & inputs */
  pointer-events: none;
  /* if your icons are fonts, make them bright enough: */
  color: rgba(255,255,255,0.9);
}

/* If your textarea icon needs a slight vertical tweak: */
.form-cover .inp-text::before { top: 22px; transform: none; }


.price-img-cover {
  position: relative;
  width: 100%;
  border-radius: 12px;   /* match your design */
  overflow: hidden;
  background: #111;      /* fallback */
}

.price-img-cover .media-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crop video like an image */
  display: block;
}


.price-info .link-nav {
  display: inline-block;
  margin-top: 20px; /* adjust this value */
}


.price-video-cover {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px; /* keep the same rounded corners */
}

.price-video-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* this makes it fill and crop */
  border-radius: 12px;
}


/* Responsive media frame that behaves like an image with background-size: cover */
.price-media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;        /* desktop/tablet */
  border-radius: 12px;
  overflow: hidden;
  background: #111;            /* fallback behind poster */
}

/* Tweak the aspect on small phones so it’s a bit taller */
@media (max-width: 575.98px){
  .price-media{ aspect-ratio: 4 / 3; }
}

/* The video fills the frame and crops as needed */
.price-media .media-fit{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* <- kills the side black bars */
  display: block;
  border-radius: 12px;
}

/* Fallback for older browsers that don’t support aspect-ratio */
@supports not (aspect-ratio: 1 / 1){
  .price-media{ height: 0; padding-top: 56.25%; }    /* 16:9 */
  @media (max-width: 575.98px){
    .price-media{ padding-top: 75%; }                /* 4:3 on phones */
  }
  .price-media .media-fit{ position: absolute; top:0; left:0; }
}



/* Show the media on small screens for the LiDAR section */
@media (max-width: 767.98px){
  .best-prices .price-img-block{
    display:block !important;
    margin-bottom: 16px;              /* spacing above the text */
  }
  .best-prices .price-img-block .price-media,
  .best-prices .price-img-block .price-img-cover{
    width:100%;
    aspect-ratio: 16 / 9;             /* keep a nice shape */
    border-radius:12px;
    overflow:hidden;
  }
  .best-prices .price-img-block video,
  .best-prices .price-img-block img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
}

/* ===== BODY BACKGROUND FOR INDEX ONLY================================================== */
/* base page styling stays global */

body {
  background-color: #121110;
}

/* ONLY pages with .has-topo get the topo layer */
body.has-topo {
  position: relative;
  z-index: 0;
  min-height: 100%;
}

/* topo canvas on index */
body.has-topo::before{
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: var(--topo-height, 700vh);           /* per-page value */
  z-index: -1;
  background-image: var(--topo-image, url("../img/bg-body-topo-index.svg"));
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 100; /* 👈 try 0.2–0.4 for subtlety */
  background-size: cover;                      /* keeps your crop */
  pointer-events: none;
}



body.has-topo-service {
  background-color:#121110;
  position: relative;
  z-index: 0;
}

/* Fixed topo layer for services (no hop on accordion) */
body.has-topo-service::before {
  content:"";
  position: fixed;        /* ✅ fixed, not absolute */
  inset: 0;               /* covers whole viewport */
  z-index: -1;
  background-image: url("../img/bg-body-topo.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  pointer-events: none;
  opacity:100;            /* softer look for services */
  will-change: transform;
  transform: translateZ(0);
}





/* ===== SERVICE SECTION-CUSTOM ================================================== */
/* ===== SERVICE SECTION-CUSTOM================================================== */


.service-section {
  padding: 60px 0;
  
}

.service-info {
  padding: 20px;
}

.service-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-info ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.service-info li {
  margin-bottom: 8px;
}

.service-media-cover {
  text-align: center;
  margin-bottom: 20px;
}

.service-media img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.service-image {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

/* ===========================
   SERVICE PAGE UPGRADE CSS
   =========================== */

:root{
  --bg:        #0b0f13;
  --panel:     rgba(255,255,255,.04);
  --panel-2:   rgba(255,255,255,.06);
  --ink:       #e6f0ff;
  --ink-dim:   #bcd6f3;
  --ink-soft:  rgba(230,240,255,.8);
  --accent:    #2ea8ff;      /* Terrascope blue */
  --accent-2:  #7cc8ff;
  --shadow:    0 10px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.55);
  --radius:    16px;
}

/* Only affect containers INSIDE the service section */
.service .container{
  width: min(1600px, 92vw);
  margin-inline: auto;
}

/* Grid: image + content */
.service{ position: relative; padding: clamp(24px, 4vw, 48px) 0 64px; color: var(--ink); }
.service__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

/* Image card */
.card{
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background .3s ease;
  will-change: transform;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--panel-2); }
.service-image{ display:block; width:100%; height:auto; aspect-ratio: 3 / 2; object-fit: cover; }

/* Header */
.service-header{ position: relative; padding-top: 4px; }
.kicker{
  display:inline-block; text-transform: uppercase; letter-spacing:.15em;
  font-size:.78rem; color: var(--ink-dim); opacity:.85;
}
.service-title{
  margin: .2rem 0 .6rem; font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem);
  line-height: 1.15; color: var(--ink);
}
.accent-line{
  width: 72px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(46,168,255,.45);
}

/* Intro paragraph */
.intro{
  color: rgba(230,240,255,0.8);
  font-size: 16PX;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
}


/* Section headings */
.h3{ font-size: clamp(1.1rem, .8vw + 1rem, 1.5rem); margin: 1.4rem 0 .6rem; color: var(--ink); }

/* Checklist */
.checklist{ list-style:none; padding:0; margin:0; }
.checklist li{
  display:flex; align-items: flex-start; gap:.6rem;
  padding: .45rem 0; color: var(--ink-soft); line-height:1.55;
}
.check{
  display:inline-grid; place-items:center;
  width: 1.25rem; height: 1.25rem; flex: 0 0 1.25rem;
  border-radius: 50%;
  color: #06223a;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(46,168,255,.35);
  font-size:.85rem; font-weight:700;
}

/* Use cases pills */
.pill-row{ display:flex; flex-wrap:wrap; gap:.5rem .6rem; margin-top:.4rem; }
.pill{
  --pill-bg: rgba(255,255,255,.06);
  display:inline-block; padding:.5rem .95rem;
  background: var(--pill-bg);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; color: var(--ink-dim);
  font-size:16PX; letter-spacing:.02em;
  font-weight: 600;  /* semi-bold */

  transition: border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}
.pill:hover{
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--ink);
 
}

/* Force pill text to white */
.pill {
  color: #fff !important;
}




/* CTA buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.8rem 1.15rem; border-radius: 10px;
  text-decoration:none; font-weight:700; letter-spacing:.02em;
  border:1px solid transparent; transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color:#041521; box-shadow: 0 8px 20px rgba(46,168,255,.35);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(46,168,255,.45); }
.btn-ghost{
  background: transparent; color: var(--ink-dim);
  border-color: rgba(255,255,255,.18);
}
.btn-ghost:hover{ color: var(--ink); border-color: rgba(46,168,255,.5); box-shadow: 0 10px 20px rgba(46,168,255,.18); }
.cta-row{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top: 1.25rem; }

/* Feature strip */
.feature-strip{
  margin-top: clamp(28px, 4vw, 56px);
  display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px);
}
.feature{
  display:flex; gap:.9rem; align-items:flex-start;
  background: var(--panel); border:1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 16px 18px;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover{ background: var(--panel-2); border-color: rgba(46,168,255,.28); box-shadow: var(--shadow); }
.feature__icon{ font-size: 1.35rem; filter: drop-shadow(0 0 8px rgba(46,168,255,.3)); }
.feature__title{ margin:.15rem 0 .2rem; font-size: 1.05rem; color: var(--ink); }
.feature__copy{ margin:0; color: var(--ink-soft); line-height:1.55; }

/* Subtle scroll/reveal hooks (optional; work even without JS) */
[data-animate]{ opacity: .001; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].in{ opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px){
  .service__grid{ grid-template-columns: 1fr; }
  .service-content{ order: 2; }
  .service-hero{ order: 1; }
}
@media (max-width: 680px){
  .container{ width: min(100%, 92vw); }
  .feature-strip{ grid-template-columns: 1fr; }
  .pill-row{ gap:.45rem; }
}



/* Image card */
.card{
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: background .3s ease, box-shadow .3s ease;
}
.card:hover{ background: var(--panel-2); }

/* CTA buttons */
.btn-primary{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color:#041521; box-shadow: 0 8px 20px rgba(46,168,255,.35);
}
.btn-primary:hover{ box-shadow: 0 8px 20px rgba(46,168,255,.45); }

.btn-ghost{
  background: transparent; color: var(--ink-dim);
  border-color: rgba(255,255,255,.18);
  border-radius: 8px;
}
.btn-ghost:hover{
  color: var(--ink);
  border-color: rgba(46,168,255,.5);
  box-shadow: 0 10px 20px rgba(46,168,255,.18);
}

/* Feature boxes */
.feature{
  display:flex; gap:.9rem; align-items:flex-start;
  background: var(--panel);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 16px 18px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature:hover{ background: var(--panel-2); border-color: rgba(46,168,255,.28); }

/* 1) Space the service header below the sticky header */
:root { --header-spacer: 88px; } /* tweak if your header is taller/shorter */

.service .service-header{
  position: relative;
  z-index: 0;                 /* don't out-stack the site header */
  margin-top: var(--header-spacer);
}

/* 2) Ensure anchor jumps (and the H1 itself) don't tuck under the header */
.service .service-header [id],
.service .service-header .service-title{
  scroll-margin-top: calc(var(--header-spacer) + 12px);
}

/* 3) Defensive: prevent transforms from creating a higher stacking context */
.service .service-header *{
  transform: none !important; /* only if you see transforms applied by theme */


}


/* Keep the image as the only 'card' */
.service .service-hero{
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Apply the card look to the image itself */
.service .service-image{
  display:block;
  width:100%;
  height:auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  background: transparent;
}

/* If your theme wraps with .wp-block-image / .wp-caption, strip their chrome here */
.service .wp-block-image,
.service .wp-caption{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

/* ===== SERVICE VIDEO ===================================================== */

.service-hero {
  position: relative;
  overflow: hidden; /* hides overflow if video bleeds */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.service-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the container, crops if needed */
  border-radius: inherit;
}


/* === Our Sensor Section === */
.service-sensor {
  padding: 60px 0;
  background: #f8f9fa00; /* subtle light gray */
}

.service-sensor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sensor-media {
  position: relative;
}

.sensor-media img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.sensor-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sensor-badges .badge {
  background: rgba(0,0,0,0.7);
  color: #ffffff5f;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Content */
.sensor-content .intro {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Spec Cards */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.spec-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}




.spec-card:hover {
  transform: translateY(-4px);
}

.spec-card__icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.spec-card__icon-2 img {
  width: 36px;
  height: 36px;
  display: block;
}


.spec-card__title {
  font-size: 1.1rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.spec-card__value {
  margin: 0;
  font-weight: 500;
  color: #ffffff;
}

.spec-card__note {
  font-size: 0.9rem;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.759);
  line-height: 1.4;
}


.spec-card__icon img {
  width: 55px;
  height: 55px;
  display: block;
}


.spec-card {
  position: relative;
  border-radius: 10px;
  background: #292929;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 24px;
  overflow: hidden; /* ensures the inner line respects rounded corners */
}

.spec-card::before {
  content: "";
  position: absolute;
  top: 12px;     /* distance from top */
  left: 12px;    /* distance from left */
  right: 12px;   /* distance from right */
  bottom: 12px;  /* distance from bottom */
  border: 2px solid #45a7ef; /* blue frame */
  border-radius: 8px;        /* slightly smaller than card corners */
  pointer-events: none;      /* keeps clicks working normally */
}


/* Stat Strip */
.stat-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.stat-pill {
  background: #007c82; /* Terrascope teal */
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
}

/* Ideal For section */
.ideal-row {
  margin-top: 30px;
}

.ideal-row h3 {
  margin-bottom: 12px;
}

.ideal-row .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ideal-row .pill {
  background: #e6f7f81f;
  color: #fefefe;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}

/* Disclaimer */
.disclaimer.micro {
  margin-top: 15px;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .service-sensor__grid {
    grid-template-columns: 1fr;
  }
}

/* Style the video element */
.sensor-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;          /* matches button radius */
  overflow: hidden;            /* ensures no corner bleed */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* optional: subtle shadow like cards */
}




/* FAQ accordion base */
.faqs .lidar-accordion details {
  background: rgba(255, 255, 255, 0.05); /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 16px 20px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Hover effect */
.faqs .lidar-accordion details:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* FAQ question (summary) */
.faqs .lidar-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  list-style: none; /* remove default marker */
  outline: none;
}

/* Remove default caret and add custom + / – */
.faqs .lidar-accordion summary::marker,
.faqs .lidar-accordion summary::-webkit-details-marker {
  display: none;
}

.faqs .lidar-accordion[open] summary::after {
  content: '–';
  transform: rotate(180deg);

  
}

.faqs .lidar-accordion summary::marker,
.faqs .lidar-accordion summary::-webkit-details-marker {
  content: none !important;  /* force remove marker */
  display: none !important;
}


/* FAQ answer */
.faqs .lidar-accordion .acc-body {
  margin-top: 10px;
  color: #acacac;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

/* Smooth fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faqs .lidar-accordion details {
  margin: 0; /* remove bottom gaps */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* add a divider line */
  border-radius: 0; /* keep edges flat between items */
}

.faqs .lidar-accordion details:last-of-type {
  border-bottom: none; /* remove line from the last one */
}


/* --- Accordion Container (no gaps) --- */
.faqs .lidar-accordion details {
  margin: 0; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.faqs .lidar-accordion details:last-of-type {
  border-bottom: none;
}

/* --- FAQ Question (summary) --- */
.faqs .lidar-accordion summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding: 16px 20px;
  list-style: none;
  outline: none;
  background: transparent; /* remove default gray highlight */
  user-select: none; /* prevent weird highlight issues */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Fix disappearing text issue */
.faqs .lidar-accordion summary:hover,
.faqs .lidar-accordion summary:focus,
.faqs .lidar-accordion[open] summary {
  color: #fff; /* stay white no matter what */
  background: rgba(255, 255, 255, 0.05); /* subtle hover bg */
}





.faqs .lidar-accordion[open] summary::after {
  content: '–';
  transform: rotate(180deg);
  color: #00c389; /* green accent when open, optional */
}

/* --- Answer Body --- */
.faqs .lidar-accordion .acc-body {
  margin: 0 20px 16px;
  color: #acacac;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

/* ===== Privacy Policy layout (scoped) ===== */
#privacy-policy {
  --max: 960px;              /* content width */
  --pad-x: 24px;
  --pad-y: 56px;
  --ink: #e5e7eb;            /* body text on dark bg */
  --muted: #94a3b8;          /* sub / nav */
  --accent: #17a2ff;         /* underline accent */
  --h1: clamp(2rem, 3vw, 2.75rem);
  --h2: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--ink);
}

#privacy-policy > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* top/bottom breathing room */
#privacy-policy header {
  padding-top: var(--pad-y);
  padding-bottom: 28px;
}

#privacy-policy nav[aria-label="On this page"] {
  margin: 12px auto 24px;
  color: var(--muted);
}

/* make the TOC neat */
#privacy-policy nav[aria-label="On this page"] ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 24px;
  row-gap: 6px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  #privacy-policy nav[aria-label="On this page"] ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
#privacy-policy nav[aria-label="On this page"] a {
  display: inline-block;
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
}
#privacy-policy nav[aria-label="On this page"] a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* content sections */
#privacy-policy > section {
  padding-top: 36px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* paragraphs & lists not mashed together */
#privacy-policy p { 
  margin: 0 0 12px; 
  line-height: 1.7;
}
#privacy-policy ul, 
#privacy-policy ol {
  margin: 8px 0 14px 1.25rem;
  line-height: 1.7;
}
#privacy-policy li { margin: 6px 0; }

/* headings */
#privacy-policy h1 {
  font-size: var(--h1);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
}
#privacy-policy h2 {
  font-size: var(--h2);
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}
/* small accent line under h2 */


/* definition block in the header */
#privacy-policy header p {
  color: var(--muted);
  max-width: 70ch;
}

/* links inside content */
#privacy-policy a { color: var(--accent); }

/* anchor jump fix when you have a sticky header */
#privacy-policy h2,
#privacy-policy h1 {
  scroll-margin-top: 100px; /* adjust to your sticky header height */
}

/* address styling */
#privacy-policy address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}


/* ===== OUR PROCESS ===================================================== */
/* ===== OUR PROCESS ===================================================== */
/* ===== OUR PROCESS ===================================================== */

.process.is-solid { background:#151d22; }
.process { position:relative; min-height: 420vh; }

.process__sticky{
  position:sticky; top:0; height:100vh;
  display:grid; place-items:center;
  overflow:visible; /* let glow bleed */
}

/* Stage padding gives room for titles/copy outside the rim */
.process__stage{
  position:relative;
  --pad: clamp(120px, 14vmin, 190px);
  --glow-overscan: clamp(40px, 8vmin, 120px); /* extra room for blur */
  width:min(80vmin, 920px);     /* larger box for the bigger circle */
  aspect-ratio:1/1;
  padding:var(--pad);
  overflow:visible;
}

/* Center glow — extended beyond the drawing box so it feathers smoothly */
.process__glow{
  position:absolute;
  inset: calc(var(--pad) - var(--glow-overscan));
  z-index:0;
  pointer-events:none;
  will-change:filter, opacity;
  filter: blur(calc(36px + 70px * var(--t, 0)));
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(120,200,255, calc(.20 + .28 * var(--t, 0))) 0%,
      rgba(120,200,255, calc(.12 * var(--t, 0))) 40%,
      rgba(120,200,255, calc(.05 * var(--t, 0))) 62%,
      rgba(120,200,255, 0) 78%
    );
  transition: background .2s linear;
}

/* Drawing box + centerpiece */
.process__svg    { position:absolute; inset:var(--pad); z-index:1; overflow:visible; }
.process__center { position:absolute; inset:var(--pad); display:grid; place-items:center; z-index:2; pointer-events:none; }
.process__lottie { width:62%; height:62%; }
.process__fallback{ position:absolute; inset:0; display:grid; place-items:center; }
.process__fallback-svg{ width:38%; height:auto; }

/* Circle visuals */
.process__track{ fill:none; stroke:rgba(255,255,255,.12); stroke-width:2; }
.process__progress{
  fill:none; stroke:#e6f0ff; stroke-opacity:.95; stroke-width:3; stroke-linecap:round;
  stroke-dasharray:1; stroke-dashoffset:1;
  transform:rotate(-90deg); transform-origin:50% 50%;
  filter: drop-shadow(0 0 14px rgba(130,200,255,.35));
}
.process__cursor{ fill:#fff; stroke:rgba(130,200,255,.7); stroke-width:2; filter:drop-shadow(0 0 10px rgba(130,200,255,.45)); }

/* Dots */
#proc-markers .dot{ opacity:0; transition:opacity .2s ease; fill:#fff; stroke:rgba(255,255,255,.85); stroke-width:2; }
#proc-markers .dot.is-rev{ opacity:.35; }
#proc-markers .dot.is-hit{ opacity:1; fill:#78c6ff; stroke:#cfe9ff; }

/* Labels layer (titles pinned to rim; copy fades in/out) */
.process__labels{ position:absolute; inset:0; padding:var(--pad); z-index:3; pointer-events:none; }

/* Titles: ALWAYS visible, tight to the rim. Per-step pixel nudges via CSS vars. */
.process__title{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%) translate(var(--title-dx,0px), var(--title-dy,0px));
  font-weight:600; font-size:1rem; letter-spacing:.01em;
  color:#bcd6f3; text-shadow:0 0 6px rgba(130,200,255,.18);
  white-space:nowrap; opacity:.55; transition:opacity .22s ease;
}
.process__title.is-active{ opacity:1; }

/* Copy: clearly spaced, with per-step nudges */
.process__copy{
  position:absolute;
  width:min(30ch, 300px);
  color:rgba(230,240,255,.9);
  font-size:1rem; line-height:1.55;
  opacity:0;
  --rise: 12px;
  transform:
    translate(-50%,-50%)
    translate(var(--copy-dx,0px), var(--copy-dy,0px))
    translateY(var(--rise));
  transition:opacity .28s ease, transform .28s ease;
}
.process__copy.is-active{ opacity:1; --rise: 0px; }

/* Mobile alt (progress bar) */
.process__mobile{ display:none; width:90%; max-width:680px; }
.process__mobile-track{ position:relative; height:6px; border-radius:999px; background:rgba(255,255,255,.12); }
.process__mobile-progress{ height:6px; border-radius:999px; width:0%; background:#e6f0ff; box-shadow:0 0 12px rgba(130,200,255,.45); transition:width .2s ease; }
.process__mobile-markers{ position:absolute; inset:-8px 0 0 0; }
.process__mobile-markers .m-dot{ position:absolute; top:-5px; width:14px; height:14px; border-radius:50%; background:#fff; border:2px solid rgba(255,255,255,.85); transform:translateX(-50%); opacity:.35; }
.process__mobile-markers .m-dot.is-hit{ background:#78c6ff; border-color:#cfe9ff; opacity:1; }


/* ====================================================================== */


/* === Responsive tuning =============================================== */

/* Typo scales & spacing that feel good from phones → desktops */
.process__title{
  font-size: clamp(.9rem, 1.2vw + .6rem, 1.1rem);
  letter-spacing: .01em;
}
.process__copy{
  font-size: clamp(.95rem, 1.1vw + .55rem, 1.1rem);
  line-height: 1.55;
  width: min(32ch, 36vw, 340px);
}

/* Give the stage a touch more room on narrow viewports */
@media (max-width: 1200px){
  .process__stage{
    width: min(84vmin, 820px);
  }
}
@media (max-width: 992px){
  .process__stage{
    width: min(88vmin, 760px);
  }
}

/* Mobile breakpoint (already switches to the bar).
   Make the mobile UI a little punchier. */
@media (max-width: 768px){
  .process { min-height: 360vh; }  /* slightly faster journey on phones */
  .process__mobile{ width: 92%; max-width: 560px; }
  .process__mobile-track{ height: 8px; }
  .process__mobile-progress{ height: 8px; }
  .process__mobile-markers .m-dot{ width: 16px; height: 16px; top: -6px; }
}

/* Very small phones */
@media (max-width: 420px){
  .process { min-height: 340vh; }
  .process__mobile{ width: 94%; max-width: 500px; }
}


#our-process {
  position: relative;
  padding-bottom: var(--proc-pad, 0px); /* JS sets this */
}

/* Desktop/tablet only: stage is sticky under the header */ 
/* Desktop/tablet only: stage is sticky under the headerrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr */
@media (min-width: 768px){
  #our-process .process__stage{
    position: sticky;
    top: calc(var(--headerH, 0px) + 12px);
    z-index: 1;
  }
}

/* Phones: stage is NOT sticky (lets us center it cleanly) */
@media (max-width: 767.98px){
  #our-process .process__stage{
    position: relative;
    top: auto;
  }
}


/* === 1) Global guard rails (clip horizontal bleed) === */
html, body {
  overflow-x: clip;     /* modern, prevents sideways scroll cleanly */
  width: 100%;
}

/* Images, videos, iframes never exceed the viewport width */
img, video, svg, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Default desktop scale */
#our-process { --proc-scale: 1; }

#our-process .process__frame {
  transform: scale(var(--proc-scale));
  transform-origin: 50% 50%;
  margin-inline: auto;
  display: grid;
  place-items: center;
  /* Ensure the visual has enough vertical room after scaling */
  min-height: min(95vh, 880px);
}

/* Tablet-ish (iPad/Surface) */
@media (min-width: 768px) and (max-width: 1180px) {
  #our-process { --proc-scale: 0.88; } /* tweak: 0.84–0.92 */
}

/* Optional: narrow portrait tablets / big phones landscape */
@media (min-width: 600px) and (max-width: 767.98px) {
  #our-process { --proc-scale: 0.90; }
}

@media (min-width: 768px) and (max-width: 1180px) {
  #our-process .process__title { font-size: clamp(13px, 1.6vw, 15px); }
  #our-process .process__copy  { font-size: clamp(12px, 1.45vw, 14px); max-width: 36ch; }
}

/* Default */
#our-process { --labels-scale: 1; }

/* Make sure the labels layer can be scaled cleanly */
#our-process .process__labels {
  /* if you already set position/inset for this, keep yours; these are safe */
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  will-change: transform;
  transform: scale(var(--labels-scale));
}

/* Tablet-ish widths: iPad / Surface */
@media (min-width: 768px) and (max-width: 1180px) {
  #our-process { --labels-scale: 0.88; }  /* try 0.86–0.92 */
}

/* Optional: tiny font trims to give more breathing room */
@media (min-width: 768px) and (max-width: 1180px) {
  #our-process .process__title { font-size: clamp(13px, 1.6vw, 15px); }
  #our-process .process__copy  { font-size: clamp(12px, 1.45vw, 14px); max-width: 36ch; }
}


/* ===== Phones (≤ 767.98px) ===== */
@media (max-width: 767.98px) {
  /* Make sure the circle stack is visible on phones */
  #our-process .process__stage,
  #our-process .process__svg { display: block; }

  /* We hide the around-the-rim labels on phones */
  #our-process .process__labels { display: none; }

  /* Optional: hide the center logo on phones so text sits cleanly in the middle */
  #our-process .process__center { display: none; }

  /* Keep the circle comfortably sized and centered */
  #our-process .process__stage {
    position: relative;
    min-height: min(88vh, 640px);
    display: grid;
    place-items: center;
  }

  /* Centered title/copy overlay INSIDE the circle */
  #our-process .process__mcenter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(80vw, 340px);
    max-width: 36ch;
    pointer-events: none; /* don’t block scroll */
  }
  #our-process .process__mcenter h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: clamp(16px, 4.6vw, 18px);
    letter-spacing: .2px;
  }
  #our-process .process__mcenter p {
    margin: 0;
    font-size: clamp(13px, 3.9vw, 15px);
    opacity: .95;
  }

  /* If you previously showed a bottom mobile bar, hide it for this design */
  #our-process .process__mobile { display: none; }
}


/* ===== Phones: keep the circle ~20% larger, perfectly centered, never clipped ===== */
@media (max-width: 767.98px) {
  /* 1) Size knob (+20% vs the old 60vw) with a hard cap and gutter safety */
  #our-process {
    /* cap by viewport minus 48px so it can't hit the sides even if parents have padding */
    --mob-circle: min(72vw, 480px, calc(100vw - 48px));
  }

  /* 2) Undo any previous full-bleed or flex alignment on the sticky wrapper */
  #our-process .process__sticky{
    display: block !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible;
  }

  /* 3) Force the stage square to use the var and center it */
  #our-process .process__stage{
    width:  var(--mob-circle) !important;
    height: var(--mob-circle) !important;
    margin-inline: auto !important;  /* centers in its parent */
    left: auto; right: auto;
    transform: none;                  /* kill any stray translate */
  }

  /* 4) Make sure the SVG itself isn't offset */
  #our-process .process__svg{
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0;
    transform: none;
  }
}


/* ===== FINAL MOBILE FIX: keep circle visible, center it, no clipping ===== */
@media (max-width: 767.98px) {
  /* size knob with safe gutters */
  #our-process { --mob-circle: min(72vw, 480px, calc(100vw - 48px)); }

  /* the sticky container (not the stage) pins the scene */
  #our-process .process__sticky {
    position: sticky !important;
    top: calc(var(--headerH, 64px)) !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: visible !important;
    display: grid !important;
    place-items: center !important;
  }

  /* force the circle stage to be a centered square */
  #our-process .process__stage {
    display: block !important;          /* override old “display:none” */
    position: relative !important;      /* override old sticky on phones */
    width:  var(--mob-circle) !important;
    height: var(--mob-circle) !important;
    margin-inline: auto !important;     /* centers horizontally */
    left: auto !important; right: auto !important;
    transform: none !important;
  }

  /* make sure the SVG itself fills the stage */
  #our-process .process__svg {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    transform: none !important;
  }

  /* keep rim labels off on phones; keep center if you want it */
  #our-process .process__labels { display: none !important; }
  /* If you want the center logo visible on phones, comment out the next line */
  /* #our-process .process__center { display: none !important; } */

  /* we are NOT using the old bottom progress bar on phones */
  #our-process .process__mobile { display: none !important; }
}


/* Phones: center the circle to the viewport and prevent clipping */
@media (max-width: 767.98px){
  /* Make the sticky wrapper full-bleed so container padding can't shift the circle */
  #our-process .process__sticky{
    position: sticky;
    top: calc(var(--headerH, 64px));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: grid;
    place-items: center;
    overflow: visible;
  }

  /* Keep your current size var; just ensure the stage is centered */
  #our-process .process__stage{
    margin: 0 auto;
    left: auto; right: auto;
    transform: none;
  }

  /* Ensure the SVG itself isn't offset */
  #our-process .process__svg{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    transform: none;
  }
}

/* === OUR PROCESS — phones: center circle & keep safe gutters ============== */
@media (max-width: 767.98px){
  /* Safe size; adjust if you want it a bit larger/smaller */
  #our-process{ --mob-circle: clamp(280px, 62vw, 420px); }

  /* Full-bleed sticky wrapper so parent padding can’t shift the circle */
  #our-process .process__sticky{
    position: sticky;
    top: calc(var(--headerH, 0px) + 8px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: visible;
  }

  /* Center the stage to the viewport (not the parent container) */
  #our-process .process__stage{
    position: relative;          /* NOT sticky on phones */
    width:  var(--mob-circle);
    height: var(--mob-circle);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  /* Ensure the SVG fills the stage without extra offsets */
  #our-process .process__svg{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    transform: none;
  }
}




/* === OUR PROCESS • Mobile: center in container (no full-bleed), no clipping === */
@media (max-width: 767.98px){
  /* size knob (keep or tweak) */
  #our-process{ --mob-circle: min(72vw, 480px); }

  /* 1) Wrapper: use normal page width, just center content */
  #our-process .process__sticky{
    position: sticky;
    top: calc(var(--headerH, 64px));
    width: 100%;                 /* ← NOT 100vw */
    margin: 0;                   /* ← remove negative margin trick */
    display: grid;
    justify-items: center;       /* centers children horizontally */
    overflow: visible;
  }

  /* 2) Stage: square box, centered in the wrapper, no transforms */
  #our-process .process__stage{
    position: relative;          /* NOT sticky on phones */
    width:  var(--mob-circle);
    height: var(--mob-circle);
    margin: 0 auto;              /* center in the wrapper */
    left: auto; right: auto;
    transform: none;
  }

  /* 3) SVG: fill the stage, add no offset */
  #our-process .process__svg{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    transform: none;
  }

  /* Optional: keep the rim labels hidden on phones */
  /* #our-process .process__labels{ display:none; } */
}
@media (max-width: 767.98px){
  /* common WP container classes – harmless if they don't exist */
  .site-content, .content-area, .container, .container-fluid,
  .wp-block-group__inner-container, .elementor-container {
    overflow: visible !important;
  }
}


/* === OUR PROCESS — phones: center in container, never clip =============== */
@media (max-width: 767.98px){
  /* keep a reasonable target size but allow the container to win */
  #our-process{ --mob-circle: 72vw; }  /* adjust later to taste */

  /* wrapper uses normal page width */
  #our-process .process__sticky{
    position: sticky;
    top: calc(var(--headerH, 64px));
    width: 100%;                /* NOT 100vw */
    margin: 0;
    display: block;
    overflow: visible;
  }

  /* stage: square, centered, and capped by the container width */
  #our-process .process__stage{
    position: relative !important;    /* NOT sticky on phones */
    width: min(var(--mob-circle), calc(100% - 32px)) !important;
    /* ^ the 32px is a safe 16px gutter on both sides; tweak if your container uses 24px → use 48px */
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin-inline: auto !important;   /* centers it */
    left: 0 !important; right: 0 !important; transform: none !important;
    max-width: 100% !important;       /* belt-and-suspenders */
    overflow: visible !important;
  }

  /* svg fills the square; no offset */
  #our-process .process__svg{
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* Phones: nudge only the circle visuals, not the whole stage */
@media (max-width: 767.98px){
  /* TUNE ME: negative = move left, positive = move right */
  #our-process{ --mob-nudge-x: -214px; }  /* start small, adjust by ~8px steps */

  /* Move the circle graphics together */
  #our-process .process__svg,
  #our-process .process__glow,
  #our-process .process__center{
    transform: translateX(var(--mob-nudge-x)) !important;
    transform-origin: center center;
  }
}

/* 1) Undo any earlier stage-level shift on phones */
@media (max-width: 767.98px){
  #our-process .process__sticky .process__stage{
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }
}

/* 2) Phones: center the ring pack (SVG + glow + center) and nudge as needed */
@media (max-width: 767.98px){
  /* TUNE THIS ONLY: negative = move left, positive = move right */
  #our-process{ --mob-nudge-x: -3px; } /* try -12 / -16 / -20 (NOT hundreds) */

  /* Make the stage a square and centered in the normal container */
  #our-process .process__stage{
    position: relative !important;
    width: var(--mob-circle, min(72vw, 480px)) !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin-inline: auto !important;
    overflow: visible !important;
  }

  /* Pack the ring elements and center them relative to the stage */
  #our-process .process__svg,
  #our-process .process__glow,
  #our-process .process__center{
    position: absolute !important;
    left: calc(50% + var(--mob-nudge-x)) !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
  }

  /* Ring should fill the stage exactly */
  #our-process .process__svg{
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Optional: hide rim labels on phones so text below remains centered */
  #our-process .process__labels{ display: none !important; }
}

/* === OUR PROCESS • phones: make the glow fill the stage & brighten ======= */
@media (max-width: 767.98px){
  /* keep your nudge; add easy knobs for the glow */
  #our-process{
    --mob-nudge-x: -3px;       /* your current center */
    --mob-glow-scale: 1.12;    /* 1.00–1.25 */
    --mob-glow-opacity: .60;   /* 0–1 */
    --mob-glow-blur: 22px;     /* 14–28px looks good */
  }

  /* Ring visuals stay packed & centered (from last step) */
  #our-process .process__svg,
  #our-process .process__glow,
  #our-process .process__center{
    position: absolute !important;
    left: calc(50% + var(--mob-nudge-x)) !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    transform-origin: center center !important;
  }

  /* Make the glow actually fill the stage and boost it a bit */
  #our-process .process__glow{
    width: 110% !important;          /* fill and slightly overflow the circle */
    height: 110% !important;
    opacity: var(--mob-glow-opacity) !important;
    filter: blur(var(--mob-glow-blur)) !important;
    transform: translate(-50%, -50%) scale(var(--mob-glow-scale)) !important;
    pointer-events: none;
    z-index: 0;
    /* keep whatever mix-blend/background you already use */
  }

  /* Keep layering sane: glow under ring, center logo above if present */
  #our-process .process__svg{ z-index: 1; }
  #our-process .process__center{ z-index: 2; }
}


/* OUR PROCESS – desktop: uppercase rim titles */
@media (min-width: 768px){
  #our-process .process__labels .process__title{
    text-transform: uppercase;
    letter-spacing: .08em;   /* tweak: .06–.12em */
    font-weight: 700;        /* match your header weight; or remove if too bold */
  }
}

/* OUR PROCESS – desktop rim titles: keep absolute; underline centered below */
@media (min-width: 768px){
  /* restore the original absolute layout for titles */
  #our-process .process__labels .process__title{
    position: absolute !important;   /* ← critical: keep absolute */
    display: block !important;       /* revert from inline-block */
    white-space: normal !important;  /* allow original wrapping */
  }

  /* underline lives inside the title and is anchored below it */
  #our-process .process__labels .process__title::after{
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + var(--u-gap, 6px));  /* directly under the text */
    width: var(--u-w, clamp(24px, 45%, 72px));
    height: var(--u-h, 3px);
    background: #2e8fd1;
    border-radius: var(--u-h, 3px);
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    transition:
      transform 280ms cubic-bezier(.2,.7,.2,1),
      opacity   220ms ease-out;
    box-shadow: 0 0 10px rgba(46,143,209,.35);
    pointer-events: none;
    z-index: 5;
  }

  /* reveal/animate when that title is active */
  #our-process .process__labels .process__title.is-active::after{
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}
/* OUR PROCESS – desktop: keep rim titles on one line */
@media (min-width: 768px){
  #our-process .process__labels .process__title{
    position: absolute !important;   /* keep the JS positioning */
    display: block !important;
    white-space: nowrap !important;  /* ← no wrapping */
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    max-width: none !important;
  }
}
/* OUR PROCESS – luminous progress arc */
#our-process .process__stage{
  /* intensity knob (0–1); your JS already sets --t each frame */
  --g: calc(.55 + .45 * var(--t, 0));   /* base boost + how much to react to --t */
}

/* Arc glow (CSS-only, layered drop-shadows) */
#our-process .process__progress{
  /* make the stroke add light */
  mix-blend-mode: screen;

  /* stacked glows; sizes & opacities react to --g */
  filter:
    drop-shadow(0 0 calc(5px  + 6px  * var(--g)) rgba(46,143,209, calc(.40 + .20 * var(--g))))
    drop-shadow(0 0 calc(12px + 10px * var(--g)) rgba(46,143,209, calc(.30 + .15 * var(--g))))
    drop-shadow(0 0 calc(22px + 14px * var(--g)) rgba(46,143,209, calc(.18 + .12 * var(--g))));
  will-change: filter;
}

/* Cursor dot gets a bit of glow too */
#our-process .process__cursor{
  filter:
    drop-shadow(0 0 6px  rgba(46,143,209,.65))
    drop-shadow(0 0 14px rgba(46,143,209,.35));
}

/* (Optional) when a dot/step is "hit", give it a tiny pulse */
#our-process .dot.is-hit{
  filter:
    drop-shadow(0 0 6px  rgba(46,143,209,.6))
    drop-shadow(0 0 12px rgba(46,143,209,.35));
}


#our-process{ --desktop-copy-size: clamp(13px, 1.1vw, 17px); }

@media (min-width: 768px){
  #our-process .process__labels .process__copy{
    font-size: var(--desktop-copy-size);
    line-height: 1.3;
    max-width: 30ch; /* optional */
  }
}



#our-process .process__center
#our-process .process__svg  
#our-process .process__flipbook{
  
  width:38%; max-width:220px; aspect-ratio:1/1;
  background-repeat:no-repeat;
  z-index:2; opacity:1; pointer-events:none;
}

.form-recaptcha {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.form-submit {
  display: block;
  margin: 0 auto;
}
