@font-face {
    font-family: "ABC Favorit Pro Light";
    src: url("../css/ABCFavoritPro-Light.otf") format("opentype");
    font-weight: 100;
}
@font-face {
    font-family: "ABCFavoritPro-Regular";
    src: url("../css/ABCFavoritPro-Regular.otf") format("opentype");
    font-weight: 400;
}
/* @font-face {
  font-family: "ABCFavoritPro-Bold";
  src: url("../css/ABCFavoritPro-Bold.otf") format("opentype");
  font-weight: bold;
} */
@font-face {
    font-family: "NBArchitektStd-Light";
    src: url("../css/NBArchitektStd-Light.otf") format("opentype");
    font-weight: 100;
}
@font-face {
  font-family: "NBArchitektStd-Bold";
  src: url("../css/NBArchitektStd-Bold.otf") format("opentype");
  font-weight: bold;
}



:root {
  --color-bg: #000000;
  --color-text-main: #ffffff;
  --color-text-secondary: #A0A0A0;
  --color-orange: #E8490D;
  --font-main: "ABCFavoritPro-Regular", sans-serif;
  --font-secondary: monospace;
  --swiper-theme-color: #E8490D !important;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  
}



html,
body {
  position: relative;
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text-main);
  hyphens: auto;
  /* scroll-behavior: smooth; */

  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: 97%;
}

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  /* overflow: auto; */
  overflow: hidden;

}

