@font-face {
    font-family: nico;
    font-style: normal;
    font-weight: 100;
    src: url("./assests/Nico/NicoMoji-Regular.ttf");
}
@font-face {
    font-family: nats;
    font-style: normal;
    font-weight: normal;
    src: url("./assests/nats/NATS-Regular.ttf");
}
::-webkit-scrollbar {
    width: 0.5vw;
}  
::-webkit-scrollbar-track {
    background: #000000; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0.5vw;
    background: darkgrey;
}
*{
    margin: 0;
    padding: 0;
}


body{
    background-color: black;
    width: 100%;
}

.hidden{
    display: none !important;
}
.loader{
    height: 100vh;
    width: 100%;
    /* background-color: pink; */
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
}
.loader > img{
    max-width: 5vh;
    max-width: 5vw;
    animation: rotate 2s infinite linear;
    transform-style: preserve-3d;
}
@keyframes rotate {
    0% { transform: translateZ(-50px) rotateY(0deg);}
    100% { transform: translateZ(-50px) rotateY(360deg);}
}



body{
    padding: 0;
    margin: 0;
    background-color: #000000;
}
.navbar{
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navnav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 10vh;
    overflow: hidden;
}
.navnav img{
    height: 3vh;
}
.navlinks{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.navlinks a {
    float: left;
    color: #adb5bd;
    text-align: center;
    margin-left: 2vw;
    text-decoration: none;
    font-family: nats;
    cursor: pointer;
    font-size: 1rem;
}
.dropdown button{
    color: #adb5bd;
    text-align: center;
    margin-left: 2vw;
    text-decoration: none;
    font-family: nats;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-weight: 100;
}
.undies{
    position: relative;
    background-image: linear-gradient(#FFFFFF,#FFFFFF) !important;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-clip: text;
    background-position: right;
    /* color: hsl(0 0% 100% / 0.2) !important; */
    transition: background-size 0.3s ease-in-out;
}
.undies:hover{
    color: #FFFFFF;
    background-position: left;
    background-size: 100% 100%;
}
.dropdown {
    position: relative;
    display: inline-block !important;
}
.dropdown-content {
    display: none !important;
    position: absolute !important;
    min-width: 10vw;
    max-width: 10vw;
    width: 10vw;
    margin-left: -1vw;
    z-index: 1;
    border-radius: 20px;
    background-color: #0E0E0E;
    color: rgb(16, 16, 16);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: 0.05px solid rgba(136, 136, 136,0.3);
}
.dropdown-content a {
    color: rgb(112, 111, 111);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: color,font-size 0.2s linear;
    margin-left: 0vw;
    font-size: 0.8rem !important;
}
.dropdown-content a:hover{
    color:#4C9FFF;
    font-size: 1rem !important;
  }
.dropdown:hover .dropdown-content {
    display: flex !important;
    flex-direction: column;
}

.ham{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:25px;
}
.hamburger{
    display: block;
    width: 25px;
    height: 35px;
    cursor: pointer;

    background: none;
    appearance: none;
    outline: none;
    border: none;
}
.hamburger .bar, .hamburger:after, .hamburger:before {
	content: '';
	display: block;
	width: 100%;
	height: 2.5px;
	background-color: #FFF;
	margin: 6px 0px;
    border-radius: 5px;
	transition: 0.4s;
}
.hamburger.is-active:before {
	transform: rotate(-45deg) translate(-4px, 3px);
}
.hamburger.is-active:after {
	transform: rotate(45deg) translate(-9px, -8px);
}
.hamburger.is-active .bar {
	opacity: 0;
}


.mobile-nav {
    z-index: 100000;
	position: fixed;
	top: 10vh;
	left: 100%;
	width: 100%;
	min-height: 100vh;
	display: block;
	background-color: #12002F;
	padding-top: 10vh;
	transition: 0.4s;
}
.mobile-nav.is-active {
	left: 0;
}
.mobile-nav a {
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto 16px;
	text-align: center;
	padding: 12px 16px;
	background-color: #1f103F;
    font-family: nats;
	color: #FFF;
	text-decoration: none;
}

.mobile-nav a:hover {
	background-color: #24104f;
}
.comh1{
    width: 100%;
    color: white;
    font-family: nico;
    height: 5vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.comdiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.comdiv a{
	display: block;
	width: 80%;
	max-width: 150px;
	margin: 0 auto 12px;
	text-align: center;
	padding: 8px 12px;
	background-color: #1f103F;
    font-family: nats;
	color: #FFF;
	text-decoration: none;
}
.text--1 a{
    font-size: 2vmin;
    line-height: 2vmin;
    color: #4C9FFF;
    text-decoration: underline;
    cursor: pointer;
}


    
.Services{
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.serv-text{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 10%;
}
.serv-text h1{
    font-family: nico;
    font-size: 2.5vmax;
}
.serv-text p{
    font-size: 2vmax;
    line-height: 2vmax;
    font-family: nats;
    color: #adb5bd;
}
.serv-main{
    height: 97.5%;
    width: 90%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.serv-div{
    background: radial-gradient(circle, rgba(76,159,255,0.4) -10%, rgba(0,0,0,1) 90%);
    box-shadow: inset 0 1px 1px rgba(199,211,234,.12), inset 0 24px 48px rgba(199,211,234,.05);
    border-radius: 1em;
    border: 0.7px solid rgba(216, 216, 216, 0.2);
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-evenly;
    align-items: center;
    height: 87.5%;
    width: 100%;
}
.serv-left{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 25%;
    width: 90%;
    border-radius: 0.6em;
    background-color: rgba(255, 255, 255,0.05);
    border: 0.7px solid rgba(216, 216, 216, 0.2);
    flex-wrap: wrap;
}
.serv-left p{
    color: #A9A6A6;
    display: flex;
    font-family: nats;
    font-size: 2.25vmax;
    line-height: 2.25vmax;
    justify-content: center;
    align-items: center;
    border-radius: 0.5em;
    width: 30%;
    height: 35%;
    background-color: rgba(3, 3, 3,0.21);
    border: 1px solid rgba(36, 35, 35,0.6);
    text-align: center;
    cursor: pointer;        
}
.p-active{
    color: white !important;
    display: flex;
    font-family: nico;
    font-size: 2vmin;
    justify-content: center;
    align-items: center;
    border-radius: 0.5em;
    width: 80%;
    height: 14%;
    background-color: rgba(36, 35, 35,.50) !important;
    border: 1px solid rgba(255, 255, 255,0.21) !important;
}
.serv-right{
    display: flex;
    flex-direction: column;
    border-radius: 0.6em;
    justify-content: space-evenly;
    align-items: center;
    height: 65%;
    width: 90%;
    background-color: rgba(255, 255, 255,0.05);
    border: 0.7px solid rgba(216, 216, 216, 0.2);
}
.serv-right-img{
    height: 60%;
    width: 80%;
    max-height: 60%;
    min-height: 60%;
    max-width: 80%;
    min-width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2vmin;
}
.lder{
    height: 100%;
    width: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2vmin;
}
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
.serv-right-img img{
    width: 100%;
    height: 100%;
}
.serv-right-txt{
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 80%;
}
.serv-right-txt p{
    font-size: 2vmax;
    line-height: 2vmax;
    font-family: nats;
}
.serv-right-txt h1{
    font-family: nico;
    font-size: 2.25vmax;
    line-height: 2.25vmax;
}
.serv_industry{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300vh;
}
.indus-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    align-items: center;
    height:100%;
}
.indus-img{
    width: 65%;
    height: 75%;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    border: 1px solid white;
}
.indus-txt{
    font-family: nico;
    color: white;
    font-size: 1.75vmax !important;
    height: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.serv-indus{
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 95%;
}

.indus1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: center;
    height: 12.5%;
}
.qqq{
    height: 100% !important;
}
.indus2{
    /* background-color: limegreen; */
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 25%;
}
.industry{
    height: 60%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 0.6em;
    border: 0.7px solid rgba(216, 216, 216, 0.2);
    background: linear-gradient(180deg, rgba(0,0,0,0.3968181022408963) 64%, rgba(76,159,255,0.4808517156862745) 100%);


}

.indus-in-text{
    height: 40%;
    font-family: nats;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 2vmin;
}
.num00{
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 70%;
}
.num0{
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 30%;
    justify-content: center;
    align-items: center;
}
.num-1{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 13%;
}
.num-1 p {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4C9FFF;
    border-radius: 50em;
    height: 2vmax;
    width: 2vmax;
    color: white !important;

}
.text--1{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 87%;
}
.text--1 p{
    font-size: 2vmax;
    line-height: 2vmax;
    color: #adb5bd;
}
    
.text--1 a{
    font-size: 1.85vmax;
    line-height: 1.85vmax;
    color: #4C9FFF;
    text-decoration: underline;
    cursor: pointer;
}
.num11{
    width: 87%;
}
.num-12{
    width: 13%;
}
.ind-btn{
    border: none;
    background-color: #4C9FFF;
    border-radius: 1em;
    width: 7vw;
    color:white;
    height: 3vh;

}


.indus--txt{
    display: flex;
    width: 87%;
    height: 100%;
    flex-direction: column;

}

.footer{
    margin-top: 5vh;
    height:50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #343a40;
    background-color: #0f1114;
    /* display:none; */
}
.fcont{
    height: 100%;
    width: 90%;
}
.ftop{
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fbot{
    border-top: 1px solid #515151;
    height: 10vh;
    max-height: 10vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fbot h5{
    color: #adb5bd;
    font-family: nats;
    font-size: 1.5vmax;
    line-height: 1.5vmax;
}
.ftop1{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ftop1 img{
    width:20%;
}
.ftop1 p{
    text-align: center;
    margin-top: 2.5vh;
    color: #adb5bd;
    font-family: nats;
    max-width: 100%;
    line-height: 2vh;
    font-size: 3vmin;
}
.ftop2{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.ftop2 div{
    height: 100%;
    width:33.33%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.ftop2 div h1{
    margin-top: 15%;
    color: #FFFFFF;
    font-family: nats;
    font-size: 2vmax;
    line-height: 3vmax;
}
.ftop2 div a{
    text-decoration: none;
    color: #adb5bd;
    font-family: nats;
    font-size: 1.5vmax;
    line-height: 2.5vmax;
    transition: 0.3s linear;
}
.ftop2 div a:hover{
    color: #FFFFFF;
}
.iconcont{
    margin-top: 2.5vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 3vw;
}
.iconcont a{
    text-decoration: none;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    color: #adb5bd;;
    transition: 0.2s linear;
}
.fa-facebook-square:hover{
    color:#fff;
}

.fa-skype:hover{
    color:#fff;
}
.fa-linkedin:hover{
    color:#Fff
}
