@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,600,700|Open+Sans:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light');

@import url("../revolution/css/settings-5.4.6.6.css");
*{
	margin: 0; padding: 0;
}
body{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #636363;
    line-height: 24px;
}
p{
	text-align: justify;
}
.h1, .h2, .h3, .h4, .h5, .h6{
	font-family: 'Josefin Sans', sans-serif;
	color: #2b2b2b;
	font-weight: 700;
}
.h1, h1 {
    font-size: 2.5em;
}
.h2, h2 {
    font-size: 2em;
}
.h3, h3 {
    font-size: 1.75em;
}
.h4, h4 {
    font-size: 1.5em;
}
.h5, h5 {
    font-size: 1.25em;
}
.h6, h6 {
    font-size: 1em;
}
a, .btn, button{
    font-weight: 600;
	cursor: pointer;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
ul, ol{
	list-style: none;
	margin: 0;
}
::-moz-selection {
	background-color: #2AA4D7;
	color: #fff;
}
::-webkit-selection {
	background-color: #2AA4D7;
	color: #fff;
}      
::selection {
	background-color: #2AA4D7;
	color: #fff;
}

/*------------------------------------------------------------------
  helper styles
-------------------------------------------------------------------*/
.no-padd{
	padding: 0;
}

/* Text Classes */
.text-large{
	font-size: 1.68em;
}
.text-medium{
	font-size: 1.4em;
}
.text-small{
	font-size: 1.167em;
}

/* Font Weight Classes */
.font-light{
	font-weight: 300;
}
.font-regular{
	font-weight: 400;
}
.font-semi-bold{
	font-weight: 500;
}
.font-bold{
	font-weight: 700;
}

/*------------------------------------------------------------------
  link styles
-------------------------------------------------------------------*/
a{
	color: #636363;
}
a:hover, a:focus{
	color: #2AA4D7;
}
a:hover, .btn:hover, button:hover{
	text-decoration: none;
}
a:focus, .btn:focus, button:focus, 
.navbar-toggler:not(:disabled):not(.disabled):focus, 
.page-link:focus{
    outline: none;
    box-shadow:  none;
}

/*------------------------------------------------------------------
  parallax styles
-------------------------------------------------------------------*/
.ngs-overlay{
	position: relative;
}
.ngs-overlay::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
}
.ngs-parallax{
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -ms-background-size: cover;
	-o-background-size: cover;
}

/*------------------------------------------------------------------
  form styles
-------------------------------------------------------------------*/
.form-control{
	font-family: 'Open Sans', sans-serif;
    border-radius: 0;
    color: #2b2b2b;
}
.form-control::placeholder, ::placeholder{
    font-family: 'Open Sans', sans-serif;
    color: #636363;
}
.form-control:focus {
    color: #2b2b2b;
    border-color: #2AA4D7;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
}

/*------------------------------------------------------------------
  button styles
-------------------------------------------------------------------*/
.btn{
    border-radius: 0;
    color: #fff;
    border: 0;
}
.ngs-btn{
	display: inline-block;
    font-size: 14px;
    padding: 7px 20px 8px;
	background-color: #636363;
	color: #fff;
}
.ngs-sm-btn{
    font-size: 12px;
    padding: 5px 17px 6px;
}
.ngs-more-btn{
    padding: 12px 40px;
    letter-spacing: 0.1em;
	background-color: #fff;
    color: #636363;
    font-weight: 600;
    font-size: 12px;
}
.ngs-hover-bounce-btn{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.ngs-hover-bounce-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2AA4D7;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.ngs-hover-bounce-btn:hover:before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.ngs-hover-bounce-btn:hover, .ngs-hover-bounce-btn:focus{
    color: #fff;
}
.ngs-hover-bounce-btn:focus:before{
    background-color: #2AA4D7;
    color: #fff;
}
/*------------------------------------------------------------------
  page styles
-------------------------------------------------------------------*/
.ngs-page-wrapper{
	position: relative;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}
.ngs-section{
	padding: 5em 0;
}
.ngs-resp-section{
	padding: 5em 0 3.5em;
}


/*------------------------------------------------------------------
  header styles
-------------------------------------------------------------------*/
.ngs-header{}
.ngs-top-bar{
	background-color: #f1f1f1;
	font-size: 13px;
}
.ngs-header-info{}
.ngs-header-info span{
	padding: 10px 0;
}
.ngs-header-info a{
	margin-left: 12px;
}
.ngs-header-social{}
.ngs-header-social a{
	display: inline-block;
	padding: 10px 7px;
}


/*------------------------------------------------------------------
  nav styles
-------------------------------------------------------------------*/
.ngs-nav{
	background-color: #fff;
	padding: 0px;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.ngs-nav-2{
	background-color: transparent;
    box-shadow: 0px 60px 50px -10px rgba(255, 255, 255, 0.5) inset;
}
.ngs-home-nav{
    box-shadow: none;
}
.isFixed.ngs-nav-2{
	background-color: #fdfdfd;
	box-shadow: 0px 2px 6px rgba(0,0,0,.25);
    animation: fadeInDown 1s;
}
.navbar-dark .navbar-toggler {
    color: #2b2b2b;
    border: 0;
	border-radius: 0;
}
.ngs-nav .dropdown-toggle::after {
	display: inline-block;
	border: 0;
	margin-left: 0;
	width: auto;
}
.ngs-nav.navbar-dark .navbar-nav .nav-link{
    color: #636363;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
}
.ngs-nav.navbar-dark .navbar-nav .active > .nav-link, 
.ngs-nav.navbar-dark .navbar-nav .nav-link.active, 
.ngs-nav.navbar-dark .navbar-nav .nav-link.show, 
.ngs-nav.navbar-dark .navbar-nav .show > .nav-link{
	background-color: transparent;
    color: #1e4399;
	font-weight: 700;
}
.ngs-nav.navbar-dark .navbar-nav .nav-link:focus, 
.ngs-nav.navbar-dark .navbar-nav .nav-link:hover, 
.ngs-nav.navbar-dark .navbar-nav .nav-item:hover .nav-link{
    color: #1e4399;
}
.affix{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
	box-shadow: 0px 2px 6px rgba(0,0,0,.25);
}

#ngs-menu .dropdown-menu{
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background-color: #2b2b2b;
	border-bottom: 5px solid #1e4399;
	transition: all .4s ease;
	-moz-transition: all .4s ease;
	-webkit-transition: all .4s ease;
}
#ngs-menu .dropdown-item{
	color: #fff;
	font-size: 12px;
	padding: 10px 20px;
	text-transform: uppercase;
}
#ngs-menu .dropdown-item + .dropdown-item{
	border-top: 1px dotted #575757;
    -webkit-border-top: 1px dotted #575757;
    -moz-border-top: 1px dotted #575757;
}
#ngs-menu .dropdown-item:hover, #ngs-menu .dropdown-item.active, 
#ngs-menu .dropdown-item:active {
	background-color: #1e4399;
	color: #fff;
}

