
/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --white-color: #fff;
    --dark-color: #222;
    --body-bg-color: #fff;
    --section-bg-color: #202834;
    --navigation-item-hover-color: #3b5378;

    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);

    --scroll-bar-color: #fff;
    --scroll-thumb-color: #282f4e;
    --scroll-thumb-hover-color: #454f6b;

	--grey:rgb(163, 163, 163);
	--blue-dark: rgb(10, 132, 255);
	--blue-light: rgb(0, 122, 255);
	
}

body{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;

}
body.hidden-scrolling{
	overflow-y: hidden;
}

ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}

.header .nav-menu{
	padding: 0 5px;
}
.header .menu > .menu-item{
	display: inline-block;
	/* margin-left: 10px; */
	position: relative;
	/* margin-top: 30px; */
	/* margin-right: 40px; */
}
.header .menu > .menu-item > a{
	display: block;
	padding: 0px 10px;
	font-size: 18px;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #e91e63;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #fff;
    position: relative;
	/* align-items: right; */
	/* margin-left: 20px;*/
	margin-top: 40px; 
	margin-right: 10px;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
    height: 600px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

/* style.css end */

/* style1.css */
header{
    z-index: 999;
    position: fixed;
    width: 100%;
    height: calc(6rem + 2rem);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

header .nav-bar{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    transition: 0.3s ease;
}

img{
  max-width: 100%;
  overflow: hidden;
  background-size: cover;
}

.vnslogo {
  width: 75px;
  margin-left: 10%;
}

.navigation .nav-items a {
    color: var(--white-color);
    font-size: 1em;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}

.navigation .nav-items a i{
    display: none;
}

.navigation .nav-items a:not(:last-child) {
    margin-right: 45px;
}

.home{
    min-width: 100vh;
}


@media screen and (max-width: 1100px) {
  .vnslogo{
  width: 70px;
  margin-top: 35px;
  margin-left: 10%;
}
}


@media screen and (max-width: 785px) {
.vnslogo{
  width: 55px;
  margin-top: 30px;
  margin-left: 5%;
}
}





/* index.css start
 */


header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    transition: 250ms;
    z-index: 2;
}

.nav-links{
position: absolute;
right: 0;
top: 5vh;
width: 60%;
height: 70vh;
background: #000;

display: none;
flex-direction: column;
justify-content: center;
align-items: center;
animation: menu_animation 500ms ease-in-out;
}

.show-navlinks{
    display: flex;
}

@keyframes menu_animation{
    from{
           opacity: 0;
           transform: translateX(100%);

    }to{
           opacity: 1;
           transform: translateX(0%);
    }
}

.logo{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    transition: 250ms;
}

header ul li{
    list-style: none;
    /* margin: 20px 0; */
}

header ul li a{
    text-decoration: none;
    padding: 10px 30px;
    font-size: 1rem;
    color: var(--grey);
    transition: 250ms;
}

header ul li a:hover{
    color: var(--blue-dark);
}

/* sticky navbar */

.sticky{
    background: #000;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.123);
    backdrop-filter: blur(20px);
}
.sticky a{
    color: grey;
}
.sticky .logo{
    color: var(--blue-dark);
}

.sticky li a:hover{
    color: var(--blue-light);
}

.featured{
     width: 100%;
	   /* padding: 100px; */
     height: 80vh;
     background-image: url(../img/laptop9.jpg);
     background-color: #000;
     background-size: cover; 
     background-position: center;
     background-size: cover;
	   object-fit: cover;
     color: white;
     display: inline-block;
     /* flex-direction: column;
     justify-content: center;
     align-items: center;*/
} 


.title p{
  width: 70%;
  font-size: 80px;
  color: #fff;
  font-weight: 600;
  /* margin-right: 77.5%; */
  margin-top: 30vh;
  margin-left: 10%;
  /* align-items: center;
  text-align: center; */
 } 
 
 .divider{
     border-color: #155fac;
     width: 80px;
     border-bottom-width: 5px;
     border-bottom-style: solid;
     margin-top: 20px;
     margin-left: 10%;
 }
 
 @media (max-width: 991px) {
   .featured{
    height: 50vh;
   }
   .title p{
     width: 90%;
     margin-top: 45%;
     margin-left: 10%;
     font-size: 30px;
   }
   .divider{
     margin-left: 10%;
   }
 
 }

/* overview css start  */

.all_rows{
  content: "";
  display: table;
  clear: both;
  margin-top: 5%;
}
.all_columns{
  float: left;
  width: 28%;
  padding: 12px;
  min-height: 350px;
  /* border: 1px solid; */
  text-align: start;
  margin-left: 7vh;
  margin-top: 1%;
}

.all_columns a{
  text-decoration: none;
  color: #000000;
  text-transform: capitalize;
  font-size: 20px;
}

.functions-title h2{
font-size: 48px;
font-weight: 300;
color: #5b338c;
}
.overview-link i{
font-size: 20px;
margin-top: 2%;
}
.overview-link p{
font-size: 20px;
}

.all_columns_1{
  float: left;
  width: 60%;
  padding: 20px;
  min-height: 350px;
  /* border: 1px solid; */
  text-align: start;
}

.overview-gif{
width: 14%;
}

.all_columns_1 h2{
   font-size: 44px;
   font-weight: 500;
   color: #343434;
   margin-bottom: 5%;
}
/* .all_columns_1 h6{
  font-size: 22px;
  margin: 0px;
  color: #535353;
font-weight: 500;
} */
.para1 p{
  font-size: 20px;
  margin-top: 1%;
  color: #3f403f;

}

@media(max-width:991px){
.functions-title h2{
  width: 250%;
  font-size: 32px;
  font-weight: 500;
}
.overview-link p{
  width: 300%;
  font-size: 18px;
  
}

.overview-gif{
    width: 90px;
    margin-left: 35px;
}
.all_columns_1 h2{
  width: 170%;
  font-size: 25px;
  margin-left: 35px
}
/* .all_columns_1 h6{
  width: 150%;
  font-size: 18px;
  margin-left: 20px
} */
.para1 p{
  width: 170%;
  font-size: 16px;
  margin-left: 35px;
  margin-top: 5%
  }

}

/* overview css end  */

/* services start( we match) start css */

*{
  box-sizing: border-box;
}
/* 
body{
  height: 100vh;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
} */

.container-w{
  width: 100%;
  margin-top: 80px;
  height: 680px;
  background-image: url(../img/navyblue.jpg);
  padding: 4rem 5rem;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-title{
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

.textblock{
  width: 50%;
  font-family: "poppins", sans-serif;
}

.function-content h2{
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
  display: inline-block;
}


.function-content p{
  /* margin-bottom: 1.3rem; */
  font-size: 16px;
  color: #fff;
}


.container-w img{
  width: 30%;
  height: 60%;
  border-radius: 3%;
  margin-right: 80px;
 position: absolute;
 top: -10%;
 right: 5%;
 bottom: 15%;
 box-shadow: 5px 4px 10px rgba(37, 37, 37,0.5);
}

@media only screen and (max-width:768px){
  .container-w{
   width: 99%;
   height: 100%;
   padding: 2rem;
   /* margin-top: 200px; */
  }
  .function-content h2{
    font-size: 1.4rem;
  }
  .function-content p{
    font-size: 16px;
  }
  .container-w .textblock{
       width: 100%;
  }
  .container-w img{
      display: none;
  }
}  
/*services ( we match) end css */

/* our blogs start */
/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.blog-title h2{
  font-size: 42px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
.blog {
  display: flex;
  padding: 50px 35px;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
}
.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
}
.wrapper i {
  top: 30%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  /* height: 342px; */
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  /* background: #8B53FF; */
  height: 100%;
  width: 100%;
  /* border-radius: 50%; */
}
.card .img img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 22px;
  margin: 10px 0 5px;
}
.carousel .card p {
  color: #6A6D78;
  font-size: 14px;
}
.carousel .card a{
  background-color: #155fac;
  color: white;
  text-align: center;
  text-decoration: none; 
  display: inline-block;
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  margin: 14px;
  cursor: pointer; 
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
/* our blog css end  */


@media screen and (min-width:700px) {
    .sticky a{
       color: black;  
    }

    .logo{
        font-size: 22px;
    }
    .featured{
        justify-content: center;
        align-items: flex-end;
    }

    .h1{
        padding: 20px;
       

    }
}


/* text animation effect css */
/*  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.automotive-title {

  font-size: 3.5rem;
  position: relative; 
  opacity: 0; 
}

.automotive-title:not(#dot) {
  right: -200px;
  animation-name: appear; 
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes appear {
  0% {
      opacity: 0; 
      right: -200px;
  }
 

 70% {
      opacity: 1; 
      right: 15px;
  }

  85% {
      opacity: 1;
      right: -10px;
  }

  100% {
      opacity: 1; 
      right: 0;
  }
} */
