* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jura", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Furore";
}

@font-face {
  font-family: "Furore";
  src: url(../fonts/Furore.otf);
}
#preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #111111;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.drone-container {
  position: relative;
  text-align: center;
}

.drone {
  animation: flyUp 4s ease-in-out forwards;
}

.drone-text {
  color: #4A6B27;
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.progress-ring {
  margin-top: 30px;
  width: 100px;
  height: 100px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
}

.progress {
  width: 100px;
  height: 100px;
  border: 5px solid #4A6B27;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

@keyframes flyUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(2);
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.title {
  margin-bottom: 50px;
}
.title .top {
  margin-bottom: 35px;
}
.title .top h2 {
  text-transform: uppercase;
  font-size: 50px;
  color: #ededed;
}
.title .bottom h3 {
  color: #4a6b27;
  margin-bottom: 30px;
}
.title .bottom p {
  width: 100%;
  max-width: 600px;
  font-size: 20px;
  margin-left: auto;
  color: #ededed;
}

.bg {
  padding: 70px 0;
}

.img-main {
  width: 100%;
}

.custom-border {
  position: relative;
  display: inline-block;
}

.custom-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 30px;
  height: 30px;
  background-color: #ededed;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-right: 5px solid #ededed;
  border-bottom: 5px solid #ededed;
}

.custom-border-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  width: 30px;
  height: 30px;
  background-color: #ededed;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-left: 5px solid #ededed;
  border-bottom: 5px solid #ededed;
  transform: rotate(90deg);
}

.custom-border-3::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 30px;
  height: 30px;
  background-color: #ededed;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-right: 5px solid #ededed;
  border-top: 5px solid #ededed;
  transform: rotate(270deg);
}

.custom-border-4::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 30px;
  height: 30px;
  background-color: #ededed;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  border-left: 5px solid #ededed;
  border-top: 5px solid #ededed;
  transform: rotate(180deg);
}

.header {
  height: 100vh;
  background: url(../img/bg.jpg) center center/cover no-repeat;
}
.header .container {
  color: #fff;
}
.header .container .text {
  width: 100%;
  max-width: 700px;
  margin-top: 6vh;
}
.header .container .text .logo {
  width: 300px;
  margin-bottom: 50px;
}
.header .container .text h1 {
  font-size: 70px;
  margin-bottom: 30px;
}
.header .container .text p {
  font-size: 20px;
  margin-bottom: 30px;
}
.header .container .text .btn-home {
  background-color: #ededed;
  color: #4a6b27;
  padding: 20px 60px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s all;
}
.header .container .text .btn-home:hover {
  transform: translate(0, -3px);
}

.about {
  background: url(../img/bg-1.jpg) center bottom/cover no-repeat;
}

.mission {
  background-color: #ededed;
}
.mission .img-main {
  margin-bottom: 70px;
}
.mission .content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.mission .content .img {
  width: 25%;
}
.mission .content .img img {
  width: 100%;
}
.mission .content .text {
  width: 75%;
  background-color: #4a6b27;
  padding: 30px;
}
.mission .content .text h3 {
  color: #ededed;
  margin-bottom: 30px;
}
.mission .content .text p {
  width: 100%;
  max-width: 600px;
  font-size: 20px;
  color: #ededed;
  margin-bottom: 0;
}

.product-main {
  background-color: #fff;
}
.product-main .title .top h2 {
  color: #111111;
}
.product-main .title .bottom p {
  color: #111111;
}
.product-main .title .bottom p img {
  width: 6px;
  margin-top: -2px;
  margin-right: 4px;
}
.product-main .menu {
  overflow: hidden;
  cursor: grab;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 40vh;
}
.product-main .menu.is-dragging {
  cursor: grabbing;
}
.product-main .menu--wrapper {
  counter-reset: count;
  display: flex;
  position: absolute;
  z-index: 1;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}