/*------------------------------------------------------------------
  banner styles
-------------------------------------------------------------------*/
.ngs-banner{
	position: relative;
}
.ngs-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .0);
}

/*------------------------------------------------------------------
  services styles
-------------------------------------------------------------------*/
.ngs-service-box{
    padding: 20px;
    margin: 0 -20px;
    transition: all .3s ease;
}
.ngs-service-box:hover{
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.25);
}
.ngs-services{
	position: relative;
	background-image: url(../images/bgs/services-ban.jpg);
	background-attachment: fixed;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}
.ngs-services::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, .75);
}
.ngs-service-icon{
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	font-size: 2em;
	border-radius: 50%;
	background-color: #1e4399;
	color: #fff;
    transition: all .3s ease;
}
.ngs-service-box:hover .ngs-service-icon{
    transform: rotateY(360deg);
}

/*------------------------------------------------------------------
  features styles
-------------------------------------------------------------------*/
.ngs-feature-box{
	position: relative;
	padding: 4em 3em 3em;
	color: #7c7c7c;
}
.ngs-feature-box .mdi{
	font-size: 4em;
	color: #abacb1;
    margin-bottom: 35px;
}
.ngs-feature-box .h4{
	color: #fcfcfc;
}
.dark-bg-1{
	background-color: rgba(255,125,1,1);
	background-color: rgba(43,43,43,1);
}
.dark-bg-2{
	background-color: rgba(43,43,43,.95);
}
.dark-bg-3{
	background-color: rgba(43,43,43,.9);
}


