
/* 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: 0px 30px;
    font-size: 1rem;
    color: var(--grey);
    transition: 250ms;
}

header ul li a:hover{
    color: var(--blue-dark);
}

@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%;
	}
}

/* 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/about.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%;
     }
   
   }

@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;
       

    }
}

/* second content(3 team)  */

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Roboto',sans-serif;
}

.container-about{
    width: 90%;
    margin: 2% auto 70px;
    padding: 10px 20px;

}

.about{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.about-image{
    flex: 1;
	margin-right: 40px;
	overflow: hidden;
}

.about-image img{
    max-width: 100%;
	height: 150%;
	display: block;
	transition: 0.5s ease;
}

.about-image:hover img{
	transform: scale(1.2);
}

.about-content{
	flex: 1;
}
.about-content h1{
    font-size: 32px;
}
.about-content p{
	font-size: 20px;
	line-height: 1.5;
	color: #666;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    /* .container{
		padding: 30px;
	} */
	.about{
		padding: 20px;
		flex-direction: column;
	}
	.about-image{
		margin-right: 0px;
		margin-bottom: 20px;
	}
    .about-content h1{
        width: 120%;
        font-size: 24px;
    }
	.about-content p{
		padding: 0px;
		font-size: 16px;
	}
	/* .container-t{
		padding: 30px;
		height: 150vh;
	} */
    .container-t .image img{
		width: 100%;
		height: 100%;
	}
   
	
}

/* who are we start css */

*{
    box-sizing: border-box;
}
/* 
body{
    height: 100vh;
    margin: 0;
    padding: 0;
 
    display: flex;
    flex-direction: column;
} */

.container-w{
    width: 100%;
    margin-top: 10%;
    height: 100%;
    background-image: url(../img/blackcrystal.jpg);
    padding: 4rem 5rem;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.textblock{
    width: 45%;
    font-family: "poppins",sans-serif;
}

.textblock .title{
    text-transform: uppercase;
    color: #fff;
    margin: 20px;
    font-size: 3.2rem;
    font-weight: 600;
}

.textblock p{
    color: #fff;
    margin-bottom: 1.3rem;
	font-size: 18px;
}

.container-w img{
   position: absolute;
   top: -10%;
   right: 5%;
   bottom: 15%;
   box-shadow: 5px 4px 10px rgba(37, 37, 37,0.5);
   width: 30%;
   height: 80%;
   border-radius: 3%;
   margin-right: 80px;
}

@media only screen and (max-width:768px){
    .container-w{
       width: 100%;
	   height: 145%;
	   /* margin-top: 200px; */
    }
    .textblock .title{
        font-size: 30px;
    }
    .container-w .textblock p{
		font-size: 15px;
	}
    .container-w .textblock{
         width: 100%;
    }
    .container-w img{
        display: none;
    }
} 
/* who are we end css */

/* Employee value Proposition css start */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    background-color: #f0f0f0;
}
/* *{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
} */
.wrapper-about {
	padding: 5px;
	max-width: 1200px;
	width: 100%;
	margin: 40px auto;
 
}

.header-about h1{
	padding: 0 15px;
	/* text-align: center; */
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
}

.header-about p{
	font-size: 20px;
}
.columns-about{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}

.column-about h1{
	font-size: 24px;
}

.column-about p{
	font-size: 18px;
}
.column-about{
	flex: 1;
	/* border: 1px solid #666; */
	margin: 2px;
	padding: 10px;
	/* background: #3af4d5; */
	transition: 0.3s;
}

/* .column:first-child{
	margin-left: 0;
	background: #ff307f;
}

.column:last-child{
	margin-left: 0;
	background: #7f95d1;
} */

@media screen and (max-width: 980px){
    .header-about h1{
        font-size: 25px;
    }
    .header-about p{
        font-size: 16px;
    }
	.columns-about .column-about{
		margin-bottom: 5px;
		flex-basis: 40%;
	}
	.columns-about .column-about:last-child{
       flex-basis: 100%;
	   margin: 0;
	}
	.columns-about .column-about:last-child{
		margin-right: 0;
	}
}

@media screen and (max-width: 680px){
	.columns-about .column-about {
		flex-basis: 100%;
		margin: 0 0 5px 0;
	}
}
/*  Employee value Proposition css end */


/* vns work start */
 .container-sm{
    min-height: 60vh;
    display: flex;
    justify-content: center;
    background-image: url(../img/blue1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	height: 70%;
    margin: 30px 0px;

} 

#content h1{
    margin: 10px 30%;
    font-size: 42px;
    color: white;
    text-transform: uppercase;
}

#content p{

    font-size: 18px;
    color: white;
    margin: 10px 30%;
    text-transform: capitalize;
}


@media screen and (max-width: 768px){
	.container-sm{
		width: 100%;
		/* height: 2400%; */
	}
    #content h1{
        /* width: 140%; */
        margin: 10px 20px;
        font-size: 28px;
    }
    #content p{
        /* width: 140%; */
        margin: 10px 20px;
       font-size: 18px;
    }
}

/* vns work end */


/* text animation effect css */
 
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-title {

    font-size: 3.5rem;
    position: relative; 
    opacity: 0; 
}

.about-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;
    }
} */
