@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Sans', sans-serif;
  font-family: "Poppins" , sans-serif;
  zoom: normal;
}

/*------
body{
  margin: 0;
  overflow-x: hidden;
}
----*/
body {
  margin: 0;
  overflow-x: hidden;
  background-image: var(--background-img);
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover; 
  background-repeat: no-repeat;
}


/*---------------Go back to top button-------------*/
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/*------------back to top buttom-------------------*/
#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}
/*----------------*/
.header{
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(Video/3d\ Printer\ Stock\ Footage\ -\ Background_1.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
}

.logo{
    height: 70px;
    width: 200px;
}

nav{
  width: 100%;
  position: absolute;
    top: 0;
    left: 0;
    display: flex;
    padding: 2% 2%;
    padding-top: 10px;
    justify-content: space-between;
    align-items: flex-start;
}
nav img{
    width: 200px;
    align-items: flex-start;
}
.nav-links{
    height: 100px;
    width: 100%; 
    padding: 18px;
}
.nav-links ul {
  list-style: none;
  text-align: right;
}
.nav-links ul li{
    position: relative;
    display: inline-block;
    margin: 0px;
    padding: 8px 12px;
}
.nav-links ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    display: block;
    text-align: end;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgba(30, 231, 238, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

/* Highlight the Gallery link */

#gallery-link {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(153deg, rgba(255,0,0,1) 0%, rgba(47,71,223,1) 50%, rgba(0,212,255,1) 100%);  /* Highlight color */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 60px;
}

.text-box h1::first-letter{
  color: #31A3D9;
}

.text-box p{
    margin: 10px 0 0px;
    font-size: 24px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 36px;
    border-radius: 60px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid rgba(30, 231, 238, 0.7);
    background: rgba(30, 231, 238, 0.7);
    transition: 1s;
}
#mini-fount{
  font-size: 18px;
  margin: 10px 0 40px;
  color: #fff;
  font-family: "Poppins" , sans-serif;
}

@media(max-width: 1600px){
  nav .fa{
    display: none;
  }

}