/*------------------------------------------------------------------
  works styles
-------------------------------------------------------------------*/
.ngs-works{
	padding: 5em 0 0;
    display: none;
}
.ngs-work-box{
	position: relative;
	overflow: hidden;
}
.ngs-work-box:hover{
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.ngs-work-pic{
	position: relative;
	overflow: hidden;
}
.ngs-work-pic a::before{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(43,43,43,.7);
	opacity: 0;
}
.ngs-work-box:hover .ngs-work-pic a::before{
	opacity: 1;
}
.ngs-work-box:hover .ngs-work-pic img{
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
}
.ngs-work-text{
	position: absolute;
	z-index: 5;
	left: 0px;
    bottom: -90px;
	width: 100%;
	background-color: #fff;
	padding: 1em;
}
.ngs-work-box:hover .ngs-work-text{
    bottom: 0px;
}
.ngs-work-link{
	position: absolute;
	top: 25px;
	right: 20px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #2b2b2b;
	color: #fff;
	border-radius: 50%;
}
.ngs-work-link:hover{
	background-color: #1e4399;
	color: #fff;
}

/*------------------------------------------------------------------
  whyus styles
-------------------------------------------------------------------*/
.ngs-whyus{
	/*background-image: url(../images/bgs/whyus.jpg);
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;*/
}
.ngs-whyus-text{
	background-color: #fff;
}
.ngs-whyus-text .h1{
    margin-bottom: 1em;
}
.ngs-whyus-text ul li{
	position: relative;
	padding-left: 5em;
	display: block;
	color: #7c7c7c;
}
.ngs-whyus-text ul li + li{
	margin-top: 2em;
}
.ngs-whyus-text ul li .mdi{
	position: absolute;
	top: 7px;
	left: 0;
	font-size: 48px;
	color: #1e4399;
}
.ngs-whyus-text ul.ngs-list li{
    padding-left: 30px;
}
.ngs-list-inline li{
    display: block;
    float: left;
    width: 32%;
}

/*------------------------------------------------------------------
  clients styles
-------------------------------------------------------------------*/
.ngs-clients-box{}
.ngs-client a{
	display: block;
	padding: 15px 10px;
	background-color: #fff;
}
.ngs-client a img{
	transition: all  .3s ease;
	-moz-transition: all  .3s ease;
	-webkit-transition: all  .3s ease;
}
.ngs-client a:hover img{
	filter: grayscale(0%);
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #767676;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #2AA4D7;
    background-color: transparent;
    border: 2px solid #2AA4D7;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

/*------------------------------------------------------------------
  footer styles
-------------------------------------------------------------------*/
.ngs-footer{
	background-image: url(../images/bgs/footer-bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
    background-attachment: fixed;
}
.ngs-f-top{
	padding: 5em 0 2.5em;
	background-color: #2b2b2b;
	background-color: rgba(43,43,43,.85);
    position: relative;
}
.ngs-f-bot{
	padding: 2em 0 1.5em;
	background-color: #3c3c3c;
	background-color: rgba(30,30,30,.9);
}
.ngs-f-top .container{
    position: relative;
}
.ngs-footer-ribbon{
    position: absolute;
    top: -90px;
    left: 15px;
    background-color: #1e4399;
    color: #fff;
    padding: 13px 25px 9px;
    text-transform: uppercase;
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.3em;
    font-weight: 700;
}
.ngs-footer-ribbon::before {
    border-right: 12px solid #646464;
    border-top: 20px solid transparent;
    border-right-color: #005580;
    border-left-color: #005580;
    content: "";
    display: block;
    height: 0;
    left: -12px;
    position: absolute;
    top: 0;
    width: 7px;
}
.ngs-footer-ribbon a{
    color: #fff;
}

.ngs-f-top, .ngs-f-bot, .ngs-ft-links li a, 
.ngs-ft-contact-box ul li, .ngs-copyright a, .ngs-ft-contact-box a{
	color: #a9a9a9;
}
.ngs-ft-links li a:hover, .ngs-ft-contact-box a:hover, .ngs-copyright a:hover{
	color: #fff;
}
.ngs-footer-box .h4, .ngs-footer-box .h5{
	position: relative;
	color: #fff;
	margin-bottom: 1.8em;
}
.ngs-footer-box .h4::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 3px;
	background-color: #2AA4D7;
}
.ngs-footer-box .h4::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -9px;
	width: 100%;
	border-bottom: 1px dotted #2AA4D7;
}
.ngs-ft-links li a, .ngs-ft-contact-box ul li{
	display: block;
	position: relative;
	padding-left: 1.9em;
	margin-bottom: 9px;
}
.ngs-ft-links li a::before{
	font-family: "Material design Icons";
	content: '\f054';
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}
.ngs-ft-links li a:hover::before{
	left: 5px;
}
.ngs-ft-contact-box ul li .mdi{
	position: absolute;
	top: 0;
	left: 0;
    color: #2AA4D7;
}
.ngs-copyright span{
	padding-top: 3px;
}
.ngs-f-social a{
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #4a4a4a;
	color: #fff;
	border-radius: .25em;
}
.ngs-f-social a:hover{
	background-color: #2AA4D7;
	color: #fff;
}

/*------------------------------------------------------------------
  float icons styles
-------------------------------------------------------------------*/
.ngs-float-icons{
	position: fixed;
	z-index: 10;
	top: 42%;
	right: -40px;
	display: none;
}
.ngs-float-icons.ht-show{
	right: 0;
}
.ngs-float-icons a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #2b2b2b;
    color: #fff;
    margin: 3px 0;
}
.ngs-float-icons a:hover{
	background-color: #2AA4D7;
	color: #fff;
}