.sections {
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.s1, .s2, .s3, .s4, .s5, .s5, .s7, .s8 {
  width: 100%;
  height: 100vh;
}

.s6 {
  width: 100%;
  height: 30vh; 
}


.section_container {
  width: 90vw;
  margin: 0 auto; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section_container-full {
  width: 100vw;
  margin: 0 5vw; 
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section_container-full-left {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .container {
  /* border: 1px solid #fff; */
/* } */

.videoDES {
  display: block;
}

.imageMOB {
  display: none;
}

.type-image-bg {
  width: 100vw !important;
  height: auto;
}

.video-right {
  height: 100vh;
  /* width: 30vw; */
  margin-left: 5vw;
  /* border: 1px solid #fff; */
}
.video-left {
  height: 100vh;
  width: 60vw;;
  /* width: 30vw; */
  /* margin-left: 5vw; */
  /* border: 1px solid #fff; */
}

.s6 {
  height: 98vh;
}

.specs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100vw;
  margin: 0 auto; 
  
}

.title-specs {
  font-family: 'NBArchitektStd-Light', sans-serif;
  text-align: center;


}
.info-specs {
  font-family: 'NBArchitektStd-Bold', sans-serif;
  font-size: 5em;
  text-align: center;
}

.text-mob {
  margin-right: 5vw;
}
video {
  object-fit: cover;
  width: auto;
  height: 98vh;
}

.blanket-mob {
  display: none;
}

.blanket-des {
  display: block;
}

.intro-image-bg {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

h1 {
    font-size: 6rem;
    margin: 30px;
    text-align: center;
}
  



.story-text {
  width: 25vw; /* width: 300px 25vw; */
  font-size: 1.5em;
  line-height: 1.1em;
  text-align: left;
  color: var(--color-text-secondary); 
  /* border: 1px solid #fff; */
}
  
.highlight {
    color: var(--color-text-main);
}
  
.orangeTXT {
    color: var(--color-orange);
}


/* REVEAL AMINATIONS */
.swiper-slide.swiper-slide-active .fade-left {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fade-left {
  /* transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1) 1s ease-in; */
  transition: all 1.8s ease-in-out ;
  transform: translate3d(-30%, 20%, 0);
  opacity: 0;
}

.swiper-slide.swiper-slide-active .fade-right {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fade-right {
  transition: all 1.8s ease-in-out ;
  transform: translate3d(30%, 20%, 0);
  opacity: 0;
}

.swiper-slide.swiper-slide-active .fade-bottom1, 
.swiper-slide.swiper-slide-active .fade-bottom2,
.swiper-slide.swiper-slide-active .fade-bottom3 {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fade-bottom1 {
  transition: all 1.8s ease-in-out ;
  transform: translate3d(0, 50%, 0);
  opacity: 0;
}

.fade-bottom2 {
  transition: all 1.8s ease-in-out ;
  transform: translate3d(0, 120%, 0);
  opacity: 0;
}

.fade-bottom3 {
  transition: all 1.8s ease-in-out ;
  transform: translate3d(0, 180%, 0);
  opacity: 0;
}
/* REVEAL AMINATIONS */



.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, 
.swiper-container-vertical>.swiper-pagination-progressbar {
    position: absolute;
    left: 95%;
    top: 25%;
    height: 50%;
}

/* .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: orangered !important;
} */  


  

/* INFO BOX */
/* INFO BOX */
/* INFO BOX */

.info.active {
  top: 0;
  transition: 0.8s ease-out;
}

.info {
  background-color: var(--color-orange);
  color: var(--color-bg);
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 100%;
  left: 0;
  padding-bottom: 100px;
  z-index: 100000;

  transition: 1s ease-in;
  overflow-x: hidden;
}



/* Hide scrollbar for Chrome, Safari and Opera */
.info::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.info {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.nav-info.active {
  background-color: var(--color-bg);
  bottom: 95.5vh;
  padding: 40px 5vw 8px;
  transition: 0.8s ease-out;
}

.nav-info {
  position: fixed;
  background-color: var(--color-orange);
  color: var(--color-text-main);
  /* height: 40px; */
  width: 100vw;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 12px 5vw 8px;
  z-index: 1000000;

  transition: 1s ease-in;
}

.Lang-Info {
  display: flex;
  justify-content: space-between;
}

#toggleLang {
  color: var(--color-text-main);
  margin-left: 20px;
  text-decoration: none;
}

#toggleLang:hover {
  color: var(--color-text-secondary);
}

#toggle:hover {
  cursor: pointer;
  color: var(--color-text-secondary);
}

.demoVideo {
  width: 100vw;
  height: auto;
}

.grid {
  justify-content: space-between;
  display: grid;
  grid-template-areas: "TechChar TechChar TechChar ."
                       "TechImg TechImg TechImg TechInfo"
                       "Guide Guide Guide ."
                       "GuideTxt GuideTxt GuideTxt GuideVideo"
                       "Guide1 Guide2 Guide3 GuideVideo"
                       "UseTitle UseTitle UseTitle ."
                       "UseIcon UseIcon UseIcon UseIcon"
                       "AboutTitle AboutTitle ContactTitle ContactTitle"
                       "AboutTxt AboutTxt ContactItem ContactItem";
                       /* "p q r s"
                       "t t u u"; */
  padding: 0 5vw;
}

/* .grid__item {
  border: 1px solid #fff;
} */

.grid__item:nth-child(1) {
  grid-area: TechChar;
}
.grid__item:nth-child(2) {
  grid-area: TechImg;
}
.grid__item:nth-child(3) {
  grid-area: TechInfo;
}
.grid__item:nth-child(4) {
  grid-area: Guide;
}
.grid__item:nth-child(5) {
  grid-area: GuideTxt;
  margin-right: 20px;
}
.grid__item:nth-child(6) {
  grid-area: Guide1;
  margin-top: 50px;
}
.grid__item:nth-child(7) {
  grid-area: Guide2;
  margin-top: 50px;
  margin-left: 20px;
}
.grid__item:nth-child(8) {
  grid-area: Guide3;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
}
.grid__item:nth-child(9) {
  grid-area: GuideVideo;
  /* border: 1px solid #000; */
  border-radius: 10px;
}
.grid__item:nth-child(10) {
  grid-area: UseTitle;
}
.grid__item:nth-child(11) {
  grid-area: UseIcon;
  margin-right: 20px;
  margin-left: 6vw;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 50px;
}
.grid__item:nth-child(12) {
  grid-area: AboutTitle;
}
.grid__item:nth-child(13) {
  grid-area: AboutTxt;
}
.grid__item:nth-child(14) {
  grid-area: ContactTitle;
  margin-left: 20px;
  padding-top: 250px; 
  padding-left: 5vw;
}
.grid__item:nth-child(15) {
  grid-area: ContactItem;
  margin-left: 20px;
  padding-left: 5vw;
}


.Place_Use {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.Place_Use > div {
  text-align: center;
}

.Place_Use-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.usages {
  text-align: center;

  padding: 20px;
  border: 1px solid #000;
  border-radius: 10px;
}

.usages:hover {
  background-color: var(--color-text-secondary);
  color: var(--color-text-main);
  border: .5px solid #000;
}

.info > img {
  height: auto;
  width: auto;
}

.video-demo-drone {
  /* width: 280px; */
  width: 20vw;
  height: 350px;
}

.Blanket_tech {
  width: 60vw; 
  padding-left: 10vw;
}

.uses-des {
  display: block;
}

.uses-mob {
  display: none;
}


/* INFO BOX */


.intro-info {
  /* background-color: var(--color-orange);  */
  height: 95vh; 
  width: 100vw; 
  top: 0; 
  left:0;
}


.subtitle {
  color: var(--color-text-main);
  text-align: center;
  font-family: 'ABCFavoritPro-Light', sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 20px !important;

  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -40%);
  margin: auto;
  max-width: 50%;
}

h2 {
  color: var(--color-text-main);
  text-align: center;
  font-size: 4rem;
  line-height: 4.5rem;

  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -38%);
  margin: auto;
  /* margin-top: 500px; */
  max-width: 60%;
}

h3 {
  font-family: "ABCFavoritPro-Light", sans-serif;
  font-weight: 100;
  font-size: 2.5rem;
  line-height: 2rem;
  padding-top: 300px;
  padding-bottom: 100px;
}

.contact {
height: 100px;
}

.contact {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--color-bg);
}

a:hover {
  text-decoration: underline;
}


/* INFO BOX */
/* INFO BOX */
/* INFO BOX */


@media all and (min-width: 1500px) {

  .title-specs {
    font-size: 2em;
  }

  .info-specs {
    font-size: 4.5em;
  }
}


@media all and (max-width: 800px) {

  .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: top;
    -ms-flex-pack: top;
    -webkit-justify-content: top;
    justify-content: top;
    -webkit-box-align: top;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;

  
  }

  .story-text {
    width: 79vw; /* width: 25vw; */
    font-size: 1em;
    line-height: 1.1em;
    text-align: left;
    color: var(--color-text-secondary); 
    /* border: 1px solid #fff; */
  }

  .section_container {
    flex-direction:column;
    margin: 0;
  }

  .section_container-full {
    flex-direction:column;
    margin: 0;
  }

  .section_container-full-left {
    flex-direction:column;
    margin: 0;
  }

  .video-right {
  height: auto;
  width: 100vw;
  }
  .video-left {
    height: auto;
    width: 100vw;;
  }

  video {
  object-fit: cover;
  width: 100vw;
  height: auto;
  }

  .blanket-mob {
    display: block;
  }

  .blanket-des {
    display: none;
  }

  .fiber-wire-weave {
    margin-top: 10vh;
  }

  .intro-image-bg {
    height: 100vh;
    overflow: hidden;
  }

  .info-specs {
    font-size: 3.5em;
  }

  .specs-container {
    flex-direction:column;
    height: 70vh;
  }

 

  .s6 {
    height: 85vh !important;
  }

 

  
  .text-mob {
    margin-right: 0;
  }

  .bag {
    margin-left: 20vw;
  }


  /* INFO */

  .nav-info.active {
    bottom: 77vh;
  }

  h2 {
    font-size: 2rem;
    line-height: 2rem;
    max-width: 90%;
  }

  .subtitle {
    font-size: 13px;
    line-height: 14px !important;
    top: 57%;

    width: 90vw !important;

  }

  h3 {
    font-size: 2rem;
    line-height: 2rem;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .grid {
    justify-content: space-between;
    display: grid;
    grid-template-areas: 
                        "TechChar . ."
                        "TechImg . . "
                        "TechInfo . ."
                        "Guide . ."
                        "GuideTxt . ."
                        "Guide1 Guide2 Guide3 "
                        "GuideVideo . ."
                        "UseTitle . ."
                        "UseIcon . ."
                        "AboutTitle . . "
                        "AboutTxt . ."
                        "ContactTitle . ."
                        "ContactItem . .";
    /* padding: 5vw; */
  }


  /* .info > img {
    height: auto;
    width: 90vw;
  } */

  .Blanket_tech {
    width: 90vw; 
    padding-left: 0;
    /* padding-left: 10vw; */
  }

  .Blanket_tech-txt {
    margin-top: 5vh;
  }

  .video-demo-drone {
    margin-top: 5vh;
    width: 90vw;
    height: 30vh;
  }

  .uses-mob {
    display: block;
  }
  
  .uses-des {
    display: none;
  }


  .grid__item:nth-child(3) {
    margin-top: 50px;
  }
  .grid__item:nth-child(6) {
    display: none;
  }
  .grid__item:nth-child(7) {
    display: none;
  }
  .grid__item:nth-child(8) {
    display: none;
  }
  .grid__item:nth-child(9) {
    margin-top: 50px;
  }

  .grid__item:nth-child(11) {
    grid-area: UseIcon;
    margin-right: 20px;
    margin-left: 6vw;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 20px;
  
  }
  .grid__item:nth-child(14) {
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .grid__item:nth-child(15) {
    margin-left: 0;
    padding-left: 0;

  }

  .grid__item {
    margin: 0;
  }

  .Place_Use {
    margin-top: 50px;

    gap: 10px;
  }
  
  .usages {
    padding: 15px 10px;
  }
  

  .videoDES {
    display: none;
  }
  
  .imageMOB {
    display: block;
  }

  .imageMOB > img {
    width: 100vw;
    height: auto;
  }

  .video-left {
    padding-bottom: 10vh;
  }

  .video-right {
    padding-top: 10vh;
  }

  /* INFO */
}