@media (max-width: 900px) {
  .text-box h1{
    font-size: 40px;
  }
  .text-box p{
    font-size: 18px;
  }
  .hero-btn{
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .text-box h1{
    font-size: 25px;
  }
  .logo{
    height: 70px;
    width: auto;
  }

  .nav-links ul li{
    display: block;
  }

  .nav-links{
    position: absolute;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
    background: rgba(193, 187, 187, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.4px);
    -webkit-backdrop-filter: blur(8.4px);
    border: 1px solid rgba(193, 187, 187, 0.3);

  }
  nav .fa{
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul{
    padding: 0px;
}
}

@media (max-width: 550px) {
  .nav-links ul li a {
    font-size: 15px;
  }

}
/* toggle switch  */
#icon{
  width: 30px;
  height: auto;
  cursor: pointer;
}

:root{
  --primary-color: #edfcfc;
  --secondary-color: #212121;
  --background-img: none;
  --review-bg: none; /*for review bg*/
}
.dark-theme{
  --primary-color: #212121;
  --secondary-color: #edfcfc;
  --background-img: url('Image/bg1-B.jpg');
  --review-bg:  #2828289e;  /*for review bg*/
}
/*------------Theme color Switching---------------*/
.serives h1, .title h1, .testimonials h1 {
  color: var(--secondary-color);
}
p, h3{
  color: var(--secondary-color);
}


/*-------------About Us----------------*/

.about{
  padding: 40px;
  padding-left: 90px;
  padding-bottom: 60px;
  background-color: black;
}

.about h1{
  font-size: 30px;
  color: white;
}

.about .about-title p{
  padding-left: 15px;
  font-size: 16px;
  color: white;
}

.about-btn{
  top: 15px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 15px 36px;
  border-radius: 60px;
  font-size: 18px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.about-btn:hover{
  border: 1px solid rgba(30, 231, 238, 0.7);
  background: rgba(30, 231, 238, 0.7);
  transition: 1s;
}

.border-about{
  width: 140px;
  height: 5px;
  background: #31a3d8;
  margin-bottom: 10px;
}

.about img{
  width: auto;
  height: 220px;
  float: right;
  display: block;
  margin: auto;
}



/*===========Slider Bar====Start========*/

.mySlides {
  display: none
}
img {
  width: auto;
  height: 400px;
  background-repeat: no-repeat;
  background-size: 100% 80%;
  vertical-align: middle;
}
.slideshow-container {
  top: 20px;  
  max-width: 1000px;
  position: relative;
  margin: auto;
  box-shadow: -20px 20px 26px rgba(0,0,0,0.3);
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(20, 182, 211);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: var(--secondary-color);
  text-shadow: -0.5px -0.5px 0 #919191, 0.5px -0.5px 0 #919191, -0.5px 0.5px 0 #919191, 0.5px 0.5px 0 #919191;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  /* font-family: 'Kalam', cursive; */
}
/* Number text (1/3 etc) */
.numbertext {
  color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  font-size: 22px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 36px;
  font-weight: bolder;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 2px 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active-1, .dot:hover {
  background-color: #00ffe5e1;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
@keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px
  }
}


/*---------------------------------------------*/






/*--------Features--------*/


.serives{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    /*
    background-color: #cfc6c6;   */
}
.serives-col{
  width:50%;
  margin-left: auto ;
  margin-right:auto ;
  flex-basis: 32%;
  border-radius: 10px;
  margin: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 5px 20px 5px #31A3D9;
  /* box-shadow: -10px 10px 35px rgba(0,0,0,0.3); */
}
.serives-col img{
  height: 200px;
  width: 150px;
  text-align: center;  
  padding: 15px;
  padding-top: 30px; 
}
.layer{
  background: #645f5f3d;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  border: 1px solid rgba(30, 231, 238, 0.7); 
  border-radius: 10px;
  box-shadow: 10px 5px 20px 5px #31A3D9;
}
.layer:hover{
    background: rgba(30, 231, 238, 0.7);
}


/*---------Process-------------*/

.process-details{
  width: 100px;
  height: 100px;
  border: 5px solid rgba(30, 231, 238, 0.7);
  border-radius: 50%;
  padding: 18px;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.process-details-1{
  width: 100px;
  height: 100px;
  border: 5px solid rgba(30, 231, 238, 0.7);
  border-radius: 50%;
  padding: 18px;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.process-details-2{
  width: 100px;
  height: 100px;
  border: 5px solid rgba(30, 231, 238, 0.7);
  border-radius: 50%;
  padding: 18px;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.process-details-3{
  width: 100px;
  height: 100px;
  border: 5px solid rgba(30, 231, 238, 0.7);
  border-radius: 50%;
  padding: 18px;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.title h1{
  font-size: 35px;
  text-align: center;
}

.pro-name{
  color: var(--secondary-color);
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
}

.border-pro-1{
  border: 5px solid rgba(30, 231, 238, 0.7);
  /*  border-radius: 5px;  */
  left: 100px;
  top: 10px;
  width: 275px;
  position: relative;
}
.border-pro-2{
  border: 5px solid rgba(30, 231, 238, 0.7);
  /*  border-radius: 5px;  */
  left: 100px;
  top: 10px;
  width: 275px;
  position: relative;
}
.border-pro-3{
  border: 5px solid rgba(30, 231, 238, 0.7);
  /*  border-radius: 5px;  */
  left: 100px;
  top: 10px;
  width: 275px;
  position: relative;
}
.border-pro-4{
  border: 5px solid rgba(30, 231, 238, 0.7);
  /*  border-radius: 5px;  */
  left: 100px;
  top: 10px;
  width: 275px;
  position: relative;
}

.process-details img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*- margin: 0 8px;  -*/
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.process-details-1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*- margin: 0 8px;  -*/
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.process-details-2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*- margin: 0 8px;  -*/
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.process-details-3 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*- margin: 0 8px;  -*/
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s ease;
}



.process-details:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(30, 231, 238, 0.7);
  z-index: -1;
}

.process-details:hover img {
  filter: grayscale(100%);
}

.process-details-1:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(30, 231, 238, 0.7);
  z-index: -1;
}
.process-details-1:hover img {
  filter: grayscale(100%);
}

.process-details-2:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(30, 231, 238, 0.7);
  z-index: -1;
}
.process-details-2:hover img {
  filter: grayscale(100%);
}

.process-details-3:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(30, 231, 238, 0.7);
  z-index: -1;
}
.process-details-3:hover img {
  filter: grayscale(100%);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  padding: 20px;
  padding-top: 35px;
  padding-left: 5%;
  padding-right: 5%;
}
.details-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  padding: 20px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 50px;
}