/*------------------------------------------------------------------
  fixed social icons styles
-------------------------------------------------------------------*/
.ngs-social-fixed-links{
    position: fixed;
    z-index: 9;
    top: 50%;
    left: -35px;
    margin-top: -90px;
}
.ngs-social-fixed-links.ht-show{
    left: 0;
}
.ngs-social-fixed-links a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #636363;
    color: #fff;
}
.ngs-social-fixed-links a:hover{
    width: 45px;
}
.ngs-social-fixed-links a + a{
    margin-top: 0px;
}
.ngs-social-fixed-links a.fb, .ngs-f-social a.fb{
    background-color: #4e71a8;
}
.ngs-social-fixed-links a.tw, .ngs-f-social a.tw{
    background-color: #1cb7eb;
}
.ngs-social-fixed-links a.lk, .ngs-f-social a.lk{
    background-color: #1686b0;
}
.ngs-social-fixed-links a.gp, .ngs-f-social a.gp{
    background-color: #e3411f;
}
.ngs-social-fixed-links a.ig, .ngs-f-social a.ig{
    background-color: #125688;
}

 /*------------------------------------------------------------------
  fixed qr code styles
-------------------------------------------------------------------*/
.ngs-qr-wrap{
    position: fixed;
    z-index: 25;
    top: 35%;
    right: -215px;
    width: 250px;
    transition: all .4s ease-in-out;
}
.ngs-qr-wrap.active{
    right: 0;
}
.ngs-qr-icon{
    float: left;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
	background-color: #2AA4D7;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
}
.ngs-qr-icon .mdi{
    transition: all .6s ease-in-out;
}
.ngs-qr-wrap.active .mdi{
    transform: rotate(-45deg);
}
.ngs-qr-pic{
    float: left;
    width: calc(100% - 35px);
    padding: 20px;
    background-color: #555;
}


 /*------------------------------------------------------------------
  back to top styles
-------------------------------------------------------------------*/
#back-to-top{
	position: fixed;
	z-index: 99;
	bottom: 1em;
	right: 1em;
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 1.5em;
	text-align: center;
	background-color: #555;
	color: #fff;
	opacity: 0;
    border-radius: 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,.3);
	transition: all .4s ease;
}
#back-to-top:hover{
	background-color: #1e4399;
	color: #fff;
}


/*------------------------------------------------------------------
  inner page styles
-------------------------------------------------------------------*/
.ngs-page-info{
    position: relative;
    background-attachment: fixed;
    background-image: url(../images/bgs/page-info-ban.jpg);
    background-position:  center center;
    background-repeat:  no-repeat;
    background-size: cover;
}
.ngs-page-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, .5);
    background: linear-gradient(to top, rgba(43, 43, 43, .25) 0%, rgba(255, 255, 255, .7) 100%);
}
.ngs-page-info-box{
    padding: 230px 0;
}
.ngs-page-info-box .h1{
    font-size: 3em;
    text-shadow: 1px 1px 4px #2b2b2b;
}
.ngs-page-info-box .breadcrumb{
    background-color: transparent;
    margin: 0;
    padding: 0;
}
.ngs-page-info-box .breadcrumb a, .breadcrumb-item + .breadcrumb-item::before{
    color: #636363;
    font-weight: 700;
}
.breadcrumb-item.active, .ngs-page-info-box .breadcrumb a:hover{
    color: #2AA4D7;
    font-weight: 700;
}
.ngs-list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 4px;
}
.ngs-list li:before {
    content: "\f132";
    font-family: "Material Design Icons";
    color: #2AA4D7;
    font-size: 14px;
    padding-right: 0.5em;
    position: absolute;
    top: 0;
    left: 0;
}

/*------------------------------------------------------------------
  about page styles
-------------------------------------------------------------------*/
.ngs-about-offer{
    background-image: url(../images/bgs/about-offer.jpg);
}
.ngs-about-offer span{
    padding: 0 17%;
    color: #bcbcbc;
}
.about-nextgen-page{
    background-image: url(../images/bgs/about-ban.jpg);
    background-image: url(../images/bgs/about-page-ban.jpg);
    background-position: center top;
}

/*------------------------------------------------------------------
  leadership page styles
-------------------------------------------------------------------*/
.ngs-leadership-page{
    background-image: url(../images/bgs/leadership-ban.jpg);
}

/*------------------------------------------------------------------
  services page styles
-------------------------------------------------------------------*/
.ngs-services-page{
    background-image: url(../images/bgs/services-page-ban.jpg);
    background-position: center center;
}
.ngs-services-box{
    display: table;
    padding: 30px 15px;
    margin: 0 -15px;
    transition: all .3s ease;
}
.ngs-services-box:hover{
    background-color: #fff;
    box-shadow: 0px 3px 7px rgba(0,0,0,.25);
}
.ngs-services-icon{
    position: relative;
    float: left;
    width: 25%;
    font-size: 5em;
    padding: 25px 0;
}
.ngs-services-icon .mdi{
    color: #2b2b2b;
    transition: all .3s ease;
}
.ngs-services-box:hover .ngs-services-icon .mdi{
    color: #2AA4D7;
}
.ngs-service-icon-line-top, .ngs-service-icon-line-bottom{
    position: absolute;
    width: 6px;
    height: 20px;
    left: calc(50% - 3px);
    background-color: #2AA4D7;
    opacity: 0;
    transition: all .4s ease-in-out;
}
.ngs-service-icon-line-top{
    transform: translateY(-50px);
}
.ngs-service-icon-line-bottom{
    transform: translateY(15px);
}
.ngs-services-box:hover .ngs-service-icon-line-top, 
.ngs-services-box:hover .ngs-service-icon-line-bottom{
    opacity: 1;
}
.ngs-services-box:hover .ngs-service-icon-line-top{
    transform: translateY(-41px);
}
.ngs-services-box:hover .ngs-service-icon-line-bottom{
    transform: translateY(7px);
}
.ngs-services-text{
    float: left;
    width: 75%;
    padding: 0 0 0 0px;
}
.ngs-services-text .lead{
    font-size: 14px;
}
.ngs-services-btn{
    font-size: 10px;
    padding: 2px 15px;
    border: 1px solid #636363;
    text-transform: uppercase;
}
.ngs-services-btn:hover{
    border-color: transparent;
}