.product-main .menu--item {
  counter-increment: count;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 30vw;
  height: 100%;
  padding: 0 1.5vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product-main .menu--item {
    width: 40vw;
    height: 40vw;
  }
}
.product-main .menu--item:nth-child(n+10):before {
  content: counter(count);
}
.product-main .menu--item figure {
  position: absolute;
  z-index: 1;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
}
.product-main .menu--item figure img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  transform-origin: center;
}
.product-main .menu--item figure:before {
  position: absolute;
  z-index: 2;
  bottom: 1vw;
  left: 1vw;
  display: inline-block;
  content: "0" counter(count);
  color: #ffffff;
  font-size: 3vw;
}
.product-main .version {
  display: inline-block;
  position: fixed;
  text-align: center;
  z-index: 1;
  text-decoration: none;
  background: #333;
  font-family: sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  top: -30px;
  right: -50px;
  bottom: auto;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
  border-radius: 0;
  padding: 8px 30px;
  font-size: 11px;
}
.product-main .version:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100px;
  bottom: 0;
  right: 0%;
  background: transparent;
}
@media (max-width: 767px) {
  .product-main .version {
    transform: scale(0.6) rotate(45deg);
    right: -100px;
  }
}

.product {
  background: url(../img/bg-2.jpg) center bottom/cover no-repeat;
}
.product .img-product {
  display: flex;
  justify-content: flex-end;
}
.product .img-product img {
  width: 92%;
  margin-right: -200px;
}
.product .text {
  color: #ededed;
  margin-top: -330px;
  margin-left: 50px;
  position: relative;
  z-index: 2;
}
.product .text h3 {
  font-size: 16px;
  margin-bottom: 0;
}
.product .text h2 {
  font-size: 70px;
}
.product .text p {
  background-color: #4a6b27;
  padding: 30px;
  font-size: 18px;
  margin-bottom: 0;
  max-width: 700px;
}

.characteristics .title .top h2 {
  color: #111111;
}
.characteristics .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.characteristics .items .item {
  display: flex;
  align-items: start;
  padding: 30px;
  border: 1px solid #4a6b27;
  transition: 0.3s all;
}
.characteristics .items .item img {
  width: 30px;
  margin-right: 20px;
}
.characteristics .items .item h4 {
  margin: 0;
}
.characteristics .items .item:hover {
  background-color: #ededed;
}

.description {
  background-color: #ededed;
}
.description .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}
.description .text {
  width: 100%;
  background-color: #111111;
  padding: 30px;
}
.description .text h3 {
  color: #ededed;
  margin-bottom: 30px;
}
.description .text p {
  width: 100%;
  max-width: 600px;
  font-size: 20px;
  color: #ededed;
  margin-bottom: 0;
}
.description .text-main {
  background-color: #4a6b27;
}

.contacts {
  background-color: #111111;
  color: #ededed;
}
.contacts .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.contacts .content .text .item {
  height: auto;
  padding: 0;
}
.contacts .content .text .item p {
  color: #4a6b27;
  font-size: 22px;
  margin-bottom: 0;
}
.contacts .content .text .item a {
  font-size: 40px;
  font-weight: bold;
  color: #ededed;
  text-decoration: none;
  word-break: break-all;
  margin: 0;
  display: inline-block;
}
.contacts .content .text .item a:hover {
  color: #fff;
}
.contacts .content .text .fg {
  width: 100%;
  height: 1px;
  background-color: #4a6b27;
  margin: 30px 0;
}
.contacts .content .text .social {
  margin-top: 40px;
}
.contacts .content .text .social a {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s all;
}
.contacts .content .text .social a:hover {
  background-color: #4a6b27;
}
.contacts .content .text .social a img {
  width: 25px;
}
.contacts .content .form-block form input, .contacts .content .form-block form textarea {
  background-color: transparent;
  border: 1px solid #4a6b27;
  padding: 20px;
  color: #fff;
  width: 100%;
  margin-bottom: 20px;
  outline: none;
  border-radius: 0;
}
.contacts .content .form-block form input::-moz-placeholder, .contacts .content .form-block form textarea::-moz-placeholder {
  color: #9f9f9f;
}
.contacts .content .form-block form input::placeholder, .contacts .content .form-block form textarea::placeholder {
  color: #9f9f9f;
}
.contacts .content .form-block form button {
  background-color: #4a6b27;
  color: #ededed;
  padding: 20px 60px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: 0.3s all;
}
.contacts .content .form-block form button:hover {
  transform: translate(0, -3px);
}