.por{
  background-color: #645f5f3d;
  padding: 20px;
  font-size: 16px;
  text-align: center;
  border: 1px solid rgba(30, 231, 238, 0.7);
  border-radius: 20px;
  box-shadow: -15px 15px 30px #31a4d991;
}

.por_2 {
  margin: 45px 25px 35px 20px;
  text-align: justify;
}

/*-------------------Review---------------------*/

.testimonials{
  padding: 20px 0;
  color: #000000;
  text-align: center;
}
.inner{
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.border{
  width: 160px;
  height: 5px;
  background: #31a3d8;
  margin: 26px auto;
}

.row{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.col{
  flex: 33.33%;
  max-width: 55vh;
  box-sizing: border-box;
  padding: 15px 15px 35px 15px;
}
.testimonial{
  background: var(--review-bg);
  padding: 30px;
  border: 1px solid rgba(30, 231, 238, 0.7);
  border-radius: 20px;
  box-shadow: -5px 3px 20px rgba(0,0,0,0.3);
  box-shadow: 10px 5px 20px 5px #31A3D9;
  height: 80vh;
}
.inner p{
  font-size: 14px;
}
.testimonial img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.name{
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
  color: var(--secondary-color);
}
.stars{
  color: #31a3d8;
  margin-bottom: 20px;
}


@media screen and (max-width:960px) {
.col{
  flex: 100%;
}
}

@media screen and (max-width:600px) {
.col{
  flex: 100%;
  max-width: 60vh;
}
.testimonial{
  height: 45vh;
}
}

/*----------------------Auto Scroll in Testimonials----------------------------*/

img#review-box {
  height: 160px;
}

.scroller {
  max-width: 100%;
}

.scroller__inner {
  padding-block: 0rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  height: 90vh;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 50s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
@media screen and (max-width:600px) {
  .scroller[data-animated="true"] .scroller__inner {
    height: 50vh;
  }
}


/*-------------Industry Revolution 4.0--------------*/

.industry img{
  height: 380px;
  width: 1366px;
}

.revolution{
  position: relative;
}

.industry p{
  position: absolute;
  text-align: center;
  bottom: 5px;
  left: 50px;
  color: #c1c1c1;
}


.industry h3{
  text-transform: uppercase;
  font-weight: bolder;
  font-family: 'Teko', sans-serif;
  font-size: 60px;
  text-align: center;
  margin: 0;
  left: 38%;
  background: linear-gradient(0deg, rgba(49,163,217,1) 0%, rgba(49,163,217,0) 0%, rgba(49,163,217,1) 45%, rgba(255,255,255,1) 100%); 
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text; 
  position: absolute;
}

@media only screen and (min-width: 900px) {
  .industry img{
    width: 100%;
  }

}

@media only screen and (min-width: 600px) {
  .industry img{
    width: 100%;
  }

}

@media only screen and (min-width: 400px) {
  .industry img{
    width: 100%;
  }

}

/*---------------Footer-----------------*/

footer{
  background: #000000;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 0px;
}
footer::before{
  content: '';
    /*  position:absolute;   */
  left: 0;
  top: 2410px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .content{
  max-width: 1490px;
  margin: auto;
  padding: 10px 0px 5px 0px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;

}

.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #000000;
}
.top .media-icons a:nth-child(1):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(2){
  background: #000000;
}
.top .media-icons a:nth-child(2):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(3){
  background: #000000;
}
.top .media-icons a:nth-child(3):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(4){
  background: #000000;
}
.top .media-icons a:nth-child(4):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(5){
  background: #000000;
}
.top .media-icons a:nth-child(5):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(6){
  background: #000000;
}
.top .media-icons a:nth-child(6):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
.top .media-icons a:nth-child(7){
  background: #000000;
}
.top .media-icons a:nth-child(7):hover{
  color: #fff;
  background: linear-gradient(45deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  
  background:linear-gradient(80deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 20%, rgba(31,246,238,1) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #a4aeb1;;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
  
}
.content .link-boxes .box li a::after{
  content: "";
  position: absolute;
  background-color: #31a3d8;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
}
.hover-footer{
  display: inline-block;
  padding-bottom: 0.25rem;
}

.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #000000;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: linear-gradient(80deg, rgba(15,17,233,1) 0%, rgba(49,163,217,1) 50%, rgba(31,246,238,1) 100%);
  color: #000000;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #000000;
}
footer .bottom-details .bottom_text{
  max-width: 1500px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #a1a6a7;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
  color: #edefef;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
    padding-left: 40px;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
  footer .content .top {
    margin-left: 50px;
  }
}
@media (max-width: 700px){

  footer{
    position: relative;
    padding: 10px;
  }


.content .link-boxes .box li a{
  color: #77c7db;
} 
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
    padding: 20px;
  }
  footer .content .link-boxes .input-box{
    width: 70%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

.content img {
  height: 70px;
  width: 180px;
  align-content:stretch;   
}


#preloader{
  background: #000000 url(Image/loader1.gif) no-repeat center center;
  /* background-size: 20%; */
  height: 125%;
  width: auto;
  position: fixed;
  z-index: 100;
}

/*------Scoial Media Links----*/
.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.icon-bar a {
  text-decoration: none;
  width: 157px;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  padding-right: 7px;
  font-size: 16px;
  transform: translateX(-110px);
  -webkit-transform: translateX(-110px);
  -ms-transform: translateX(-110px);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  position: relative; /* Ensure a positioning context for pseudo-element */
}

/* Pseudo-element for click-through and hover effects */
.icon-bar a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks to pass through */
  z-index: -1; /* Place behind the text content */
}


.facebook {
	background: #3b5998;
}

.twitter {
	background: #0053ed;
}

.instagram {
	background: #ee2954;
}

.youtube {
	background: #cd201f;
}

.linkedin {
	background: #0077B5;
}


.icon-bar a i {
	padding-left: 20px;
	font-size: 30px !important;
	animation: letszoom 3s linear alternate-reverse infinite;
}

@keyframes letszoom {
	from {
		transform: scale(0.8);
	}

	to {
		transform: scale(1);
	}

}

a:hover {
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
}

@media (max-width: 800px){
  .icon-bar a{
    /* font-size: 12px;
    padding: 5px;
    padding-right: 7px; */
    display: none;
  }
}
@media  (max-width: 400px){

}

/*Responsive For Mobile & Table*/


@media only screen and (min-width: 900px) {
  .header{
    height: 100vh;
    background-position: center;
  }
  
}
@media (max-width: 1015px){
  .slideshow-container {
    width: 90%;
  } 
}

@media (max-width: 900px){
  .about img{
    padding: 25px;
    padding-right: 0px;
  }
  .about h1{
    font-size: 25px;
  }
  .about .about-title p{
    font-size: 12px;
    text-align: justify;
  }
  .about-btn{
    padding: 8px 25px;
    font-size: 14px;
  }
  .slideshow-container {
    /* margin-left: 50px;
    margin-right: 40px; */
    width: 85%;
  }
  .serives {
    width: 100%;
  }
  .serives h1 {
    font-size: 35px;
  }
  .serives h3{
    padding: 10px;
    padding-top: 2px;
    text-align: center;
    font-size: 16px;
  }
  .title h1 {
    padding-top: 30px;
  }
  .pro-name {
    font-size: 18px;
    top: 10px;
    position: relative;
    font-weight: 500;
  }
  .border-pro-1 {
    top: 18px;
    width: 200px;
    left: 95px;
    border-radius: 5px;
  }
  .border-pro-2{
    width: 200px;
    border-radius: 5px;
    left: 95px;
    top: 35px;
  }
  .process-details-1 {
    top: 20px;
  }
  .det-1-2 p{
    top: 30px;
    position: relative;
  }
  .border-pro-3 {
    width: 200px;
    border-radius: 5px;
    left: 97px;
    top: 35px;
  }
  .process-details-2 {
    top: 18px;
  }
  .det-2-1 p{
    top: 25px;
    position: relative;
  }
  .det-2-2{
    top: 24px;
    position: relative;
  }
  .border-pro-4 {
    left: 97px;
    width: 181px;
    top: 25px;
    border-radius: 5px;
  }
}


@media (max-width: 700px) {

  #preloader{
    height: 200vh;
  }

  .header{
    height: 100vh;
    background-position: center;
  }

/*about us page*/
  .about{
    padding-left: 20px;
  }
  .about h1{
    font-size: 28px;
  }
  .about .about-title p{
    padding-left: 14px;
    
  }
  .about img{
    height: 130px;
    /* width: 150px; */
    bottom: 30px;
    display: block;
    float: right;
    padding: 5px;
    margin-top: 85px;
  }
  .about-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
/*Slide Show */
.mySlides{
  display: none;
}
.slideshow-container { 
  max-width: 900px;
}
img {
  width: auto;
  height: 280px;
  background-size: 100% 70%;
}


/*--------Features--------*/
.serives{
  width: 100%;
  padding-top: 30px;
}

.serives-col img{
padding: 35px;
padding-top: 70px; 
}
/*Process*/
.details {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
  padding: 15px;
}
.details-1{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 20px;
  padding: 15px;
}
.title h1{
  font-size: 22px;
  text-align: center;
}
.pro-name{
  font-size: 18px;
}


.border-pro{
  border: 5px solid rgba(30, 231, 238, 0.7);
  border-radius: 5px;
  left: 96px;
  top: 18px;
  width: 275px;
  position: relative;
}

/*Testimonials*/

.testimonials .row {
  display: contents;

}

/*Industru revo. 4.0*/
.industry p{
  text-align: center;
  bottom: 5px;
  left: 3px;
  font-size: 13px;
  padding: 10px;
}
.industry h3{
  font-size: 40px;
  
}

}


@media (max-width: 550px){
.row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process {
  padding-left: 18px;
  padding-right: 5px;
}
.por_2 {
  margin: 45px 5px 35px 5px;
}



}

@media (max-width: 400px) {

.aos-animate {
  -o-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -webkit-transition-property: none !important;
  transition-property: none !important;

  -o-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -webkit-transform: none !important;
  transform: none !important;

  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
}  
#title1{
  top: 0px;
}
.scroller[data-animated="true"] .scroller__inner{
  height: 70vh;
}
.testimonial{
  height: 64vh;
}

.text-box p {
  font-size: 13px;
  margin-left: 30px;
}
.text-box h1 {
  font-size: 21px;
  margin-left: 30px;
}
.about h1 {
  font-size: 20px;
}
.about {
  padding: 30px 20px 30px 50px;
}
.about .about-title p {
  padding-left: 14px;
  margin: 10px;
  width: 300px;
}
.numbertext {
  font-size: 20px;
}
.text {
  font-size: 12px;
  color: black;
}
.serives h1 {
  font-size: 25px;
}
.serives p {
  font-size: 14px;
}
.row {
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.about img {
  margin-top: 4vh;
}
.serives-col.aos-init.aos-animate {
  margin: 20px;
}
.process {
  padding-left: 30px;
  padding-right: 10px;
}

.title h1 {
  font-size: 25px;
}
.details p {
  font-size: 14px;
}
.details-1 p {
  font-size: 14px;
}
.border-pro-3 {
  top: 20px;
}
.pro-name {
  top: 10px;
  left: 10px;
}
#na_1 {
  top: 0px;
}
.border-pro-1 {
  top: 0px;
  width: 150px;
}
.border-pro-2 {
  width: 150px;
}
.border-pro-3 {
  width: 150px;
}

.industry h3 {
  font-size: 27px;
  top: 95px;
}
.industry p {
  font-size: 10px;
}
footer .content .top {
  margin: 10px;
}
footer .content .link-boxes {
  padding-left: 25px;
}
.industry img {
  height: 360px;
}
.border-pro-2 {
  top: 20px;
}

}
