
@font-face {
    font-family: 'manifav2bold';
    src: url('../fonts/manifa-v2-bold.woff2') format('woff2'),
         url('../fonts/manifa-v2-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Outfit-Light';
    src: url('../fonts/Outfit-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-Regular';
    src: url('../fonts/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-Medium';
    src: url('../fonts/Outfit-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-SemiBold';
    src: url('../fonts/Outfit-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-Bold';
    src: url('../fonts/Outfit-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-ExtraBold';
    src: url('../fonts/Outfit-ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Outfit-Black';
    src: url('../fonts/Outfit-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Outfit-Regular';
    font-size: 16px;
    color: #0B0B0B;
    overflow-x:hidden;
}
:root {
    --timingDefault: .5s;
    --easeOut: .25, 0, .25, 1;
    --easeAlt: .25, 0, .25, 1;
}
.btn,.btn:focus {
    outline:none;
    box-shadow:none;
}
ul, figure{margin: 0;padding: 0}
li{list-style-type: none;}
a{text-decoration: none;}
.space-tb {
	padding: 60px 0;
}
.space-t {
	padding-top: 60px;
}
.space-b {
	padding-bottom: 60px;
}
/*Header start*/
header {
    position: absolute;
    z-index: 3;
    width: 100%;
    transition: all 0.5s;
    top: 0;
    left: 0;
}
header .navbar {
    width: 100%;
    padding: 0px 30px 0;
}
header .navbar-brand {
    padding: 15px 0 0;
    width: 160px;
}
header .navbar-brand img {

}
header .menu-header {
    width: calc(100% - 160px);
    border-bottom: 1px solid #737F8D;
}
header .menu-header .menu-scroll {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 90px;
}
header .search-item {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #22D669;
    width: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
header .search-item .search-btn {
    display: block;
    background-image: url(../images/search-icon.svg);
    background-size: 18px 19px;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    background-position: center;
    background-size: contain;
}
header .search-item .search-btn.active {
    background-image: url(../images/close.svg);
	filter: invert(1);
}
header .navbar .navbar-nav .nav-item:not(:first-child) {
    margin-left: 55px;
}
header .navbar .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    font-family: 'Outfit-Medium';
    font-size: 15px;
    padding: 30px 0;
    position: relative;
}
header .navbar .navbar-nav .nav-item .nav-link:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	right: 100%;
	bottom: 0;
	background: #ffffff;
	height: 3px;
	border-radius: 4px;
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
header .navbar .navbar-nav .nav-item .nav-link:hover::before, header .navbar .navbar-nav .nav-item .nav-link.active::before {
	right: 0;
}
header .navbar .navbar-nav .nav-item .dropdown-toggle {
    padding-left: 5px;
    box-shadow: none;
    outline: none;
}
header .navbar .navbar-nav .nav-item .dropdown-toggle:after {
    display: none;
}
header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 0;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    top: 100%;
    border: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    left: 0;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0 8px 4px rgba(197, 197, 197, 0.4);
    border-radius: 0;
    width: 200px;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu::before {
    content: "";
    border: 10px solid transparent;
    position: absolute;
    top: -19px;
    left: 25px;
    border-bottom-color: #ffffff;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
	color: #00000;
    font-family: 'Outfit-Regular';
	font-size: 14px;
	border-bottom: 1px solid #ffffff;
	padding: 8px 10px;
	display: block;
}
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li:last-child a {
	border: 0; 
} 
header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a:hover {
    background-color: #e6e6e6;
    color: #00000;
}
header .menu-header .menu-scroll .social-nav {
    display: flex;
    align-items: center;
}
header .menu-header .menu-scroll .social-nav li {
    margin-left: 40px;
}
header .search-bar {
    background-color: #22d669;
    padding: 16px 13px 15px 20px;
    top: 0;
    position: absolute;
    right: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid #dfe3e8;
    transition: all linear .3s;
}
header .search-bar.active {
    opacity: 1;
    visibility: visible;
    width: 600px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .25);
    border-bottom: 4px solid #22d669;
}
header .search-bar.active {
display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 500px;
    position: absolute;
    max-width: 100%;
    top: 0;
    right: 0;
}
header .search-bar .js-form-type-search{width: 100%}
header .search-bar .form-search {
    width: 100%;
    height: 48px;
    border-radius: 0;
    font-family: 'Outfit-Medium';
    font-weight: 300;
    font-size: 15px;
    line-height: normal;
    color: #fff;
    outline: none;
    box-shadow: none;
    margin-right: 10px;
    border: 0;
    border-bottom: 1px solid #ced4da;
    background: transparent;
}
header .search-bar .form-submit{    background: transparent;
    border: none;
    background: url(../images/search-icon.svg) no-repeat center center;
    text-indent: -999px;
    width: 22px;background-size: contain;
    height: 22px;}
header .search-bar .form-search::placeholder{color: #fff!important}
header .search-bar .js-form-type-search label{display: none;}
header .search-bar .form-group .btn {
    background: transparent;
    border-radius: 6px;
    color: #fff;
    height: 48px;
    border: transparent;
    width: 48px;
    padding: 0;
}
header .search-bar .form-group .btn img{width: 22px}
header .search-bar .form-group .btn:hover {
    background: transparent;
}
header .btn-right {
    display: none;
}
header.sticky {
    position: fixed;
    background: linear-gradient(180deg, #043297 0%, #0F2BB2 100%);
    animation: sticky 1s;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    z-index: 9;
}
@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}
@keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}
header.sticky .menu-header {
    border-bottom: 0;
}
header.sticky .navbar-brand {
    width: 100px;
    padding: 10px 0;
}
header.sticky .navbar .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
}
/*Header close*/

/*Home page start*/
.home-banner {
    width: 100%;
    position: relative;
    z-index: 1;
}
.home-banner .banner-overlay {
    width: 100%;
    position: relative;
}
.home-banner .banner-overlay img {
    max-height: 700px;
	object-fit: cover;
}
.home-banner .banner-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(26, 85, 188, 0.53) 0%, rgba(21, 0, 137, 0.53) 100%);
}
.home-banner .banner-content {
    top: 60%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 6;
    visibility: visible;
    opacity: 1;
	color: #ffffff;
}
.home-banner .banner-content .banner-title {
    width: 100%;
	position: relative;
}
.home-banner .banner-content .banner-title h1 {
    font-family: 'manifav2bold';
    font-size: 100px;
    line-height: 85px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.home-banner .banner-content p {
    font-family: 'Outfit-Regular';
    max-width: 460px;
    margin-left: 300px;
}
.title-border {
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
}
.title-border span:nth-child(1), .title-border span:nth-child(2) {
    width: 28px;
    background-color: #2D9DFE;
}
.title-border span {
    position: absolute;
    content: '';
    height: 4px;
    width: 100%;
    top: 0;
}
.title-border span:nth-child(2) {
    left: 38px;
}
.title-border span:nth-child(3) {
    width: 92px;
    background-color: #27D36F;
    left: 76px;
}
.home-banner .banner-content .title-border span {
    height: 2px;
}
.home-banner .banner-content .title-border span:nth-child(3) {
    width: 190px;
}
.home-banner .banner-content .banner-title  .title-border  {
    bottom: -20px;
}
.home-banner .banner-content .action {
	width: 100%;
	display: flex;
	margin-top: 30px;
	margin-left: 300px;
}
.btn-whiteBorder, .btn-solidGreen, .btn-blueBorder {
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Outfit-SemiBold';
    font-size: 14px;
    padding: 12px 45px 12px 20px;
    text-transform: capitalize;
    transition: 0.3s ease;
    position: relative;
    line-height: normal;
    border-radius: 6px;
}
.btn-blueBorder {
	border-color: #140087;
    color: #000000;
}
.btn-whiteBorder:hover, .btn-solidGreen:hover {
    color: #ffffff;
}
.btn-blueBorder:hover {
    color: #000000;
}
.btn-solidGreen {
	background-color: #22D669;
}
.btn-whiteBorder span, .btn-solidGreen span, .btn-blueBorder span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.btn-whiteBorder span:after, .btn-solidGreen span:after,  .btn-blueBorder span:after {
    background-image: url(../images/linkArrow.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 8px;
    position: absolute;
    margin-left: 5px;
	margin-top: -1px;
    top: 50%;
    width: 8px;
    filter: invert(1);
}
.btn-blueBorder span:after, .btn-whiteBorder:hover span:after {
	filter: inherit;
}
.btn-whiteBorder:hover span {
	color: #000000;
}
.btn-blueBorder:hover span {
	color: #ffffff;
}
.btn-blueBorder:hover span:after {
    filter: invert(1);
}
.btn-whiteBorder:after, .btn-whiteBorder:before, .btn-solidGreen:after, .btn-solidGreen:before, .btn-blueBorder:after, .btn-blueBorder:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 20px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(26, 85, 188, 0.53) 0%, rgba(21, 0, 137, 0.53) 100%);
    top: calc(50% - 11px);
    transition: .3s ease;
}
.btn-blueBorder:after, .btn-blueBorder:before {
	background: #EBEBEB;
}
.btn-whiteBorder:after, .btn-solidGreen:after, .btn-blueBorder:after {
	right: -2px;
}
.btn-whiteBorder:before, .btn-solidGreen:before, .btn-blueBorder:before {
	left: -2px;
}
.btn-whiteBorder:hover:after, .btn-solidGreen:hover:after, .btn-blueBorder:hover:after {
    right: 0;
    width: 50%;
    height: 100%;
    top: 0;
    border-radius: 0 4px 4px 0;
    background: #043297;
}
.btn-whiteBorder:hover:before, .btn-solidGreen:hover:before, .btn-blueBorder:hover:before {
    left: 0;
    width: 50%;
    height: 100%;
    top: 0;
    border-radius: 4px 0 0 4px;
    background: #043297;
}
.btn-whiteBorder:hover:after, .btn-whiteBorder:hover:before { 
    background: #ffffff;
}
.home-banner .banner-scroll {
    position: absolute;
    left: 50%;
    text-align: center;
    bottom: -45px;
    transform: translate(-50%);
    z-index: 1;
}
.home-banner .banner-scroll .scroll-img {
    width: 40px;
    box-shadow: 0px 2.78px 2.78px 0px #A7A1A140;
    border-radius: 180px;
    background-color: #ffffff;
    margin: auto;
    padding: 10px 5px;
}
.home-banner .banner-scroll span {
    display: block;
    font-family: 'Outfit-Bold';
    font-size: 14px;
    color: #000;
    margin-top: 5px;
}
.comprehensive-block {
    width: 100%;
    position: relative;
    padding: 95px 0 100px;
}
.comprehensive-block .container {
    overflow: hidden;
}
.comprehensive-block:after, .comprehensive-block:before {
    position: absolute;
    content: "";
	bottom: -24px;
    width: 51px;
    height: 48px;	
    background-image: url(../images/attached.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
	z-index: 1;
}
.comprehensive-block:after {
    left: 10%;
}
.comprehensive-block:before {
    right: 10%;
}
.comprehensive-block figure, .comprehensive-block .content, .comprehensive-block .content .comprehensive-title {
    width: 100%;
	position: relative;
}
.comprehensive-block figure img {
	border-radius: 20px;
}
.comprehensive-block .content {
	text-align: center;
}
.comprehensive-block .content .comprehensive-title h2 {
    font-family: 'manifav2bold';
    font-size: 60px;
    line-height: 50px;
    color: #150089;
    padding-bottom: 10px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.comprehensive-block .content .comprehensive-title h2:after {
    position: absolute;
    content: '';
    height: 3px;
    width: 92px;
    background-color: #27D36F;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.comprehensive-block .content .comprehensive-title {
	margin-bottom: 10px;
}
.comprehensive-block .content p {
    font-family: 'Outfit-Regular';
    color: #282828;
    margin: 0 auto 20px;
    max-width: 900px;
}
.comprehensive-block .content .btn-blueBorder:hover:before {
    width: calc(50% + 1px);
}
.our-services {
    width: 100%;
    position: relative;
	background: linear-gradient(180deg, #150089 0%, #190587 100%);

}
.header-title {
	width: 100%;
	position: relative;
	margin: 0 auto 30px;
}
.header-title h2 {
    font-family: 'manifav2bold';
	font-size: 60px;
	line-height: 50px;
	text-transform: uppercase;
	color: #150089;
}
.header-title p {
    font-family: 'Outfit-Regular';
    color: #282828;
}
.our-services .header-title {
   display: flex;
   width: 100%;
   align-items: center;
   justify-content: center;
}
.our-services .header-title h2 {
    color: #ffffff;
    max-width: 250px;
    text-align: right;
}
.our-services .header-title p {
    color: #ffffff;
    max-width: 500px;
    margin: 0 30px;
    padding: 0 30px;
    border-left: 1px solid #ffffff;
    border-top: 0;
    border-bottom: 0;
}
.our-services .header-title .services-action {
    display: inline-block;
}
.our-services .bottom-action .btn-whiteBorder:hover:before {
    width: calc(50% + 1px);
}
.our-services .bottom-action {
	width: 100%;
	position: relative;
    text-align: center;
    margin-top: 20px;
}
.service-carousal {
	width: 100%;
	position: relative;
    padding: 0 50px 0 0;
}
.service-carousal .item, .service-carousal .item figure {
	width: 100%;
	position: relative;
    margin: 0;
    height: 450px;
}
.service-carousal .item figure img {
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
}
.service-carousal .item {
    padding-left: 80px;
}
.service-carousal .item .content {
    width: 100%;
    max-width: 386px;
    position: absolute;
    bottom: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 50px 20px 20px;
    left: 0;
}
.service-carousal .item .content .action {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}
.service-carousal .item .content .action img {
    width: auto;
    filter: invert(1);
}
.service-carousal .item .content h3 {
    font-family: 'manifav2bold';
    color: #150089;
    font-size: 55px;
    line-height: 45px;
    margin-bottom: 10px;
    padding-right: 15px;
}
.service-carousal .item .content p {
    color: #0B0B0B;
    margin: 0;
}
.service-carousal .owl-nav {
    position: absolute;
    width: 66px;
    height: 42px;
    background-color: #111111;
    bottom: 70px;
    left: 354px;
}
.service-carousal .owl-nav button {
    width: 33px;
    height: 42px;
    outline: none;
    color: #ffffff !important;
    font-size: 21px !important;
}
.service-carousal .owl-nav button span {
    font-size: 38px;
    line-height: 20px;
    font-family: none !important;
    font-weight: 100;
}
.service-carousal .owl-nav button.owl-prev {
    border-right: 1px solid #ffffff;
}
.service-carousal .owl-dots {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-carousal .owl-dots .owl-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin: 8px 0px;
}
.service-carousal .owl-dots .owl-dot:after {
    width: 14px;
    height: 14px;
    position: absolute;
    content: '';
    border: 1px solid #fff;
    border-radius: 50%;
    top: -3px;
    left: -3px;
}
.service-carousal .owl-dots .owl-dot.active {
    background-color: #22D669; 
    width: 14px;
    height: 14px;
}
.service-carousal .owl-dots .owl-dot.active:after {
    width: 24px;
    height: 24px;
    top: -5px;
    left: -5px;
    border-color: #22D669;
}
.service-carousal .owl-dots:after {
    position: absolute;
    content: '';
    top: 100%;
    right: -3px;
    width: 20px;
    height: 100%;
    background-image: url(../images/carousal-dot.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
.service-carousal .owl-dots:before {
    position: absolute;
    content: '';
    bottom: 100%;
    right: -3px;
    width: 20px;
    height: 100%;
    background-image: url(../images/carousal-dot.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}
.news-room {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.news-room .news-room-container {
    width: 100%;
    position: relative;
    padding-left: 10%;
    display: flex;
    align-items: center;
}
.news-room .news-room-container .header-title {
    width: 310px;
    padding-right: 30px;
}
.news-room .news-room-container .header-title h2 {
    max-width: 200px;
}
.news-room .news-room-container .header-title p {
    max-width: 250px;
    margin-bottom: 25px;
}
.news-room .news-room-container .news-right {
    position: relative;
    width: calc(100% - 310px);
}
.news-room .news-room-container .header-title .btn-blueBorder:hover:before {
    width: calc(50% + 1px);
}
.news-right .item {
    width: 100%;
    position: relative;
}
.news-right .item .news-link {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
}
.news-right .item .news-link img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
}
.news-right .item .news-link .content {
    bottom: 0;
    left: 0;
    padding: 15px 65px 15px 15px;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.news-right .item .news-link .content h3 {
    color: #22D669;
    font-family: 'manifav2bold';
    font-size: 21px;
    line-height: 22px;
    margin-bottom: 0;
}
.news-right .item .news-link .content p {
    color: #fff;
    margin: 0;
    font-family: 'Outfit-Light';
    font-size: 15px;
    line-height: 20px;
}
.news-right .item .news-link .content:after {
    position: absolute;
    content: '';
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-image: url(../images/whiteAction.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}
.news-right .item .news-link:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(102, 102, 102, 0) 58.65%);
    border-radius: 0;
}
.news-right .item .news-link:hover:before {
    background: linear-gradient(0deg, #150089 0%, rgba(102, 102, 102, 0) 58.65%);
}
.news-right .item .news-link:hover .content {
    transform: translateY(-1rem);
}
.question-block {
    width: 100%;
    position: relative;
    background-image: url(../images/questionBg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.question-block .space-tb {
    padding: 30px 0;
}
.question-block:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(45, 157, 255, 0.95);
}
.question-block .header-title {
    margin: 0;
    border-right: 1px solid #ffffff;
    padding-right: 30px;
}
.question-block .header-title h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 35px;
}
.question-block .header-title p {
    color: #ffffff;
    margin: 0;
}
.question-block  .services-action {
    display: inline-block;
    position: relative;
    font-size: 45px;
    line-height: 35px;
    color: #ffffff;
    font-family: 'manifav2bold';
    margin-left: 30px;
}
.question-block .services-action img {
    max-width: 40px;
}
.career-block {
    width: 100%;
    position: relative;
    background: #150089;
}

/*.career-block:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/career-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.career-block .header-title {
    max-width: 900px;
}
.career-block .header-title h2 {
    color: #ffffff;
}
.career-block .header-title p {
    color: #ffffff;
}
.career-block .header-title figure {
    margin: 20px 0;
}
.career-block .header-title figure img {
    border-radius: 10px;
}
.career-block  .btn-whiteBorder:hover:before {
    width: calc(50% + 1px);
}
/*Home page close*/

/*Footer start*/
footer {
    width: 100%;
    position: relative;
    background-color: #F7F8FC;
    padding: 60px 0 0;
    overflow: hidden;
}
footer .footer-top {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .footer-info {
    width: 100%;
    position: relative;
    padding-right: 50px;
    max-width: 280px;
}
footer .footer-info .brand {
    display: inline-block;
}
footer .footer-info ul {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: center;
}
footer .footer-info ul li {
    margin:     0 18px;
}
footer .footer-info ul li a {
    filter: invert(1);
}
footer .footer-info ul li a img {
    height: 20px;
}
.footer-contact {
    width: 100%;
    position: relative;
    border-left: 1px solid #C9C9C9;
    padding-left: 50px;
    max-width: 420px;
}
.footer-contact ul {
    width: 100%;
    position: relative;
}
.footer-contact ul li {
    position: relative;
    width: 100%;
    padding-left: 35px;
    margin: 0 0 20px;
}
.footer-contact ul li img {
    position: absolute;
    left: 0;
    top: 5px;
}
.footer-contact ul li  .contact-info {
    width: 100%;
    position: relative;
    color: #000000;
}
.footer-contact ul li .contact-info h3 {
    color: #150089;
    font-family: 'manifav2bold';
    font-size: 30px;
    line-height: 30px;
    margin: 0;
}
.footer-contact ul li .contact-info p, .footer-contact ul li .contact-info p a, .footer-contact ul li .contact-info a {
    margin: 0;
    color: #000000;
    font-size: 15px;
}
.footer-contact ul li:nth-child(2) .contact-info a {
    margin-top: 4px;
    display: inline-block;
}
.footer-menu {
    width: 100%;
    position: relative;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
    padding: 30px 0;
    margin-top: 40px;
}
.footer-menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: auto;
}
.footer-menu ul li {
    margin: 5px 10px;
}
.footer-menu ul li a {
    color: #000000;
    font-family: 'Outfit-Medium';
    font-size: 15px;
}
.footer-menu ul li a:hover {
    color: #150089;
}
.footerBtm {
    width: 100%;
    position: relative;
    padding: 25px 5%;
    color: #000000;
    font-family: 'Outfit-SemiBold';
    font-size: 16px;
}
.footerBtm .copyright {
    text-align: center;
    margin: 0;
}
.footerBtm  .oliveCopyright {
    text-align: right;
    margin: 0;
}
/*Footer close*/

/*About Us Page Start*/
.inner-banner {
    width: 100%;
    position: relative;
}
.inner-banner .banner-overlay {
    width: 100%;
    position: relative;
}
.inner-banner .banner-overlay img {
    min-height: 250px;
    object-fit: cover;
}
.inner-banner .banner-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 32, 82, 0.85) 0%, rgba(27, 29, 86, 0.51) 22.12%, rgba(22, 24, 93, 0.476) 73.08%, rgba(18, 21, 98, 0.85) 100%);
}
.inner-banner .banner-content {
    position: absolute;
    bottom: 15%;
    left: ;
    color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 0 15px;
}
.inner-banner .banner-content .banner-title {
    width: 100%;
    position: relative;
}
.inner-banner .banner-content .banner-title .banner-border {
    width: 100%;
    position: relative;
}
.inner-banner .banner-content .banner-title .banner-border .title-border {
    max-width: 170px;
    margin: auto;
    left: 0;
    right: 0;
}
.inner-banner .banner-content .banner-title h1 {
    font-family: 'manifav2bold';
    font-size: 80px;
    line-height: 55px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.inner-banner .banner-content .banner-title nav .breadcrumb {
    justify-content: center;
    margin: 0;
}
.inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item {
    color: #22D669;
    font-size: 35px;
    font-family: 'manifav2bold';
    line-height: 30px;
}
.inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item a {
    color: #ffffff;
}
.inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item::before {
    color: #22D669;
}
.about-overview {
    width: 100%;
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8E8E8 100%);
}
.about-overview .img-block .col-6:nth-child(2) img:last-child {
    margin-top: 22px;
}
.about-overview .content {
    width: 100%;
    position: relative;
    padding-left: 20px;
}
.about-overview .content .about-title {
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}
.about-overview .about-title h2 {
    font-family: 'manifav2bold';
    font-size: 65px;
    line-height: 55px;
    color: #150089;
    padding-bottom: 10px;
}
.about-overview .content p {
    font-family: 'Outfit-Regular';
    color: #282828;
    margin-bottom: 20px;
}
.our-values {
    width: 100%;
    position: relative;
}
.our-values .item {
    width: 100%;
    position: relative;
    height: calc(100% - 24px);
    margin: 12px 0;
    border-radius: 6px;
    overflow: hidden;
    height: 400px;
}
.our-values .item .flip-card-front:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000000 91.35%);
}
.our-values .item .content {
    align-items: center;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    right: 0px;
    left: 0px;
    margin: auto;
    position: absolute;
    width: 100%;
    padding: 15px 55px 15px 15px;
    color: #FFFFFF;
    font-size: 28px;
    font-family: 'manifav2bold';
    line-height: 23px;
}
.our-values .item .content:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #2D9DFF;
    border-radius: 6px;
}
.our-values .item .content:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    background-image: url(../images/valueBtn.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.our-values .item .contentHover {
   
    bottom: 0;
    display: flex;
    align-items: center;
    left: 0;
    opacity: 1;
    padding: 20px 25px;
    position: absolute;
    right: 0;
    top: 0;
    /*transform: translateX(-100%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: .3s;
    visibility: hidden;*/
    width: 100%;
}
/*.our-values .item:hover .contentHover {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    color: #ffffff;
}*/
/*.our-values .item:hover .content {
    visibility: hidden;
    opacity: 0;
}*/
.our-values .item .contentHover .centerContent { 
    width: 100%;
    position: relative;
    color: #FFFFFF;
    text-align: left;
}
.our-values .item .contentHover .centerContent h3 {
    font-size: 28px;
    font-family: 'manifav2bold';
    line-height: 23px;
    position: relative;
    padding-bottom: 10px;
}
.our-values .item .contentHover .centerContent h3:after {
    position: absolute;
    content: '';
    height: 3px;
    width: 44px;
    background-color: #22D669;
    bottom: 0;
    left: 0;
    border-radius: 6px;
}
.our-values .item .contentHover .centerContent p {
    font-size: 14px;
    margin: 0;
}
.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}
.our-values .item:hover .flip-card {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}
.flip-card-front {
  z-index: 2;
}
.flip-card-back {
  transform: rotateY(180deg);
   background: #150089;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
/*About Us Page Close*/

/*Service Page Start*/
.service-list {
    width: 100%;
    position: relative;
}
.border-title  {
    width: 100%;
    position: relative;
    padding-bottom: 5px;
}
.border-title .title-border {
    max-width: 170px;
    margin: auto;
    left: 0;
    right: 0;
}
.service-list .item {
    width: 100%;
    position: relative;
    height: 370px;
    margin: 12px 0;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.service-list .item:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
}
.service-list .item:hover:before{
    background: linear-gradient(0deg, #150089 0%, rgba(102, 102, 102, 0) 100%);
}
.service-list .item .content {
    align-items: center;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    right: 0px;
    left: 0px;
    margin: auto;
    position: absolute;
    width: 100%;
    padding: 15px 55px 15px 15px;
    color: #FFFFFF;
    font-family: 'manifav2bold';
    font-size: 42px;
    line-height: 26px;
    text-transform: uppercase;
}
.service-list .item img{height: 100%;object-fit: cover;}
.service-list .item .content:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    background-image: url(../images/whiteAction.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.service-list .item .contentHover {
    background: rgba(39, 53, 160, 0.94);
    bottom: 0;
    display: flex;
    align-items: center;
    left: 0;
    opacity: 0;
    padding: 20px 25px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(100%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: .3s;
    visibility: hidden;
    width: 100%;
}*/
/*.service-list .item:hover .contentHover {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    color: #ffffff;
}*/
.service-list .item .contentHover h3 {
    width: 100%;
    font-family: 'manifav2bold';
    font-size: 42px;
    line-height: 26px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 50px;
    text-align: center;
}
.service-list .item .contentHover h3:after {
    position: absolute;
    content: '';
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 34px;
    height: 34px;
    background-image: url(../images/whiteAction.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.service-list .item:hover .content {
    visibility: hidden;
    opacity: 0;
}*/
/*Service Page Close*/

/*Service Detail Page Start*/
.service-overview {
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding-bottom: 100px !important; */
}
.service-overview .service-center {
    width: 100%;
    position: relative;
    padding: 25px;
    background-color: #F4F9FD;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}
.service-overview figure {
    margin: 0;
}
.service-overview .content {
    width: 100%;
    position: relative;
}
.service-overview .content h3 {
    font-family: 'manifav2bold';
    font-size: 50px;
    line-height: 40px;
    color: #150089;
}
.service-overview .content p {
    color: #282828;
    margin: 10px 0 0;
}
.global-solution {
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    background: transparent!important;
    margin-bottom: 60px;
}
.global-solution:before {
    position: absolute;
    content: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#2D9DFF;
/*    background: linear-gradient(90deg, rgba(7, 168, 71, 0.78) 0%, rgba(18, 119, 58, 0.78) 100%);*/

}
.global-solution .serviceRight, .global-solution .serviceLeft {
    width: 20%;
    position: relative;
    display: none;
}
.global-solution .content {
    margin: 0 auto;
    padding: 30px 50px 30px;
    text-align: center;
    width: 100%;
    z-index: 1;
    background:#2D9DFF;
    max-width: 1000px;
}
.global-solution .content p {
    color: #ffffff;
    margin: 0;
}
.global-solution .content .gs-logo {
    margin: 0 0 20px;
}
.our-equity {
    width: 100%;
    position: relative;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
    background: url(../images/services-ourEquity-bg.webp) no-repeat!important;
}
.our-equity:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 0, 137, 0.9);
}
.our-equity .header-title h2 {  
    color: #ffffff;
    font-size: 60px;
    line-height: 50px;
    max-width: 490px;
}
.equity-carousal {
    padding-bottom: 50px;
}
.equity-carousal .item {
    width: 100%;
    position: relative;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 20px 10px 10px;
    overflow: hidden;
}
.equity-carousal .item img {
    width: auto;
    max-height: 65px;
}
.equity-carousal .item .detail {
    width: 100%;
    position: relative;
    border-top: 1px solid #ffffff;
    margin-top: 30px;
    padding: 10px 40px 5px 5px;
    color: #ffffff;
    font-family: 'manifav2bold';
    font-size: 26px;
    line-height: 22px;
	min-height: 60px;
}
.equity-carousal .item .detail:after {
    position: absolute;
    content: '';
    top: 10px;
    right: 5px;
    width: 34px;
    height: 34px;
    background-image: url(../images/whiteAction.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}
.equity-carousal .owl-nav {
    position: absolute;
    width: 80px;
    height: 34px;
    background-color: #140087CC;
    bottom: 0;
    right: 0;
    display: block !important;
}
.equity-carousal .owl-nav button {
    width: 40px;
    height: 34px;
    outline: none;
    color: #0d2dad !important;
    background-color: #ffffff !important;
}
.equity-carousal .owl-nav button span {
    font-size: 30px;
    line-height: 22px;
    font-family: none !important;
    font-weight: 100;
}
.equity-carousal .owl-nav button.owl-prev {
    border-right: 1px solid #0a2ea6;
}
.equity-carousal .item .contentHover {
    background: rgba(39, 53, 160, 0.94);
    bottom: 0;
    display: flex;
    align-items: center;
    left: 0;
    opacity: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(100%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: .3s;
    visibility: hidden;
    width: 100%;
}
.equity-carousal .item:hover .contentHover {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    color: #ffffff;
}
.equity-carousal .item:hover .detail {
    visibility: hidden;
    opacity: 0;
}
.equity-carousal .item .contentHover ul {
    padding-left: 15px;
}
.equity-carousal .item .contentHover ul li {
    font-size: 14px;
    margin: 0 0 5px;
    list-style: disc;
}
.equity-carousal .item .contentHover p {
    font-size: 14px;
    margin: 0 0 5px;
}
/*Service Detail Page Close*/

/*News Page Start*/
.news-list {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F3F3 109.96%);
}
.news-list .header-title p {
    margin: 15px auto 0;
    max-width: 620px;
}
.news-list .news-link {
    width: 100%;
    position: relative;
    height: calc(100% - 24px);
    margin: 12px 0;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.news-list .news-link img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
}
.news-list .news-link .content {
    bottom: 0;
    left: 0;
    padding: 15px 65px 15px 15px;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.news-list .news-link .content h3 {
    color: #22D669;
    font-family: 'manifav2bold';
    font-size: 21px;
    line-height: 22px;
    margin-bottom: 0;
}
.news-list .news-link .content p {
    color: #fff;
    margin: 0;
    font-family: 'Outfit-Light';
    font-size: 15px;
    line-height: 20px;
}
.news-list .news-link .content:after {
    position: absolute;
    content: '';
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-image: url(../images/whiteAction.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
}
.news-list .news-link:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #000000 0%, rgba(102, 102, 102, 0) 58.65%);
    border-radius: 0;
}
.news-list .news-link:hover:before {
    background: linear-gradient(0deg, #150089 0%, rgba(102, 102, 102, 0) 58.65%);
}
.news-list .news-link:hover .content {
    transform: translateY(-1rem);
}
/*News Page Close*/

/*Career Page Start*/
.explore-opportunities {
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #E8E8E8 0%, #F3F3F3 100%);
}
.explore-opportunities .header-title p {
    margin: 15px auto 0;
    max-width: 700px;
}
.explore-opportunities .explore-title {
    width: 100%;
    position: relative;
    padding: 20px 0 15px;
}
.explore-opportunities .explore-title h3 {
    font-family: 'manifav2bold';
    font-size: 55px;
    line-height: 38px;
    text-transform: uppercase;
    color: #000000;
}
.job-card {
    width: 100%;
    position: relative;
}
.job-card .item {
    width: 100%;
    height: calc(100% - 24px);
    margin: 12px 0;
    position: relative;
    background-color: #FFFFFF;
    display: block;
    padding: 15px 15px 50px;
    color: #000000;
    transition: 0.3s;
}
.job-card .item:hover {
    transform: translateY(-1rem);
}
.job-card .item:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 10px;
    right: 10px;
    background-color: #F5F5F5;
    z-index: -1;
}
.job-card .item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0px;
    right: 0px;
    background-color: #ffffff;
    z-index: -1;
}
.job-card .item .itemDetail {
    width: 100%;
    position: relative;	
}
.job-card .item .itemDetail:after {
	position: absolute;
	content: '';
	bottom: -45px;
	right: 0;
	width: 34px;
	height: 34px;
	background-image: url(../images/valueBtn.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.job-card .item .jobTitle {
    color: #150089;
    font-size: 32px;
    font-family: 'manifav2bold';
    line-height: 28px;
}
.job-card .item  .postTime {
    font-size: 16px;
    margin: 5px 0;
    font-family: 'Outfit-Medium';
}
.job-card .item ul {
    width: 100%;
    position: relative;
}
.job-card .item ul li {
    font-size: 16px;
    margin: 10px 0;
}
.job-card .item ul li img {
    padding-right: 10px;
}
.applyNow {
    width: 100%;
    position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.career-form {
    width: 100%;
    position: relative;
    padding: 50px;
    background: linear-gradient(180deg, #E8E8E8 0%, #F3F3F3 100%);
    max-width: 900px;
    margin: auto;
}
.applyNow .header-title h2 {
    font-size: 60px;
    line-height: 50px;
}
.jobDetail {
    width: 100%;
	position: relative;
    background: linear-gradient(180deg, #E8E8E8 0%, #F3F3F3 100%);
}
.jobDetail .header-title {
    max-width: 100%;
    border-bottom: 1px solid #8B8B8B;
    padding-bottom: 20px;
}
.jobDetail .jobGroup {
    width: 100%;
	position: relative;
}
.jobDetail .jobGroup .group {
    width: 100%;
	position: relative;
    margin: 15px 0 30px;
}
.jobDetail .jobGroup .group:last-child {
    margin-bottom: 0px;
}
.jobDetail .jobGroup .group h2, .jobDetail .jobGroup .group h3, .jobDetail .jobGroup .group h4, .jobDetail .jobGroup .group h5, .jobDetail .jobGroup .group h6 {
    font-family: 'manifav2bold';
    color: #150089;
}
.jobDetail .jobGroup .group h3 {
    font-family: 'manifav2bold';
	font-size: 35px;
	line-height: 30px;
}
.jobDetail .jobGroup .group p {
	margin-bottom: 10px;
	text-align: justify;
}
.jobDetail .jobGroup .group .info {
    width: 100%;
	position: relative;
}
.jobDetail .jobGroup .group .info .type {
    width: 100%;
	position: relative;
	padding-left: 35px;
	margin: 10px 0;
}
.jobDetail .jobGroup .group .info .type img {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 20px;
    height: 22px;
}
.jobDetail .jobGroup .group ul, .jobDetail .jobGroup .group ol {
    width: 100%;
	padding-left: 20px;
}
.jobDetail .jobGroup .group ul li, .jobDetail .jobGroup .group ol li {
    width: 100%;
    padding: 5px 0;
    text-align: justify;
}
.jobDetail .jobGroup .group ul li {
    list-style: disc;
}
.jobDetail .jobGroup .group ol li {
    list-style: decimal;
}
.jobDetail .jobGroup .btn-blueBorder:hover:before {
    width: calc(50% + 1px);
}
.modal-header .modal-title {
    font-family: 'manifav2bold';
    font-size: 40px;
    line-height: 30px;
    text-transform: uppercase;
    color: #150089;
}
.modal-header .btn-close {
    opacity: 1;
    border: 2px solid #150089;
    box-shadow: none;
    outline: none;
}
.form-theme {
	width: 100%;
	position: relative;
}
.form-theme .form-group, .webform-submission-form .form-item {
	margin-bottom: 20px;
	position: relative;
}
.form-theme .form-group label, .webform-submission-form .form-item label {
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-bottom: 3px;
	color: #000000;
	display: block;
}
.career-form .form-theme .form-group input::placeholder, .career-form .form-theme .form-group textarea::placeholder, .webform-submission-form .form-item input::placeholder, .webform-submission-form .form-item textarea::placeholder {
    color: #000000;
}
.form-theme .form-group .form-control, .webform-submission-form .form-item input, .webform-submission-form .form-item select, .webform-submission-form .form-item textarea {
	font-size: 14px;
	color: #000000;
	border-radius: 0;
	border: 1px solid #d3d3d3 ;
    padding: 10px 15px;
	outline: none;
	box-shadow: none;
	width: 100%;
}
.webform-submission-form .form-item input#edit-upload-resume-upload {
    width: auto;
}
.form-item__description{display: none;}
.form-theme .form-group .form-control::placeholder, .webform-submission-form .form-item input::placeholder, .webform-submission-form .form-item select::placeholder, .webform-submission-form .form-item textarea::placeholder{
    color: #444444a8;
}
.form-theme .form-group.file-upload {
    display: flex;
    align-items: center;
}
.form-theme .form-group.file-upload label {
	font-size: 14px;
	color: #000000;
	margin-right: 5px;
	width: auto;
}
.form-theme .btn-submit:hover, .webform-submission-form .form-submit:hover {
    background-color: #150089;
    color: #fff;
    border-color: #150089;
}
.form-theme .btn-submit, .webform-submission-form .form-submit {
    border-radius: 0;
    background-color: #2D9DFF;
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #2D9DFF;
    transition: 0.5s all;
}
.modal-body.career-form {
    padding: 20px;
}
/*Career Page Close*/

/*Contact Page Start*/

.contact-block {
    width: 100%;
    position: relative;
    background: #F0F0F0;
    overflow: hidden;
}
.contact-form {
    width: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 25px 20px;
}
.contact-left {
    width: 100%;
    position: relative;
    padding-right: 50px;
}
.contact-left .footer-contact {
    padding: 0;
    border: 0;
}
.contact-left  .contact-title {
    width: 100%;
    position: relative;
}
.contact-left .contact-title h3 {
    font-family: 'manifav2bold';
    font-size: 45px;
    line-height: 37px;
    color: #150089;
}
.contact-left .contact-title h4 {
    font-family: 'manifav2bold';
    font-size: 45px;
    line-height: 37px;
    color: #000000;
}
.contact-left .contact-title p {
    margin-bottom: 20px;
}
.form-theme .form-group {
    margin-bottom: 20px;
}
.form-theme .btn-submit, .contact-form .form-submit {
    width: 100%;
}
/*Contact Page Close*/

/*Admin css start*/
#user-login-form {
    max-width: 768px;
    width: 100%;
    margin: 100px auto 50px;
    padding: 0 15px;
    border: 1px solid #dedede;
}
#user-login-form .form-item {
    margin-top: 1em;
    margin-bottom: 1em;
}
#user-login-form .form-item label {
    font-weight: 500;
}
#user-login-form .form-item input {
    color: #323232;
    height: 45px;
    outline: none;
    border: 1px solid #dedede;
    font-size: 16px;
    font-weight: 300;
    display: block;
    width: 100%;
    padding: 6px 12px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#user-login-form .form-actions {
    margin-top: 1em;
    margin-bottom: 1em;
}
#user-login-form .form-actions #edit-submit {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px 30px;
    width: 125px;
    font-size: 18px;
    background-color: #095394;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    border: 1px solid transparent;
    color: #fff;
    margin-right: 0px;
}
/*Admin css close*/
/*thanks page style*/
.thankSec{background: #F0F0F0;padding: 70px 0;}
.thnksElem{background: #fff;padding: 60px 0;}
.thnksElem .box{width: 400px;margin: 0 auto;text-align: center;max-width: 100%}
.thnksElem .dots{display: flex;align-items: center;justify-content: center;border-bottom: 1px solid #000;padding-bottom: 15px;margin-bottom: 20px;}
.thnksElem .dots .dot{width: 11px;height: 11px;border-radius: 50%;background: #150089;margin: 0 2px;}
.thnksElem .dots:last-child {border-bottom: none;border-top: 1px solid #000;padding: 15px 0 0 0;margin: 30px 0 0;}
.thnksElem .box h2{font-family: 'manifav2bold';font-size: 120px;line-height: 100px;color: #000;}
.thanksBanner .title-border{bottom: -22px;}
.thanksBanner.inner-banner .banner-content .banner-title h1{text-transform: capitalize;}
.errorPage .thnksElem .box{width: 640px;max-width: 100%}
.errorPage .thnksElem .box h2{font-size: 70px;line-height: normal;}
.search_block{padding: 60px 0}
.search_result_page{    width: 500px;
    margin: 0 auto 40px;
    max-width: 100%;}
.search_result_page .views-exposed-form{display: flex;
    position: relative;}    
.search_result_page .views-exposed-form label{display: none;} 
.search_result_page .views-exposed-form .js-form-item{width: 100%}
.search_result_page .views-exposed-form .js-form-item input{width: 100%;
    height: 45px;
    padding: 10px 100px 10px 15px;
    margin: 0;
    border: 1px solid #2D9DFF;}
.search_result_page .views-exposed-form .form-actions{position: absolute;
    top: 0;
    right: 0;}
.search_result_page .views-exposed-form .form-actions input{    border-radius: 0;
    background: #2D9DFF;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #2D9DFF;
    transition: 0.5s all;
    padding: 9px 20px;}    
.search_result_page .views-exposed-form .form-actions input:hover{background: #150089;border-color: #150089}    
.search_block .result_item a{font-size: 20px;}
.no_result{text-align: center;}
.service-list .item .contentHover{display: none;}

.our-services .header-title h2{/* font-size: 60px; */}
.our-services .header-title p{max-width: 640px}

@media only screen and (max-width: 1600px) {
    .space-t {
        padding-top: 50px;
    }
    .space-b {
        padding-bottom: 50px;
    }
    .our-equity {
        padding-top: 150px;
    }
}
@media only screen and (max-width: 1399px) {
    .our-equity {
        padding-top: 100px;
    }
	.comprehensive-block .content .comprehensive-title h2, .about-overview .about-title h2, .applyNow .header-title h2, .our-equity .header-title h2 {
		font-size: 50px;
		line-height: 40px;
	}
    .service-carousal .item .content h3, .explore-opportunities .explore-title h3, .service-overview .content h3 {
        font-size: 45px;
        line-height: 35px;
    }
    .contact-left .contact-title h3, .contact-left .contact-title h4, .service-list .item .content {
        font-size: 40px;
        line-height: 30px;
    }
    .header-title h2, .inner-banner .banner-content .banner-title h1 {
        font-size: 70px;
        line-height: 50px;
    }
    .home-banner .banner-content .banner-title h1 {
        font-size: 90px;
        line-height: 65px;
    }
    .inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item {
        font-size: 30px;
        line-height: 25px;
    }
    header .navbar .navbar-nav .nav-item:not(:first-child) {
        margin-left: 40px;
    }
    header .menu-header .menu-scroll .social-nav li {
        margin-left: 30px;
    }
    header .menu-header .menu-scroll {
        padding-right: 70px;
    }
    .equity-carousal .item .detail{font-size: 21px}

}
@media only screen and (max-width: 1199px) {
    body {
        font-size: 15px;
    }
    .space-tb {
        padding: 50px 0;
    }
    .space-t {
        padding-top: 50px;
    }
    .space-b {
        padding-bottom: 50px;
    }
    .our-equity {
        padding-top: 80px;
    }
	.comprehensive-block .content .comprehensive-title h2, .about-overview .about-title h2, .applyNow .header-title h2, .our-equity .header-title h2 {
		font-size: 45px;
		line-height: 35px;
	}
	.service-overview .content h3 {
		font-size: 40px;
		line-height: 30px;
	}
    .header-title h2, .inner-banner .banner-content .banner-title h1 {
        font-size: 60px;
        line-height: 45px;
    }
    .inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item {
        font-size: 26px;
        line-height: 22px;
    }
    .service-carousal .item .content h3, .explore-opportunities .explore-title h3 {
        font-size: 35px;
        line-height: 30px;
    }
    .contact-left .contact-title h3, .contact-left .contact-title h4, .service-list .item .content {
        font-size: 35px;
        line-height: 30px;
    }
    .explore-opportunities .explore-title {
        padding-bottom: 0;
    }
    .home-banner .banner-content .banner-title h1 {
        font-size: 70px;
        line-height: 50px;
    }
    .news-right .item .news-link img, .news-list .news-link img {
        max-height: 470px;
    }
    .home-banner .banner-content .title-border span:nth-child(3) {
        width: 100px;
    }
    .home-banner .banner-content p {
        margin-left: 200px;
    }
    .contact-left .footer-contact {
        max-width: 100%;
    }
    .jobDetail .header-title {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .global-solution .serviceRight, .global-solution .serviceLeft {
        width: 25%;
    }
    .global-solution .content {
        padding: 80px 25px 25px;
        width: 50%;
    }
    .service-overview {
        /* padding-bottom: 110px !important;     */
    }
    .service-list .item{height: 290px}
}
@media only screen and (max-width: 991px) {
    .service-list .item{height: 220px}
    .service-list .item .content:after{top: 5px}
    .service-list .item .content {font-size: 22px;line-height: normal;}
	.header-title {
		margin: 0 auto 15px;
	}
    .space-tb {
        padding: 30px 0;
    }
    .space-t {
        padding-top: 30px;
    }
    .space-b {
        padding-bottom: 30px;
    }
    .our-equity {
        padding-top: 30px;
    }
    footer {
        padding-top: 40px;
    }
	.comprehensive-block .content {
	}
	.comprehensive-block .content .comprehensive-title h2, .question-block .about-overview .about-title h2, .applyNow .header-title h2, .our-equity .header-title h2 {
		font-size: 35px;
		line-height: 25px;
	} 
	.service-overview .content h3 {
		font-size: 28px;
		line-height: 20px;
	}
    .header-title h2, .inner-banner .banner-content .banner-title h1 {
        font-size: 50px;
        line-height: 40px;
    }
    .inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item {
        font-size: 22px;
        line-height: 20px;
    }
    .home-banner .banner-content .banner-title h1 {
        font-size: 60px;
        line-height: 40px;
    }
    .service-carousal .item .content h3 {
        font-size: 30px;
        line-height: 25px;
        padding-right: 30px;
    }
    .home-banner .banner-content .banner-title .title-border {
        bottom: -8px;
    }
    .home-banner .banner-content p {
        margin-left: 0px;
    }
    .home-banner .banner-content .action {
        margin: 10px 0 0;
    }
    header .menu-header {
        border: 0;
        width: calc(100% - 100px);
    }
    header .navbar {
        padding: 0px 15px 0;
    }
    header .btn-right {
        display: block;
        position: absolute;
        right: 10px;
        top: 12px;
        z-index: 2;
    }   
    header .btn-right .navbar-toggler {
        padding-bottom: 5px;
        width: auto;
        outline: none;
        box-shadow: none;
    } 
    header .btn-right .navbar-toggler .navbar-toggler-icon {
        background-image: url(../images/mob-menu.png);
        background-size: 18px 19px;
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
        width: 20px;
        height: 20px;
    }
     header .btn-right .navbar-toggler.cross .navbar-toggler-icon {
        background-image: url(../images/close.svg);
        filter: brightness(0) invert(1);
    }
    header .menu-header .menu-scroll {
        padding-right: 0px;
    }
    header .search-item {
        width: 35px;
        right: 60px;
        height: 35px;
        top: 10px;
    }
    header .navbar-brand {
        width: 100px;
    }
    header .search-item .search-btn {
        width: 20px;
        height: 20px;
        background-size: 15px;
    }
     header .navbar-collapse {
        position: fixed;
        right: -345px;
        top: 0;
        bottom: 0;
        max-width: 290px;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        z-index: 2;
        background: linear-gradient(180deg, #043297 0%, #0F2BB2 100%);
        box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
        padding: 15px;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        display: block !important;
        padding-top: 15px;
    }
    header .navbar-collapse.active {
        right: 0;
    }
    header .navbar .navbar-nav .nav-item:not(:first-child) {
        margin-left: 0px;
    }
    header .navbar-collapse .menu-scroll {
        overflow-y: scroll;
        height: 100%;
        display: block;
        padding-top: 50px;
    }
    header .navbar-collapse .menu-scroll .navbar-nav {
        display: block;
    }
    header .navbar .navbar-nav .nav-item .nav-link {
        padding: 15px 0;
        display: block;
    }
    header .navbar .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    header .navbar .navbar-nav .nav-item .dropdown-toggle {
        position: absolute;
        right: 0;
        top: 14px;
        padding: 0;
        width: 20px;
        text-align: right;
    }
	header .navbar .navbar-nav .nav-item.dropdown {
		display: block !important;
		position: relative;
	}
	header .navbar .navbar-nav .nav-item .dropdown-menu {
		position: static !important;
	}
	header .navbar .navbar-nav .nav-item .dropdown-menu:before {
		display: none;
	}
	header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
		display: none;
		visibility: hidden;
		opacity: 0;
		padding: 0;
	}
	header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		display: block;
		visibility: visible;
		opacity: 1;
		padding: 0;
		background-color: #fff;
		padding: 10px 0;
		border-radius: 6px;
		box-shadow: none;
		width: 100%;
	}
	header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu li a {
		color: #000;
		padding: 6px 10px;
		border-bottom: 1px solid #cecece;
	}
    header .menu-header .menu-scroll .social-nav {
        margin: 20px 0 0;
    }
    header .menu-header .menu-scroll .social-nav li {
        margin-left: 0px;
        margin-right: 20px;
    }
    header .search-bar {
        top: 45px;
    }
    header .search-bar.active {
        width: 300px;
        padding: 10px 15px 5px;
        right: 60px;
    }
    header .search-bar .form-group .form-control {
        height: 35px;
        width: calc(100% - 40px);
        margin-right: 5px;
    }
    header .search-bar .form-group .btn {
        height: 35px;
        width: 35px;
    }
    header .search-bar .form-group .btn img {
        width: 14px;
    }
    header .navbar .navbar-nav .nav-item .nav-link:before {
        display: none;
    }
    .comprehensive-block .content p {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .comprehensive-block {
        padding: 50px 0 60px;
    }
    .home-banner .banner-scroll .scroll-img {
        width: 26px;
        padding: 5px 5px;
    }
    .home-banner .banner-scroll {
        bottom: -26px;
    }
    .home-banner .banner-scroll span {
        font-size: 13px;
    }
    .inner-banner .banner-content .banner-title nav .breadcrumb .breadcrumb-item {
        font-size: 20px;
        line-height: 16px;
    }
    .our-services .header-title h2 {
        max-width: 100%;
        text-align: center;
    }
    .our-services .header-title p {
        margin: 0 0 15px;
        padding: 0;
        border: 0;
        max-width: 100%;
        text-align: center;
    }
    .our-services .header-title {
        display: block;
    }
    .our-services .header-title .services-action img {
        width: 35px;
    }
    .service-carousal {
        padding: 0 0;
    }
    .service-carousal .owl-dots {
        display: none;
    }
    .service-carousal .item {
        padding-left: 0;
    }
    .service-carousal .item .content {
        background-color: rgb(255 255 255 / 80%);
        left: 20px;
        bottom: 20px;
        padding: 15px 40px 14px 15px;
    }
    .service-carousal .owl-nav {
        bottom: 30px;
        width: 60px;
        height: 30px;
        left: 377px;
    }
    .service-carousal .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 18px !important;    
    }
    .service-carousal .owl-nav button span {
        font-size: 24px;
        line-height: 20px;   
    }
    .service-carousal .item .content .action img, .news-right .item .news-link .content:after {
        width: 35px;
    }
    .service-carousal .item .content .action {
        top: 15px;
        right: 15px;
    }
    .news-room .news-room-container {
        padding-left: 5%;
    }
    .news-right .item .news-link .content {
        padding: 15px 55px 15px 15px;
    }
    .contact-form {
        padding: 20px;
        margin-top: 20px;
    }
    .contact-left {
        width: 100%;
        padding-right: 0px;
    }
    .jobDetail .jobGroup .group h3 {
        font-size: 30px;
        line-height: 24px;    
    }
    .footer-contact ul li .contact-info h3 {
        font-size: 26px;
        line-height: 24px;
    }
    .about-overview .content {
        padding: 20px 0 0;
    }
    .our-values .item .content, .our-values .item .contentHover .centerContent h3 {
        font-size: 24px;
        line-height: 20px;
    }
    .service-list .item .content {
        font-size: 30px;
        line-height: 26px;
    }
    .service-overview .content {
        padding-top: 20px;
    }
    .service-overview figure {
       text-align: center;
    }
    .service-overview figure img {
       width: auto !important;
    }
    .our-equity .header-title {
        margin-bottom: 20px;
    }
    .equity-carousal .item .detail {
        font-size: 22px;
        line-height: 20px;
    }
    .thnksElem .box{padding: 0 15px}
    .thnksElem .box h2{font-size: 70px;line-height: normal;}
    .career-form{padding: 20px}
	.question-block .header-title h2, .question-block .header-title h2, .question-block .services-action {
		font-size: 35px;
        line-height: 25px;	
	}
	.question-block .services-action img {
		max-width: 32px;
	}
}
@media only screen and (max-width: 767px) {
	/* .comprehensive-block .content .second-para { */
        /* display: none; */
    /* } */
    .global-solution .content .gs-logo{top: 0}
    .service-list .item {height: 270px;    }
    .thnksElem{padding: 70px 0}
    .errorPage .thnksElem .box h2{font-size: 50px}
    .thankSec{padding: 50px 0}
    footer {
        padding-top: 30px;
    }
    .home-banner .banner-content .banner-title h1 {
        font-size: 50px;
        line-height: 40px;
    }
    .question-block .header-title {
        border: 0;
        padding: 0 0 10px;
	    text-align: center;
    }
    .question-block .services-action {
        margin: 0;
    }
    .home-banner  .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .home-banner .banner-content {
        top: 50%;
    }
    .btn-whiteBorder, .btn-solidGreen, .btn-blueBorder {
        padding: 10px 30px 10px 15px;
    }
    .home-banner .banner-overlay img {
        height: 450px;
    }
    .service-carousal .item .content {
        position: relative;
        max-width: 100%;
        left: inherit;
        bottom: inherit;
        border-radius: 0 0 6px 6px;
        margin-top: -2px;
        padding: 15px;
    }
    .service-carousal .item figure img {
        border-radius: 6px 6px 0 0;
    }
    .service-carousal .owl-nav {
        bottom: 0;
        left: calc(50% - 30px);
    }
    .service-carousal {
        padding-bottom: 40px;
    }
    .our-services .header-title .services-action img, .service-carousal .item .content .action img {
        width: 30px;
    }
    .comprehensive-block:after, .comprehensive-block:before {
        width: 40px;
        height: 30px;
        bottom: -15px;
    }
    .news-room .news-room-container {
        padding: 0 15px;
        display: block;
    }
    .news-room .news-room-container .header-title {
        max-width: 540px;
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .news-room .news-room-container .header-title h2, .news-room .news-room-container .header-title p {
        max-width: 100%;
    }
    .news-room .news-room-container .header-title p {
        margin-bottom: 15px;
    }
    .news-room .news-room-container .news-right {
        width: 100%;
    }
    .news-right .item .news-link .content {
        padding: 15px 50px 15px 10px;
    }
    .news-right .item .news-link .content:after {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 10px;
    }
    footer .footer-info {
        padding-right: 20px;
        max-width:300px;
    }
    footer .footer-info ul{justify-content: flex-start}
    .footer-contact {
        padding-left: 20px;
        max-width: calc(100% - 200px);
    }
    .footer-menu {
        padding: 20px 0;
        margin-top: 25px;
    }
    .footerBtm {
        padding: 15px;
        font-size: 14px;
    }
    .footerBtm .oliveCopyright a img {
        max-width: 70px;
    }
    .footer-menu ul li a {
        font-size: 14px;
    }
    .footer-menu ul {
        justify-content: center;
    }
    .jobDetail .jobGroup .group h3 {
        font-size: 26px;
        line-height: 22px;    
    }
    .jobDetail .jobGroup .group {
        margin: 10px 0 20px;
    }
    .our-values .item .contentHover {
        padding: 20px;
    }
    .our-values .item .content:after, .service-list .item .content:after, .news-list .news-link .content:after, .job-card .item .itemDetail:after, .equity-carousal .item .detail:after {
        width: 30px;
        height: 30px;   
    }
    .service-overview .service-center {
        padding: 20px;
    }    
    .global-solution .serviceRight, .global-solution .serviceLeft {
        display: none;
    }
    .global-solution .content {
        padding: 40px 15px 25px;
        width: 100%;
    }
    .global-solution .content .gs-logo {
        max-width: 100px;
    }
    .service-overview {
        /* padding-bottom: 30px !important; */
    }
    .form-theme .form-group, .webform-submission-form .form-item{margin-bottom: 20px}
    .career-form {padding: 20px 15px;    }
    .service-list .item .content:after{top: 15px}
    .service-carousal .item, .service-carousal .item figure{height: auto;}
}
@media only screen and (max-width: 575px) {
    footer .footer-info{width: 100%}
    footer .footer-info ul li {
    margin: 0 25px 0 0;
}
    .service-list .item {        height: 220px;    }

    header .search-bar.active{        height: auto;padding: 0px 15px 0; top: 9px;}
    header .search-bar .form-search{height: 40px}

    .home-banner .banner-content  {
        top: 55%;
        width: calc(100% - 20px);
        left: 10px;
    }	
    .home-banner .banner-content .banner-title h1 {
        font-size: 28px;
        line-height: 24px;
    }	
    .home-banner .banner-overlay img {
        height: 400px;
    }
    .home-banner .btn {
        padding: 10px 25px 10px 10px;
        font-size: 13px;
    }
    .home-banner .container {
        padding: 0 15px;
    }
    .news-right .item .news-link img, .news-list .news-link img {
        max-height: 400px;
    }
    .footerBtm .copyright {
        text-align: center;
    }
    .footerBtm .oliveCopyright {
        text-align: center;
        margin-top: 5px;
    }
    .footerBtm {
        padding: 10px 15px;
        font-size: 13px;
    }
    .footer-menu {
        padding: 10px 0;
        margin-top: 0;
    }
    footer .footer-top {
        display: block;
        padding: 0 10px;
    }
    footer .footer-info {
        padding: -;
        margin: 0 0 20px;
    }
    footer .footer-info .brand img {
        max-width: 120px;
    }
    footer .footer-info ul {
        margin-top: 15px;
    }
    .footer-contact {
        max-width: 100%;
        text-align: left;
        margin: 0;
        border: 0;
        padding: revert-layer;
    }
    header .btn-right {
        right: 5px;
    }
    .service-overview .service-center {
        padding: 15px;
    }
}