@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Monoton&family=Poppins:wght@400;500;600;700&family=Quantico:wght@400;700&display=swap');
:root{
    --primary:#1f2e88;
    --secondary:#82298e;
    --light-secondary: #5e548e;
    --hover: #6366F1;
    --black:#333;
    --whitewhite:#fff;
    --light-color:#666;
    --light-bg:#eee;
    --border:.2rem solid rgba(0,0,0,.1);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
    --other: #cdb4db;
}

*{
	margin: 0; 
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	outline: none; border: none;
	text-decoration: none;
	transition: .2s linear;
}

body {
	background: #111927;
}


html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar{
  width: .8rem;
}

html::-webkit-scrollbar-track{
  background: transparent;
}

html::-webkit-scrollbar-thumb{
  background: var(--primary);
  border-radius: 5rem;
}

.home {
  background-image: url("/images/bg_img_01.png");
  background-position: top center;
  background-repeat: no-repeat;
}

section{
  padding: 5rem 7%;
}

.heading{
  font-size: 4rem;
  text-align: center;
  color: #FFFFFE;
  text-transform: uppercase;
  font-weight: bolder;
  margin-bottom: 3rem;
}

.heading span{
  color: #6366F1;
  text-transform: uppercase;
}

.btn{
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  border-radius: .5rem;
  background: #6366F1;
  cursor: pointer;
  font-size: 1.7rem;
  color: #FFFFFE;
}

.btn:hover{
  background: #2962EB;
}

/* header */

.header{
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 9%;
}

.header.active{
  background: rgba(40, 49, 76, 0.80);
  box-shadow: var(--box-shadow);
  border: 0;
  padding: 2rem 9%;
  color: #FFFFFE;
}
.header.active .navbar a{
  color: var(--white);
}

.header.active .logo{
  color: var(--white);
}

.header .logo{
  font-family: 'Quantico', sans-serif;
  font-size: 2.5rem;
  font-weight: bolder;
  color: #FFFFFE;
}
.header .logo span{
  color: #6366F1;
}

.header .logo i{
  padding-right: .5rem;
  margin: 0;
}
.header.active .logo i{
  color: var(--white);
}
.header .navbar{
  display: flex;
  /* justify-content: space-between;*/
}
.header .navbar li{
  position: relative;
}

.header .navbar li a{
  max-height: 5px;
}

.header .navbar a:hover::after, .header .navbar a:visited::after{
  width: 100%;
}
.header .navbar a{
  font-size: 1.7rem;
  color: #FFFFFE;
  margin: 0 1rem;
}



.header .navbar a:hover{
  color: #6366F1;
}

#console-cursor {
	min-height: 130px;
}


#menu-btn{
  font-size: 3.5rem;
  cursor: pointer;
  color: #6366F1;
  display: none;
}
.header.active #menu-btn{
  color: var(--white);
}

/* header end */

/* home */

.home{
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
}

.home .image img{
    width: 500px;
	float: right;
}

.home .content{
  max-width: 600px;
}


.home .content h3{
  justify-content: left;
  font-size: 6rem;
  color: #FFFFFE;
  line-height: 1.2;
}

.home .content h3 span{
  color: #6366F1;
}

@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.home .content p{
  font-size: 2.0rem;
  color: #6466A0;
  line-height: 2;
  padding: 1rem 0;
}

.home .content p::after {
  content: '|';
  display: inline-block;
  margin-left: 0.5ch;
  animation: blink 1s infinite;
}


/*.home .content h3::after {
  content: '|';
  display: inline-block;
  margin-left: 0.5ch;
  animation: blink 1s infinite;
} */

/* home ends */

