/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
:root {
  --theme__color1: #58f709;
  --theme__color2: #0a1a29;
  --font1: 'Montserrat', sans-serif;
}
*,::before,::after {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 1.2;
  background-color: var(--theme__color2);
  color: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font1);
}
a, a:active, a:focus, a:active, a:hover {
  text-decoration:none !important;
  color: inherit;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe {
  width: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 700;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
.main-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}



/* header */
.header-section {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header-section {
  
}
.header-logo {
  width: 160px;
  display: flex;
}
/* header-end */


/* --preloader-- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--theme__color2);
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #e2eefd36;
  border-top-color: var(--theme__color1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
/* --preloader-end-- */



/* ---video-section--- */
.video-section {
  flex-grow: 1;
}
.video-section .container {
  padding: 270px 12px 0;
  position: relative;
  z-index: 1;
}
.video-bg-shape {
	position: absolute;
	top: 155px;
	left: -4%;
	width: 100%;
}
.video-light {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%,0);
  width: 80%;
  z-index: -1;
}
.video-window {
  margin: 0 auto 0;
  width: 63%;
  z-index: -1;
}
.video-window-inner {
	background: url('images/SVG/video-laptop.svg') no-repeat center center/contain;
	padding-top: 59%;
	position: relative;
}
.video-window .video {
	position: absolute;
	top: 10%;
	left: 12.2%;
	width: 75.6%;
	height: 75.5%;
  border-radius: 0 0 10px 10px;
}
.video-section-ground-row {
	margin-top: -14.8%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.video-section-ground-row .cone {
  width: 7%;
}
.video-section-ground-row .cone1 {
  margin-left: 10%;
}
.video-section-ground-row .object {
  width: 26%;
  margin-right: -2%;
}
.video-section-ground-row .line {
  width: 100%;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.418);
  display: block;
}
/* ---video-section---end */



/* ---footer-section--- */
.footer-section {
  padding: 60px 0 15px;
  position: relative;
  z-index: 3;
  font-size: 14px;
}
.footer-section .container {
  display: flex;
  justify-content: space-between;
}
.footer-section p {
  font-size: inherit;
}
.footer-section .footer-menu {
  display: flex;
}
.footer-section .footer-menu li {
  margin-right: 15px;
}
.footer-section .footer-menu li:last-child {
  margin-right: 0;
}
.footer-section .footer-menu li a {
  display: flex;
}
.footer-section .footer-menu li a .icon {
  margin-right: 10px;
  font-size: inherit;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: var(--theme__color1);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}
/* ---footer-section---end */