 @font-face{
    src: url(D-DIN.otf);
  }    
   @font-face{
    font-family: HelveticaNeue-Condensed;
    src: url(HelveticaNeue-Condensed.otf);
  }            
                
body{
    font-family: 'HelveticaNeue-Condensed',sans-serif;
    margin: 0;
    background-color: #00060d !important;
}


* {
   font-family: HelveticaNeue-Condensed,sans-serif;
}

li{
    list-style: none;
}

/*menu*/

.header {
  background: hsl(925, 100%, 10%);
   position: fixed;
    z-index: 1;
    width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  font-size: 23px !important;
  font-weight: 400;
  color: #fff !important;
}

.nav-link:hover {
  color: #01cee3 !important;
}
.nav-link:active {
  color: #01cee3 !important;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: #482ff7;
}

@media only screen and (max-width: 900px) {
  .nav-menu {
    display: block;
    position: fixed;
    right: -100%;
    z-index: 1;
    top: 72px;
    flex-direction: column;
    background-color: #001e33;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);

  }

  .active {
    right: 0%;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.contact{
    background-color: #01cee3 !important;
    border: 1px solid #01cee3;
    padding: 8px 15px 8px 15px;
    font-size: 23px;
    line-height: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .41);
    transition: all .3s linear;
}
/*menu*/

/*banner*/

.banner {
    background: url('images/dark-banner.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    animation: zoomIn 0.8s ease-in-out backwards;
}
.indoor-banner{
    background: url('images/banners/indoor.webp') no-repeat center center;
    background-size: cover;
    height: 80vh;
    position: relative;
    animation: zoomIn 0.8s ease-in-out backwards;
}
.industrial-banner{
    background: url('images/banners/industry.webp') no-repeat center center;
    background-size: cover;
    height: 80vh;
    position: relative;
    animation: zoomIn 0.8s ease-in-out backwards;
}
.outdoor-banner{
    background: url('images/banners/outdoor.png') no-repeat center center;
    background-size: cover;
    height: 80vh;
    position: relative;
    animation: zoomIn 0.8s ease-in-out backwards;
}
.retroit-banner{
    background: url('images/banners/retroit.png') no-repeat center center;
    background-size: cover;
    height: 80vh;
    position: relative;
    animation: zoomIn 0.8s ease-in-out backwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1.2);
    }
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

h1 {
    font-size: 100px !important; 
    
    margin: 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    transition: all .3s linear;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    h1{
        font-size: 24px !important; 
    }
}
/*banner end*/

/*customer*/
.mar{
/*    background-image: linear-gradient(to right, #00c4b7, #1bb8da);*/
    padding-top: 30px;
    padding-bottom: 30px;
}
/*customer end*/

/*product*/

.pro{
    padding-top: 30px;
    padding-bottom: 30px;
}
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    
}
.grid figure:hover img{
    filter: brightness(0.5);
    color:#fff !important ;

}

.grid figure figcaption {
    
    color: #fff;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}



.grid figure p {
    font-size: 68.5%;
}



figure.effect-lily figcaption {
    text-align: left;
}

figure.effect-lily figcaption > div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    
}

figure.effect-lily h2,
figure.effect-lily p {
    -webkit-transform: translate3d(0,40px,0);
    transform: translate3d(0,40px,0);
}

figure.effect-lily h2 {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.effect-lily p {
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
    font-size: 15px;
    overflow: hidden;
    padding-bottom: :30px;
}


figure.effect-lily:hover p {
    opacity: 1;
}
figure.effect-lily{
transition: transform .2s;
}

figure.effect-lily:hover
 {
      -ms-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
  
}

/*image*/

.proof:hover{
    filter: contrast(1.3);
}

/*footer*/
footer{
    background: #000;
    color:#fff;
    padding-bottom: 50px;
    padding-top: 50px;
}
/*footer end*/

/*image card*/
.polaroid {
/*  width: 250px;*/
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  border: 1px solid #8f8f8f;
  display: :block;
}

.card {
  padding: 10px;
}

/*image card end*/
/*tabs*/
.shadow{
    background: #00060d !important; 
}
.nav-tabs .nav-link.active {
    background: #00060d !important; 
}

/*tabs end*/

/*form*/
.form-control{
    background-color: #00060d !important;
    border-bottom: var(--bs-border-width) solid #ffffff !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-radius: 0px !important;
    padding: 0 !important;
    color:#fff !important;
}
label{
    color: #fff !important;
    padding-top: 16px !important;
}
.btn{
    background-color: #01cee3 !important;
    margin-bottom: 20px !important;
}
 .form-control:focus{
    box-shadow: none !important;
 }
form{
        border: 2px solid #fff;
    padding: 30px;
    margin-bottom: 50px;
}
/* dropdown menu*/
.dropbtn {

  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #01cee3;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
background-color: #ddd;
}

.dropdown:hover .dropdown-content {
display: block;
}

/*dropdown end*/
.spak{
    padding-top: 150px;
}

/*tab*/
.bg-light{
background: linear-gradient(124deg, rgb(255 255 255 / 10%) 20%, 
            rgb(249 249 249 / 15%) 40%) !important;
}

/*marquee*/
.track {
/*  position: absolute;*/
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}