
/* 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/engg22.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;
}

.overview-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: 12%;
}

.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){
  .overview-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: 150%;
    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  */


/* why partner with us css start*/


  /* body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  } */
  .partner-heading h1{
    margin-top: 20px;
    font-size: 42px;
    font-weight: 500;
    /* letter-spacing: 0px; */
    align-items: center;
    text-align: center;
    text-transform: uppercase;
  }
    .container-globally {
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      width: 100%;
      /* background-color: rgba(0, 0, 0, 0.8); */
  
      /* margin: 0 auto;
      padding: 20px; */
    }
  
    .box-globally {
      position: relative;
      flex: 1;
      overflow: hidden;
    }
  
    .images {
      width: 100%;
      height: 80%;
      display: block;
   
    }
  
    .text-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 80%;
      background-color: rgba(0, 0, 0, 0.8);
      color: white;
      display: flex;
      flex-direction: column;
      /* justify-content: center;
      align-items: center; */
      /* opacity: 0; */
      /* transition: opacity 0.3s ease; */
    }
  
    .text-overlay h3{
      margin: 10%;
    
      font-size: 28px;
    }
    
    .text-overlay p{
      /* margin: 5px 40px; */
      margin-left: 50px;
      /* margin-top: 10px; */
      font-size: 20px
    }
  
    /* .box:hover .text-overlay {
      opacity: 1;
    } */
  
  @media (max-width: 991px) {
  
      .partner-heading h1{
       font-size: 32px;
       /* margin-left: 60px; */
      }
      .container-globally {
        width: 100%;
        flex-direction: column;
        align-items: center;
      }
  
      /* .box-globally {
        margin-bottom: 20px;
      } */
      .text-overlay{
      height: 100%;
      }
      
      .text-overlay h3{
        font-size: 24px;
        margin-left: 50px;
      }
      .text-overlay p{
        
          font-size: 18px;
      }
    }
  
    /* @media screen and (max-width: 1100px) {
      .text-overlay h3{
           font-size: 35px;
      }
      .text-overlay p{
        font-size: 25px;
      }
    } */
  

/* why partner with us 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;
}

.title {

  
    font-size: 3.5rem;
    position: relative; 
    opacity: 0; 
}

.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;
    }
} */