/*------------------------------------------------------------------
  service2 page styles
-------------------------------------------------------------------*/
.ngs-services-list{}
.ngs-services-list li{
    position: relative;
    overflow: hidden;
    border: 0px solid #ddd;
    box-shadow: 0px 2px 7px rgba(85,85,85,.35);
}
.ngs-services-list li.ngs-service-left::before, 
.ngs-services-list li.ngs-service-right::before{
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    width: 62%;
    height: 100%;
    background-color: #555;
    background-color: #f7f7f7;
    transform: skew(-20deg);
}
.ngs-services-list li.ngs-service-left::before{
    left: -70px;
}
.ngs-services-list li.ngs-service-right::before{
    right: -70px;
}
.ngs-services-list li + li{
    margin-top: 2em;
}
.ngs-service-text-box{
    padding: 3em;
} 
.ngs-service-pic-box{
    padding: 2em;
}
.ngs-service-text-box{
    position: relative;
    z-index: 5;
    display: block;
    float: left;
    width: 50%;
}
.ngs-service-pic-box{
    display: block;
    float: left;
    width: 50%;
}
.ngs-service-pic-box img{
    width: 350px;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    background-color: #f9f9f9;
}

.ngs-web-solutions-page{
    background-image: url(../images/bgs/software-development-page-ban.jpg);
}
.ngs-data-analytics-page{
    background-image: url(../images/bgs/dataanalytics.jpg);
}
.ngs-data-science-page{
    background-image: url(../images/bgs/data_science.jpg);
}

.ngs-cloud-solutions-page{
    background-image: url(../images/bgs/cloud_solutions.jpg);
}



ul.list-group li:nth-child(odd){ background-color:#cccccc2e;
padding-left: 20px;}
ul.list-group li:nth-child(even){ background-color:#00027e;
padding-left: 20px;}
.ngs-training-page{

    background-image: url(../images/bgs/training.png);
    /*background-position: right top;*/
}
.ngs-mobile-solutions-page{
    background-image: url(../images/bgs/mobile-solution-ban.png);
}

.ngs-data_science-page{
    background-image: url(../images/bgs/data_science.jpg);
}
.ngs-cloudsolution-page{
    background-image: url(../images/bgs/cloud-services-ban.jpg);
}
.ngs-consulting-page{
    background-image: url(../images/bgs/consulting.jpg);
}
.ngs-outsource-page{
    background-image: url(../images/bgs/outsource_service.jpg);
}

.ngs-testing-page{
    background-image: url(../images/bgs/QA-banner.jpg);
}

