
/* 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: 314px;
	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;

}
.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;
}

.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);
}

/* 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: 90vh;
     background-image: url(../img/about.jpg);
     background-color: #000;
     background-size: cover; 
     background-position: center;
     background-size: cover;
	 object-fit: cover;
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
	 
}

.featured h1{
    font-size: 55px;
    color: #fff;
	font-weight: 600;
	margin-right: 77.5%;
	margin-top: 20vh;
	align-items: center;
	text-align: center; 
} */



@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;
       

    }
}