.success {
  background: url(../img/bg-2.jpg) center center/cover no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.success .text {
  padding: 20px;
  max-width: 800px;
  color: #fff;
}
.success .text p {
  font-size: 20px;
  margin: 30px 0;
}
.success .text a {
  background-color: #4a6b27;
  color: #ededed;
  padding: 20px 60px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s all;
}
.success .text a:hover {
  transform: translate(0, -3px);
}

.footer {
  background-color: #111111;
  color: #ededed;
  text-align: center;
  padding: 30px 0;
}
.footer .container {
  padding-top: 30px;
  border-top: 1px solid #434343;
}

@media (max-width: 1200px) {
  .header .container .text {
    margin-top: 0;
  }
  .title .bottom p {
    margin-left: 0;
  }
  .title .bottom h3 {
    font-size: 25px;
  }
  .product .img-product img {
    width: 92%;
    transform: translate(0, -60px);
    margin-right: -250px;
  }
}
@media (max-width: 991px) {
  .characteristics .title .top h2 {
    font-size: 35px;
  }
  .description .items, .characteristics .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .product .container {
    display: flex;
    flex-direction: column;
  }
  .product .img-product {
    justify-content: center;
  }
  .product .img-product img {
    width: 100%;
    margin: 0;
    transform: translate(0, 0px);
  }
  .product .text {
    margin-left: 0;
    margin-top: -50px;
  }
  .bg {
    padding: 50px 0;
  }
  .characteristics .items .item h4 {
    font-size: 16px;
  }
  .characteristics .items .item img {
    width: 25px;
  }
  .characteristics .items .item {
    padding: 20px;
  }
  .description .text {
    padding: 20px;
  }
  .description .text h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .description .text p {
    font-size: 16px;
  }
  .product .text h2 {
    font-size: 50px;
  }
  .product .text p {
    font-size: 16px;
    padding: 20px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contacts .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
  .contacts .content .text .item a {
    font-size: 25px;
  }
  .title .top h2 {
    font-size: 35px;
  }
  .title .bottom h3 {
    font-size: 20px;
  }
  .product-main .title .bottom p {
    font-size: 16px;
  }
  .mission .content {
    flex-direction: column;
  }
  .mission .content .img {
    display: none;
  }
  .mission .img-main {
    margin-bottom: 50px;
  }
  .mission .content .text {
    width: 100%;
  }
  .header {
    background: url(../img/bg-m.jpg) center center/cover no-repeat;
  }
  .header .container .text .logo {
    width: 150px;
    margin-bottom: 30px;
  }
  .header .container .text h1 {
    font-size: 50px;
  }
  .header .container .text p {
    font-size: 16px;
  }
  .custom-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    background-color: #ededed;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
    border-right: 5px solid #ededed;
    border-bottom: 5px solid #ededed;
  }
  .custom-border-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    background-color: #ededed;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
    border-right: 5px solid #ededed;
    border-bottom: 5px solid #ededed;
  }
  .custom-border-3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    background-color: #ededed;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
    border-right: 5px solid #ededed;
    border-bottom: 5px solid #ededed;
  }
  .custom-border-4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 30px;
    height: 30px;
    background-color: #ededed;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
    border-right: 5px solid #ededed;
    border-bottom: 5px solid #ededed;
  }
  .nbsp-element {
    display: none;
  }
}
@media (max-width: 500px) {
  .header {
    height: auto;
    padding-bottom: 450px;
  }
  .header .container .text h1 {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .title .bottom p {
    font-size: 16px;
  }
  .about {
    background: url(../img/bg-1-m.jpg) center bottom/cover no-repeat;
  }
  .mission .content .text p {
    font-size: 18px;
  }
  .product-main {
    padding-bottom: 0;
  }
  .product-main .menu {
    margin-top: 50px;
  }
  .product .img-product img {
    width: 125%;
    transform: translate(75px, -19px);
  }
  .description .items, .characteristics .items {
    gap: 15px;
  }
  .product-2 {
    padding-top: 0;
  }
  .product-2 .img-product img {
    width: 145%;
    transform: translate(97px, 33px);
  }
  .title .bottom h3 {
    font-size: 17px;
  }
}/*# sourceMappingURL=style.css.map */