.list-group-flush li{ margin-bottom: 20px;
    text-align: justify;}
	.list-group-flush li strong{color:#000;}
	
/*
.ngs-staffing-solutions-page{
    background-image: url(../images/bgs/staffing-solutions.jpg);
    background-position: right top;
}
.ngs-software-development-page{
    background-image: url(../images/bgs/software-development.jpg);
    background-image: url(../images/bgs/software-development-page-ban.jpg);
    background-position: center -150px;
}*/


/*------------------------------------------------------------------
  technologies page styles
-------------------------------------------------------------------*/
.ngs-technologies-page{
    background-image: url(../images/bgs/technologies-ban.jpg);
    background-image: url(../images/bgs/tech-page-ban.jpg);
}
.ngs-technology-box{
    border: 1px solid #ddd;
    padding: 2em;
    transition: all .3s ease;
}
.ngs-technology-box:hover{
    /* background-color: rgba(250, 250, 250, 1);
    border-color: #2AA4D7; */
    box-shadow: 0px 7px 7px rgba(0,0,0,.15);
}
.ngs-technology-box img{
    max-height: 100px;
    transition: all .4s ease;
}
.ngs-technology-box:hover img{
    transform: rotateY(360deg);
}
.read-more{
    display: table;
    margin: -10px auto 0;
}

/*------------------------------------------------------------------
  clients page styles
-------------------------------------------------------------------*/
.ngs-clients-page{
    background-image: url(../images/bgs/clients-ban.jpg);
}
.ngs-clients-wrap{}
.ngs-clients-wrap ul{
    margin: 0 -7px;
}
.ngs-clients-wrap ul li{
    display: block;
    float: left;
    width: 18%;
    margin-left: 7px;
    margin-right: 7px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -2px rgba(0, 0, 0, 0.2);
}
.ngs-clients-wrap ul li .ngs-client-pic a{
    display:  block;
    border: 1px solid #ddd;
    text-align: center;
    padding: 1em;
}
.ngs-clients-wrap ul li:hover .ngs-client-pic a{
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.ngs-clients-wrap ul li .ngs-client-pic a img{
    height: 75px;
    transition: all .4s ease;
}
.ngs-clients-wrap ul li .ngs-client-text{
    padding: 15px;
    background-color: #f7f7f7;
    height: 80px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ngs-clients-wrap ul li .ngs-client-text small{
    color: #2AA4D7;
    font-style: italic;
}
.ngs-client-text h6, .ngs-client-text small{
    width: 100%;
}


/*------------------------------------------------------------------
  careers page styles
-------------------------------------------------------------------*/
.ngs-careers-page{
    background-image: url(../images/bgs/careers-ban.jpg);
    background-image: url(../images/bgs/careers-page-ban.jpg);
    background-position: center bottom;
}
.ngs-careers-search-box, 
.ngs-careers-upload-resume-box{
    padding: 4em;
}
.ngs-careers-search{
    background-color: #696969;
    color: #bdbdbd;
}
.ngs-careers-upload-resume{
    background-color: #797979;
    color: #e4e4e4;
}
.ngs-job-search-form{
    padding-top: 1em;
}
.float-group{
    position: relative;
}
.float-group label{
    color: #fff;
    position: absolute;
    -webkit-transform: translate3d(0, 0px, 0) scale(1);
    -moz-transform: translate3d(0, 0px, 0) scale(1);
    transform: translate3d(0, 0px, 0) scale(1);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.float-group.active label{
    color: #2AA4D7;
    -webkit-transform: translate3d(0, -25px, 0) scale(1);
    -moz-transform: translate3d(0, -25px, 0) scale(1);
    transform: translate3d(0, -25px, 0) scale(1);
}
.float-group .form-control{
    background-color:  transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 2px 0;
    border-radius: 0;
    color: #fff;
    position: relative;
}
.input-bar{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: -26px;
    margin: auto;
    color: transparent;
    background: #2AA4D7;
    width: 0%;
    height: 3px;
    transition: all 0.3s ease;
}
.float-group.active .input-bar{
    width: 100%;
}
.ngs-careers-search-box .btn{
    background-color: #5a5a5a;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 12px 20px;
}

.ngs-orline{
    height: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #fff;
    position: relative;
}
.ngs-orcircle{
    text-align: center;
    position: absolute;
    left: 0;
    top: 22px;
    width: 100%;
}
.ngs-or{
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 18px;
    line-height: 36px;
    color: #000;
}

.ngs-resume-upload-form .k-upload {
    padding: 3em 2em;
}
.ngs-resume-upload-form .k-content{
    background-color: rgba(255,255,255,.9);
}
.ngs-ur-btn{
    background-color: #636363;
    color: #fff;
    padding: 12px 20px;
    border: 0;
    border-radius: 0;
}

/*------------------------------------------------------------------
  current openings styles
-------------------------------------------------------------------*/
.ngs-current-openings{}
.ngs-current-openings-box thead{
    background-color: #5a5a5a;
    color: #fff;
}

/*------------------------------------------------------------------
  careers map styles
-------------------------------------------------------------------*/
#nextgenLocations {
  width: 100%;
  height: 450px;
}
.amcharts-chart-div a{
    display: none !important;
}
.amcharts-export-menu{
    display: none;
}
#map {
    width: 100%;
    height: 450px;
}

/*------------------------------------------------------------------
  careers page2 styles
-------------------------------------------------------------------*/
.ngs-careers-section{
    background-color: #f4f4f4;
}
.ngs-careers-tabs .nav-tabs{
    border-bottom: 0;
}
.ngs-careers-tabs .nav-tabs .nav-link{
    text-transform: uppercase;
    padding: 11px 25px;
    font-size: 16px;
    border: 2px solid #2AA4D7;
    border-radius: 0;
    color: #2AA4D7;
}
.ngs-careers-tabs .nav-tabs .nav-link.mid-link{
    border-left: 0;
    border-right: 0;
}
.ngs-careers-tabs .nav-tabs .nav-link.left-link{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.ngs-careers-tabs .nav-tabs .nav-link.right-link{
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.ngs-careers-tabs .nav-tabs .nav-link:hover, 
.ngs-careers-tabs .nav-tabs .nav-item.show .nav-link, 
.ngs-careers-tabs .nav-tabs .nav-link.active{
    background-color: #2AA4D7;
    color: #fff;
}
.ngs-careers-table .table-bordered thead td{
    font-weight: 700;
    font-size: 18px;
}
.ngs-careers-table ul li{
    padding: 15px 20px;
    display: flex;
}
.ngs-careers-table ul li + li{
    margin-top: 10px;
}
.ngs-careers-table ul li:nth-child(odd){
    background: #e9e9e9;
}
.ngs-careers-table ul li:nth-child(even){
    background: #d7d7d7;
}
.ngs-career-left-box strong{
    color:  #2b2b2b;
    font-size: 16px;
}
.ngs-career-left-box, .ngs-career-right-box{
    display: inline-block;
}
.ngs-career-left-box{
    width: 70%;
}
.ngs-career-right-box{
    width: 30%;
    text-align: right;
}
.ngs-career-right-box .btn{
    padding: 5px 13px 7px;
    font-size: 12px;
}
/*
#careersTabs.tab-content > .active{
    animation-name: fadeInUp;
    animation-duration: 1s;
}
*/
.ngs-job-title{
    font-size: 16px;
}
.ngs-career-details-table .table td{
    min-width: 200px;
}
.ngs-career-apply-box{
    padding-left: 210px;
}
.ngs-career-apply-form-box .ngs-btn{
    border: 0;
}
.ngs-career-apply-form-box{
    padding: 3em 3em 2em;
    background-color: #f1f1f1;
}
#ngsCareerThankYou .modal-header{
    background-color: #2AA4D7;
    color: #fff;
    padding: 20px;
    border-radius: 0;
}
#ngsCareerThankYou .modal-content{
    border-radius: 0;
}
#ngsCareerThankYou .modal-title{
    font-size: 20px;
    font-weight: 700;
}
#ngsCareerThankYou .modal-body{
    padding: 30px 20px;
    font-size: 16px;
}