.gradient-block {
  width: 100%;
  height: 130px;
  background: linear-gradient(to bottom, #111927, #171E34);
}

/* about */

.about{
	background-color: #171E34;
}

.about .row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about .row .image{
  flex: 1 1 30rem;
}

.about .row .image img{
  width: 320px;
  height: 320px;
}

.about .row .content{
  flex: 1 1 60rem;
}

.about .row .content h3{
  color: #6366F1;
  font-size: 3.5rem;
  line-height: 1.5;
}

.about .row .content p{
  font-size: 2rem;
  padding: 3rem 0;
  color: #9CA3AF;
  line-height: 2;
}

.about .row .content p span{
  color: #6366F1;
}

/* about end*/


/* services */

.services{
  background-image: linear-gradient(rgba(17, 25, 51, 0.6), rgba(17, 25, 51, 0.6)),url("/images/background-applications.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
   position: relative;
}


.services .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box{
  text-align: center;
  
}

.services .box-container .box i, .services .box-container .box svg{
  margin: 1rem 0;
  font-size: 20rem;
}

.services .box-container .box h3{
  font-size: 2rem;
  padding: 1rem 0;
  color: #6366F1;
}

.services .box-container .box p{
  font-size: 1.5rem;
  color: #FFFFFE;
  line-height: 2;
}

/* services end */

/* faq */

.faq{
  background: #111927;
}
.faq .heading{
  color: #FFFFFE;
}
.faq .heading span{
  color: #6366F1;
}

.faq .accordion-container{
  padding: 0 2rem;
}

.faq .accordion-container .accordion{
  margin-bottom: 2rem;
  cursor: pointer;
    color: #FFFFFE;
   background: #192230;
}

.faq .accordion-container .accordion.active .accordion-heading{
  background: #6366F1;
}

.faq .accordion-container .accordion.active .accordion-heading h3{
  color: var(--white);
}

.faq .accordion-container .accordion.active .accordion-heading i{
  color: var(--white);
  transform: rotate(135deg);
  transition: transform .2s .1s;
}

.faq .accordion-container .accordion.active .accordion-content{
  display: block;
}

.faq .accordion-container .accordion .accordion-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: var(--border);
  padding: 1.5rem 2rem;
}

.faq .accordion-container .accordion .accordion-heading h3{
  font-size: 1.8rem;
}

.faq .accordion-container .accordion .accordion-heading i{
  font-size: 2.5rem;
}

.faq .accordion-container .accordion .accordion-content{
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  border: var(--border);
  background: var(--white);
  border-top: 0;
  line-height: 2;
  display: none;
  animation: animate .2s linear backwards;
  transform-origin: top;
}


/* faq ends*/

/* contact */

.contact{
  background: #111933;
}

.contact .row{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact .row .image{
  flex: 1 1 30rem;
}

.contact .row .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact .row form{
  flex: 1 1 50rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.contact .row form .inputBox{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .row form .inputBox input,
.contact .row form .message input,
.contact .row form .message select,
.contact .row form textarea{
  padding: 1rem;
  margin: 1rem 0;
  font-size: 1.7rem;
  color: #111927;
  text-transform: none;
  border-radius: .5rem;
  width: 49%;
}
.contact .row form .inputBox input:focus,
.contact .row form .message input:focus,
.contact .row form .message select:focus,
.contact .row form textarea:focus{
  scale: 1.025;
}

.contact .row form .message input,
.contact .row form .message select{
  width: 100%;
}

.contact .row form textarea{
  width: 100%;
  height: 15rem;
  resize: none;
}
form .btn{
  text-align: right;
  justify-content: flex-end;
  
}

/* contact end */

.accordion-content a {
	color: #6366F1
}

/* footer start */
.copyright{
  font-size: 14px;
  text-align: center;
  padding: 20px;
  background-color: #242D46;
  color: #9CA3AF;
  margin-bottom: 0px;
}

/* footer ends */

/* media queries */

/*@media(max-width:991px) {

  html{
    font-size: 55%;
  }

  .header{
    padding: 2rem 4rem;
  }

  section{
    padding: 2rem;
  }
  
  .contact .image {
	  display: none;
  }
  
  .about .row .image img {
	  width: 300px;
	  height: 300px;
   }
   
   .about .row .image {
	   text-align: center;
   }

}*/

@media(max-width:900px){ /* 768px */
  .home{
    padding-top: 17rem;
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home .content{
    max-width: 100%;
	
  }
  .home .image img{
    width: 400px;
	
  }
  .home .image{
	display: flex;
	justify-content: center;
  }
  
  #menu-btn{
    display: inline-block;
  }
  
  .header .navbar{
    position: absolute;
    top: 100%;
    right: -100%;
    width: 250px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: top;
    background: #232C47;
    row-gap: 1rem;
    text-align: center;
    box-shadow: 2px 2px 15px rgb(15 54 55 / 10%);
    transition: all .4s ease;
  }

  .header .navbar.active{
    right: 2rem;
    transition: .4s linear;
  }

  .header .navbar a{
    display: block;
    margin: 1.3rem 0rem;
    font-size: 2rem;
    color: #FFFFFE;
  }

  .home{
    background-position: left;
  }

  .home .content h3{
    font-size: 3.5rem;
  }
  
  .heading{
    font-size: 3rem;
  }
  
  .home .content p{
    font-size: 2.5rem;
  }
  
  .home .image img{
    width: 350px;
  }
  
  .contact .image {
	  display: none;
  }
  
  .about .row .image img {
	  width: 200px;
	  height: 200px;
   }
   
   .about .row .image {
	   text-align: center;
   }
   
   .about .row .content p{
	  font-size: 12pt;
	}
	
	.contact .row form{
	  padding-left: 2rem;
	  padding-right: 2rem;
	}
}

@media(max-width:450px){

  /*html{
    font-size: 50%;
  }*/

  .home .image img{
    width: 300px;
  }
  
  .contact .image {
	  display: none;
  }
  
  .about .row .image img {
	  width: 100px;
	  height: 100px;
   }
   
   .about .row .image {
	   text-align: center;
   }
   
   .contact .row form{
	padding-left: 1rem;
	padding-right: 1rem;
	}

} 