/*------------------------------------------------------------------
  careers tabs styles
-------------------------------------------------------------------*/
.ngs-careers-tabs{}
.ngs-tab-content-box{
    padding: 2em 0;
}
.ngs-lca-pdfs-box{
    margin: 0 -5px;
}
.ngs-lca-pdfs-box ul.ngs-lca-pdfs{
    display: table;
}
.ngs-lca-pdfs-box ul li{
    display: block;
    float: left;
    padding-bottom: 5px;
}
.ngs-lca-pdfs-box ul li a{
    display: block;
    text-align: center;
    padding: 7px 5px;
    margin: 5px;
    border: 1px solid #ddd;
    background-color: #fbfbfb;
}
.ngs-lca-pdfs-box ul li a:hover, 
.ngs-lca-pdfs-box ul li a:focus{
    background-color: #2AA4D7;
    border-color: #2AA4D7;
    color: #fff;
    transform: scale(1.1);
}
.ngs-lca-pdfs-box ul li a .mdi{
    padding-right: 5px;
    color: #2AA4D7;
    transition: all .3s ease;
}
.ngs-lca-pdfs-box ul li a:hover .mdi{
    color: #fff;
}
.ngs-careers-tabs2 .nav-tabs2 {
    border-bottom: 1px solid #ddd;
}
.ngs-careers-tabs2 .nav-tabs2 .nav-item.show .nav-link, 
.ngs-careers-tabs2 .nav-tabs2 .nav-link.active{
    border-color: transparent;
    background-color: transparent;
}
.ngs-careers-tabs2 .nav-tabs2 .nav-link{
    position: relative;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}
.ngs-careers-tabs2 .nav-tabs2 .nav-link:hover, 
.ngs-careers-tabs2 .nav-tabs2 .nav-link.active{
    color: #2AA4D7;
    border-color: transparent;
}
.ngs-lca-pagin{
    float: right;
}
.ngs-lca-pagin .page-link{
    color: #636363;
}
.ngs-lca-pagin .page-link:hover, 
.ngs-lca-pagin .page-link:focus, 
.ngs-lca-pagin .page-link.active{
    color: #fff;
    background-color: #2AA4D7;
}

/*------------------------------------------------------------------
  contact page styles
-------------------------------------------------------------------*/
.ngs-contact-us-page{
    background-image: url(../images/bgs/contact-page-ban.jpg);
    /* background-position: -120px -100px;
    background-size: 110%; */
}
.ngs-contact-btn{
    background-color: #636363;
    color: #fff;
    padding: 12px 20px;
    border: 0;
}

/*------------------------------------------------------------------
  contact page new styles
-------------------------------------------------------------------*/
.ngs-cp-wrap{
    box-shadow: 0 5px 14px 1px rgba(0,0,0,.1);
}
.ngs-cp-form, .ngs-cp-info{
    padding: 35px 20px 25px;
}
.ngs-cp-form{
    background-color: #fff;
}
.ngs-cp-contact-form .form-group{
    position: relative;
}
.ngs-cp-contact-form .mdi{
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 15px;
}
.ngs-cp-btn .mdi{
    position: relative;
    top: 0;
}
.ngs-cp-contact-form .form-control{
    padding-left: 32px;
}
.ngs-cp-info{
    background-color: #2AA4D7;
}
.ngs-cp-info2{
    background-color: #1e4399 !important;
}
.ngs-cp-info-box address ul li{
    position: relative;
    padding-left: 25px;
    padding-bottom: 7px;
}
.ngs-cp-info-box address ul li .mdi{
    position: absolute;
    top: 0;
    left: 0;
}
.ngs-cp-info-box address ul li, 
.ngs-cp-info-box address ul li a{
    color: #fff;
}




.wht-bg{
    background-color: #fff;
}
.ngs-bg{
    background-color: #1e4399;
}


.ngs-careers-table .ngs-btn, 
.ngs-career-apply-box .ngs-btn, 
.ngs-career-apply-form-box .ngs-btn, 
.ngs-success-btn{
    background-color: #28a745;
    color: #fff;
    border: 0;
}
.ngs-careers-table .ngs-btn:hover, 
.ngs-careers-table .ngs-btn:focus, 
.ngs-career-apply-box .ngs-btn:hover, 
.ngs-career-apply-box .ngs-btn:focus, 
.ngs-career-apply-form-box .ngs-btn:hover, 
.ngs-career-apply-form-box .ngs-btn:focus, 
.ngs-success-btn:hover, 
.ngs-success-btn:focus{
    background-color: #218838;
    color: #fff;
}

/*------------------------------------------------------------------
  font colors
-------------------------------------------------------------------*/
.ngs-txt, .read-more{
	color: #1e4399;
}
.wht-txt{
	color: #fff;
}
.gry-txt{
	color: #7c7c7c;
}

/*------------------------------------------------------------------
  bg colors styles
-------------------------------------------------------------------*/
.ngs-bg-color{
	background-color: #2AA4D7;
}
.bg-faded{
	background-color: #f1f1f1;
	background-color: #f7f7f7;
}


/*------------------------------------------------------------------
  common styles
-------------------------------------------------------------------*/
.ngs-work-pic img, .ngs-work-text, .ngs-work-pic a::before{
	 transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.mdi{
    display: inline-block;
}
.ngs-clearfix::before, 
.ngs-clearfix::after{
    content: '';
    display: table;
}
.ngs-clearfix::after{
    clear: both;
}

.ngs-admin-wrapper{
    width: 100%;
    height: 100vh;
    background-color: #F7F9FB;
}
.ngs-admin-login-form-box{
    width: 400px;
    height: auto;
    margin: 0 auto;
}
.ngs-admin-brand img{
    width: 300px;
}
.ngs-admin-login-form-wrap{
    padding: 30px;
    background-color: #fff;
    border-radius: .25rem;
    box-shadow: 0 0 40px rgba(0,0,0,.05);
}

.ngs-lca-file-upload{
    width: 800px;
}
#trigger-upload {
    color: white;
    background-color: #00ABC7;
    font-size: 14px;
    padding: 7px 20px;
    background-image: none;
}
#fine-uploader-manual-trigger .qq-upload-button {
    margin-right: 15px;
}
#fine-uploader-manual-trigger .buttons {
    width: 100%;
}
#fine-uploader-manual-trigger .qq-uploader .qq-total-progress-bar-container {
    width: 60%;
}
#trigger-upload{
    background-color: #28a745;
    border: 0;
    padding: 10px 20px;
}
.qq-upload-button{
    width: auto;
    background-color: #2AA4D7;
    border: 0;
    padding: 8px 20px;
}
#fine-uploader-manual-trigger .buttons {
    width: auto;
    position: absolute;
    left: 50%;
    top: 15px;
    margin: 0 auto 0 -100px;
}
.qq-uploader{
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 300px;
    max-height: 600px;
}
.qq-upload-list{
    margin-top: 50px;
}
.qq-upload-list li{
    position: relative;
}
.qq-upload-cancel {
    color: #fff;
    background-color: #bd2130;
    border: 0;
    padding: 5px 10px;
    position: absolute;
    top: 7px;
    right: 10px;
}
.qq-upload-cancel:hover {
    color: #fff;
    background-color: #c82333;
}



.ngs_loading{
	position: fixed;
	z-index: 10000;
	background-color: rgba(255, 255, 255, .7);
	top: 0;
	color: black;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	text-align: center;
}

.ngs_loading div{
	position: absolute;
	z-index: 99;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}
.ngs-admin-brand{
    margin: 50px;
}
.ngs-admin-brand .ngs-btn{
    float: right;
}
.ngs-admin-brand .ngs-btn:hover{
    background-color: #2AA4D7;
    color: #fff;
}

.colorbg{background-color: #2b2c7edb;
    padding: 20px;
    /* border: #2b2c7e 2px solid; */
    border-radius: 22px;
    color: white;}
	.colorbg{padding-bottom:10px;}
	
	.greycolorbg{background-color: #cccccc99; padding: 20px;
    /* border: #2b2c7e 2px solid; */
    border-radius: 22px;
    color: black;}
	.whitecolor{color:white !important;}
	
	
	.mb-4 {
    margin-bottom: 1rem!important;
}

hr.style14 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
  margin-bottom:30px;
}
h4{font-weight: 600;}

.contact-page-form{
    border: #2b2c7e 1px solid;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #2b2c7e;
    border-radius: 20px;
}
.unsubscribe-div{
    padding: 80px;
    margin-top: 50px;
    background-color: #1e4399;
    border-radius: 25px;
}
.unsubscribe-form-div{
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
}
.radio-div{
    background-color: #fafafa;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    width: 300px;
    justify-content: center;
    display: flex;
    text-align: center;
}
.contact-form-div{
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}