/*@import url('https://fonts.cdnfonts.com/css/graphik');*/
/*@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');*/
@import url("https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/*primary color #153462*/

*{
	font-family: 'Inter', sans-serif;
	box-sizing: border-box;
	color: #151719;
	font-size: 14.4px;
}
body{
	background: #fff;
	overflow-x: hidden;
	zoom: 110%;
}


/* width */
::-webkit-scrollbar {
	width: 8px;
	height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
}
/* common */
a{
	color: #153462;
	text-decoration: none;
}
.mt-3_4rem{
	margin-top: 3.4rem;
}
.mt-5_4rem{
	margin-top: 5.4rem;
}
.fw-600{
	font-weight: 600 !important;
}
.fw-500{
	font-weight: 500 !important;
}
.fw-400{
	font-weight: 400 !important;
}
.text-primary{
	color: #153462 !important;
}
.text-justify{
	text-align: justify;
}
.heading-sm{
	font-size: 25px;
	color: rgb(0 0 0 / 50%);
	margin-bottom: 20px;
	text-align: left;
	text-transform: uppercase;
	font-weight: 700;
}
.heading-sm.white{
	color: #eee;
	opacity: 0.8;
}
.heading-sm *{
	font-size: 25px;
}
.heading-center,
.heading-left{
	font-size: 40px;
	color: #151719;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 30px;
	font-family: Bebas Neue,cursive;
	letter-spacing: 2px;
	word-spacing: 3px;
}
.heading-left::before{
	content: ' ';
	width: 25px;
	height: 2px;
	background: #151719;
	left: 2px;
	bottom: -3px;
	position: absolute;
	border-radius: 10px;
}
.heading-center.white{
	color:#fff;
}
.heading-center.white::before, 
.heading-center.white::after{
	background: #fff !important;
}
.heading-left::after{
	content: ' ';
	width: 35px;
	height: 2px;
	background: #151719;
	left: 2px;
	bottom: -9px;
	position: absolute;
	border-radius: 10px;
}
.heading-center{
	text-align: center;
}

.heading-center::before{
	content: ' ';
	width: 25px;
	height: 2px;
	background: #151719;
	left: 50%;
	transform: translateX(-50.5%);
	bottom: -3px;
	position: absolute;
	border-radius: 10px;
}
.heading-center::after{
	content: ' ';
	width: 35px;
	height: 2px;
	background: #151719;
	left: 50%;
	transform: translateX(-50%);
	bottom: -9px;
	position: absolute;
	border-radius: 10px;
}
.tagline{
	text-align: center;
	position: relative;
	color: #fff;
	margin-bottom: 40px;
	padding-bottom: 5px;
	font-weight: 600;
}

.tagline::before{
	content: ' ';
	width: 25px;
	height: 2px;
	background: #fff;
	left: 50%;
	transform: translateX(-50.5%);
	bottom: -3px;
	position: absolute;
	border-radius: 10px;
}
.tagline::after{
	content: ' ';
	width: 35px;
	height: 2px;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	bottom: -9px;
	position: absolute;
	border-radius: 10px;
}
.bg-light{
	background: #dee2eb !important;
}
.bg-yellow{
	background: #dfa525;
}
.text-yellow{
	color: #ffb400!important;
}
.bg-md-white{
	background: #fff;
}
.f-14{
	font-size: 14px !important;
}
.f-15{
	font-size: 15px !important;
}
.f-16{
	font-size: 16px !important;
}
.card{
	background: #fff;
	padding: 10px;
	border-radius: 3px;
	border: 0;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
	transition: 0.3s;
}
.card:hover{
	box-shadow: 0 5px 30px rgb(0 0 0 / 10%);
}
.bg_primary{
	background: #153462;
}
.bg_grey{
	background: #BAD1C2;
}

.btn-link{
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
}

.btn-white {
	padding: 11px 20px 10px;
	border-radius: 3px;
	border: 2px solid #fff;
	background: #fff;
	color: #151719;
	text-decoration: none !important;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	transition: all 0.5s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
}
.btn-white:hover{
	border-color: #fff;
	color: #fff;
}
.btn-white:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: #153462;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.btn-white:hover:after {
	left: 0;
	width: 100%;
}




.btn-white-outline {
	padding: 11px 20px 10px;
	border-radius: 3px;
	border: 2px solid #fff;
	background: none;
	color: #fff;
	text-decoration: none !important;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	display: inline-block;
	transition: all 0.5s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
}
.btn-white-outline:hover{
	border-color: #fff;
	color: #153462;
}
.btn-white-outline:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: #fff;
	border-radius: 0;
	transition: all 0.3s ease;
}
.btn-white-outline:hover:after {
	left: 0;
	width: 100%;
}


.btn-primary {
	padding: 11px 20px 10px;
	border-radius: 3px;
	border: 2px solid #153462;
	background: #153462;
	color: #fff;
	text-decoration: none !important;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	transition: all 0.5s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
}
.btn-primary:focus{
	box-shadow: none !important;
	background: #153462;
}
.btn-primary:active{
	box-shadow: none !important;
}
.btn-primary:hover{
	border-color: #092650;
	background: #092650;
}
.btn-primary:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: #092650;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.btn-primary:hover:after {
	left: 0;
	width: 100%;
}

.btn-dark-outline {
	padding: 11px 20px 10px;
	border-radius: 3px;
	border: 2px solid #151719;
	background: #fff;
	color: #151719 !important;
	text-decoration: none !important;
	font-weight: 600;
	font-size: 16px;
	display: inline-block;
	transition: all 0.5s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
}
.btn-dark-outline:hover{
	color: #fff !important;
}
.btn-dark-outline:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: #151719;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.btn-dark-outline:hover:after {
	left: 0;
	width: 100%;
}

.btn-l{
	padding: 14px 45px 13px;
	font-size: 17px;
}


.content-wrap{
	min-height: 100vh;
	margin-top: 75px;
}

.breadcrumbs{
	transform: skew(0deg, 2deg);
	min-height: 250px;
	margin-top: -25px;
	background: #153462;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
}
.breadcrumbs-container{
	transform: skew(0deg, -2deg);
}
.breadcrumbs .breadcrumbs-wave{
	opacity: 0.6 !important;
	mix-blend-mode: color-burn !important;
}
.breadcrumbs-wave{
	height: 100%;
	width: 100%;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.4;
	mix-blend-mode: multiply;
	object-fit: cover;
}
.breadcrumbs-title{
	font-size: 70px;
	color: #fff;
	margin:0;
	padding: 0;
	font-weight: bold;
}

.breadcrumbs-text{
	font-size: 18px;
	color: #fff !important;
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: 500;
	text-align: left;
}

.form-group{
	margin-bottom: 10px;
}
.form-control{
	box-shadow: none !important;
	height: 38px;
	border-radius: 3px;
	padding: 5px 10px;
	border-color: #cccccc8a;
	line-height: initial;
	font-size: 15px;
}
input[type="checkbox"],
input[type="radio"]{
	accent-color: #153462;
}
.form-control option{
	font-size: 15px;
}
textarea.form-control{
	height: 70px;
	border-radius: 3px;
}

.select2-container--bootstrap-5 .select2-selection{
	border-radius: 3px !important;
	min-height: 40px !important;
	box-shadow: none !important;
	padding: 6px 10px 0 !important;
}

.select2-dropdown{
	margin-top: -25px;
	border:1px solid #eee !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-search{
	display: inline-block !important;
	width: auto !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{
	font-size: 14px !important;
	border-radius: 3px !important;
	border-radius: 3px !important;
	padding: 1px 7px !important;
	letter-spacing: -0.3px;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted){
	background: #153462 !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option{
	font-size: 15px !important;
}
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{
	width: 0.5rem !important;
	height: 0.5rem !important;
}


/*menu start*/
.main-menu{
	background: rgb(255 255 255);
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	padding: 8px 0;
	backdrop-filter: blur(10px);
	z-index: 111;
	box-shadow: 0 5px 20px #00000012;
	transition: 0.3s;
}
.main-menu.scrolled{
	padding: 6px 0;
	background: rgb(255 255 255);
}
.main-menu .navbar-nav{
	margin-left: auto;
	margin-right: 0;
}
.main-menu .navbar-brand img{
	width: 190px;
}
.main-menu .navbar-nav .nav-item .nav-link{
	color: #151719;
	font-weight: 500;
	font-size: 12.5px;
	text-transform: uppercase;
	padding: 10px 11px;
	letter-spacing: -0.2px;
}
.main-menu .navbar-nav .nav-item .nav-link.active{
	color: #153462;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 12px;
	transition: 0.3s linear;
	position: relative;
}

.main-menu .nav-link.active::after{
	content: '';
	position: absolute;
	bottom: -10px;
	width: 70%;
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	background: #153462;
}
.main-menu .navbar-nav .nav-item .nav-link:hover{
	color: #153462;
}
.has-dropdown{
	display: flex;
	position: relative;
	padding-right: 0;
}
.child-menu{
	border-top: 1px solid #eeeeee;
	position: absolute;
	width: 815px;
	background: #fff;
	list-style: none;
	box-shadow: 0 10px 20px #0000000f;
	top: 58px;
	left: 0;
	min-height: 180px;
	transition: opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s ease-in-out,z-index .2s ease-in-out;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	border-radius: 0;
}
.dropdown-icon{
	margin-left: -5px;
	margin-top: 2px;
	margin-right: 3px !important;
	display: none;
}
.dropdown-icon i{
	font-size: 13px;
}
.child-menu.single{
	width:200px;
	min-height: auto;
	left: 0;
}
.main-menu .navbar-nav .nav-item:last-child .child-menu.single{
	right: 0;
	left: auto;
}
.child-menu.single .nav-link{
	min-height: auto;
	padding: 10px 15px !important;
	margin-bottom: 0 !important;
	transition: 0.3s;
}
.child-menu.single .nav-link:hover{
	background: #153462;
	color: #fff !important;
}
.child-menu .col-lg-3{
	padding: 20px 15px 15px;
	transition: 0.3s;
}
.child-menu .col-lg-3:hover{
	background: #153462;
}
.child-menu .col-lg-3:hover .nav-link{
	color: #fff !important;
}
.child-menu .col-lg-3:hover span{
	color: #fff;
}
.scrolled .child-menu{
	top: 56px;
}
.has-dropdown:hover .child-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.child-menu .nav-link{
	margin-bottom: 4px;
	min-height: 45px;
}
.child-menu span{
	font-size: 14px;
	margin-bottom: 5px;
	min-height: 70px;
}
.child-menu .btn-white{
	padding: 4px 7px 3px;
	font-size: 11px;
	background: #153462;
	color: #fff;
	border-color: #153462;
	transition: 0.3s;
}
.child-menu .btn-white:hover{
	color: #fff !important;
}
.child-menu .col-lg-3:hover .btn-white{
	background: #fff;
	color: #153462;
	border-color: #fff;
}


.login-btn {
	padding: 10px 25px !important;
	border-radius: 3px;
	border: 2px solid #153462;
	background: #153462;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	transition: all 0.5s ease;
	z-index: 1;
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
}
.login-btn:hover{
	border-color: #092650;
	color: #fff;
}
.login-btn:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: #092650;
	border-radius: 3px;
	transition: all 0.3s ease;
}
.login-btn:hover:after {
	left: 0;
	width: 100%;
}

.navbar-toggler{
	outline: none !important;
	box-shadow: none !important;
	padding-bottom: 0;
}
.navbar-toggler i{
	font-size: 20px;
}
/*menu end*/


/*banner start*/
.home-banner{
	background: #fff;
	width: 100%;
	height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.home-banner::before{
	content: '';
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 40%);
	position: absolute;
	top: 0;
	left: 0;
}
.home-banner .banner-video{
	min-width: 100%; 
	height: 100%;
	margin-top: 0;
	object-fit: cover;
}
.home-banner .banner-content{
	margin-top: 100px;
	position: absolute;
	top: 10%;
	z-index: 1;
}
.home-banner .banner-content h1{
	font-size: 42px;
	font-weight: 700;
	width: 95%;
	line-height: 54px;
	margin-bottom: 20px;
	color: #fff;
}
.home-banner .banner-content p{
	font-size: 22px;
	font-weight: 600;
	line-height: 38px;
	color: #2D3942;
	margin-bottom: 20px;
	color: #fff;
}
.home-banner .banner-content .btn-primary{
	font-size: 18px;
}
/*banner end*/



/*overview start*/
.overview{
	padding: 65px 0 50px;
	background: #153462;
}
.overview .about-content{
	width: 80%;
	margin:auto;
	position: relative;
	margin-bottom: 0;
}
.overview .about-content p{
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 10px;
	text-align: center;
}
.overview .about-content img{
	width: 120px;
	object-fit: contain;
	margin-left: 20px;
	display: block;
	position: absolute;
	top: 25%;
	left: 48%;
	transform: translateX(-50%);
	opacity: 0.2;
	z-index: 0;
}
/*overview end*/


/*IA Journey start*/
.ia-journey{
	padding: 30px 0 60px;
	overflow: hidden;
}
.journey-year{
	font-size: 28px;
	font-weight: 600;
	padding-bottom: 70px;
	display: block;
	text-align: right;
	margin-top: -5px;
	margin-right: 15px;
}
.journey-content p{
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 70px;
	margin-top: -2px;
	margin-left: 15px;
}
.journey-row .border-right{
	border-right: 3px solid transparent;
	border-image: linear-gradient(#153462b8, #15346220);
	border-image-slice: 1;
	position: relative;
}
.journey-row .border-right::after{
	content: '';
	position: absolute;
	right: -12px;
	top: 0;
	width: 20px;
	height: 20px;
	background: #153462;
	border-radius: 50%;
	border:4px solid #fff;
}
.journey-row:last-child .journey-year,
.journey-row:last-child .journey-content p{
	padding-bottom: 0;
}
/*IA Journey end*/
#potentialcaptchadiv,
#compliancecaptchadiv,
#signupcaptchadiv{
	zoom: 91% !important;
}

/*key-stats start*/
.key-stats{
	padding: 0 0 50px;
	background: #153462;
}
.key-stats-wrap{
	display: flex;
	flex-wrap: wrap;
}
.key-stats-box{
	background: #fff;
	min-height: 195px;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
	border:1px solid #eee;
}
/*.key-stats-box:hover{
	box-shadow: 0 5px 25px rgb(0 0 0 / 10%);
}*/

.key-stats-no{
	font-size: 18px;
	font-weight: 600;
}
.key-stats-title{
	margin-bottom: 0;
	font-size: 14px;
/*	display: ;*/
}
.key-stats-box img{
	width: 50px;
	margin-bottom: 10px;
}


.key-stats .key-stats-box{
	background: none;
	border:0;
	padding: 5px;
	display: block;
	text-align: center;
	min-height: auto;
}
.key-stats .key-stats-no{
	color: #fff;
	text-align: center;
}
.key-stats .key-stats-title{
	color: #fff;
	text-align: center;
}
.key-stats .key-stats-box img{
	width: 50px;
	margin:auto;
	margin-bottom: 10px;
}
/*key-stats end*/



/*services start*/

.services{
	padding:0  0 50px 0;
	background: #fff;
}
.services .service-b-box{
	padding: 60px 30px;
	position: relative;
/*	overflow: hidden;*/
}

.services .service-b-box:last-child{
	margin-bottom: 0;
}
.services .service-b-box:first-child{
	padding-top: 10px;
/*	overflow: visible;*/
}
.services .service-b-box:first-child::before{
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	background: #dfa525;
	height: 120px;
	width: 100%;
	transform: skew(0deg, 2deg);
	z-index: -2;
}
.services .service-b-box::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: #dfa525;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0;
}
.services .service-b-box:last-child::before{
	content: '';
	position: absolute;
	bottom: -100px;
	left: 0;
	background: #dee2eb;
	height: 130px;
	width: 100%;
	transform: skew(0deg, 2deg);
}
.services .service-b-box.active{
}
.services .service-b-box:nth-child(odd){
	background: #dfa525;
}
.services .service-b-box:nth-child(even){
	background: #dee2eb;
}
.services .service-b-box:nth-child(3){
	background-image:linear-gradient(#15346294, #15346294), url(../images/events.jpg);
	background-size: cover;
}
.services .service-b-box:nth-child(4){
	margin-bottom: -80px;
}
.services .service-b-box:nth-child(3) *{
	color: #fff;
}
.services .service-b-box:nth-child(odd) *{
	color: #fff;
}
.services .service-b-box:nth-child(odd) h3 *{
	color: #dfa525;
}
.services .service-b-box:nth-child(1) h3 *{
	color: #153462;
}
/*.services .service-b-box .services-bg{
	padding: 15px;
	border-radius: 15px;
	background: #1d4074;
}*/
.services-bg-box{
	margin-top: 15px;
	margin-bottom: 5px;
}
.services-bg-box:last-child{
	margin-bottom: 0;
}
.services-bg-box .sbb-icon{
	width: 55px;
	height: 55px;
	object-fit: contain;
	margin-bottom: 3px;
	background: #dfa525;
	padding: 12px;
	border-radius: 50%;
}
.services-bg-box .sbb-icon img{
	width: 100%;
}
.services .service-b-box:nth-child(1) .services-bg-box .sbb-icon{
	background: #153462;
}
.services-bg-box p{
	font-size: 15px !important;
	font-weight: 600;
	margin:0 !important;
}
.services-bg *{
	color: #fff;
}
.service-box{
	padding: 10px 0 20px 0;	
}
.skew {
	transform: skew(0deg, -2deg);
}
.unskew {
	transform: skew(0deg, 2deg);
}
.wave{
	position: absolute;
	top: 0;
	animation: crescendo 10s ease-out;
	width: 100%;
	opacity: 1;
	left: 0;
	mix-blend-mode: color-burn;
	transform: skew(0deg, 0);
}
.services-video{
	position: absolute;
	top: 0;
	width: 100%;
	max-width: 100%;
	opacity: 0.4;
	left: 0;
	mix-blend-mode: multiply;
	z-index: 0;
	transform: skew(0deg, 0);
	height: 100%;
	object-fit: cover;
}
.service-heading{
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 0;
	color: #153462;
}
.service-heading *{
	color: #dfa525;
	font-size: 35px;
}
.service-box p{
	font-size: 16px;
	margin: 10px 0 15px; 
	font-weight: 500;
}
.service-box p strong{
	font-size: 16px;
}
.service-box ul li{
	font-size: 16px;
	font-weight: 500;
}
.service-box h5{
	font-size: 16px;
	font-weight: bold;
}
.service-box p span{
	color: #153462;
	font-size: 16px;
	font-weight: 600;
}
.service-box ul li h5{
	font-size: 18px;
	margin-bottom: 10px;
}
.service-no{
	background: #386b93;
	display: flex;
	align-items: center;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 10px;
	width: 96%;
	backdrop-filter: blur(10px);
}
.service-no:last-child{
	margin-bottom: 0;
}
.service-no h4{
	font-size: 14px;
	text-align: left;
	margin-bottom: 0;
	font-weight: 500;
	color: #fff;
}
.service-no span{
	font-size: 30px;
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	color: #fff;
}
.service-points{
	background: rgb(113 111 252 / 10%);
	padding: 15px;
	border-radius: 3px;
	margin-bottom: 20px;
	transition: 0.3s;
	cursor: pointer;
}
.service-points:hover{
	background: rgb(113 111 252 / 30%);
}
.service-points p{
	text-align: center;
}
.service-box hr{
	background: #000;
	height: 1px;
	opacity: 1;
	margin: 0px 0 8px;
}
.service-box .custom-border{
	border-right: 1px solid #fff;
}
.service-box .border-bottom{
	border-bottom: 1px solid #fff !important;
}
.service-box .custom-border:last-child{
	border: 0;
}
.services-btns{
	padding-top: 1rem;
	padding-bottom: 0.25rem;
}
/*services end*/





/*about us started here*/

.about-us{
	padding: 30px 0 40px;
	background: #fff;
}
.about-us .about-us-content p{
	font-size: 16px;
	line-height: 24px;
}
.fact{
	background: #dfa525;
	padding: 50px 0 20px;
	position: relative;
	overflow: hidden;
}
.fact-wave{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	opacity: 0.4;
	mix-blend-mode: multiply;
	z-index: 0;
	height: 100%;
	object-fit: cover;
}
.fact-box{
	padding: 15px 0 0;
	border-radius: 5px;
	position: relative;
	margin-bottom: 25px;
	text-align: center;
}
.fact-box *{
	color: #fff;
}
.fact-box img{
	width: 45px;
	margin: auto;
	margin-bottom: 10px;
}
.fact-box h4{
	font-size: 20px;
	display: block;
	margin-bottom: 8px;
	text-align: center;
	font-weight: 600;
}
.fact-box p{
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
}



/*management start*/

.management{
	padding: 90px 0 40px;
	background: #dee2eb;
	margin-top: -65px;
/*	margin-bottom: -30px;*/
}
.management-box{
	border-radius: 3px;
	overflow: hidden;
	transition: 0.2s linear;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
}
.management-box:hover{
	box-shadow: 0 7px 35px rgb(0 0 0 / 7%);
	transform: scale(1.04);
}
.management-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.management-box .bio{
	padding: 10px 0px;
	text-align: center;
	background: #153462;
}
.management-box .bio .m-name{
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 2px;
	color: #fff;
}
.management-box .bio .m-designation{
	font-size: 14px;
	color: #fff;
}
.webui-popover {
	margin-top: -70px;
	box-shadow: 0 4px 16px rgb(128 134 144 / 25%) !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	background-color: #fff;
}
.m-popover-content *{
	font-size: 14px;
	letter-spacing: -0.3px;
}

/*management end*/






/*login start*/
.login{
	padding: 50px 0 20px;
}
.login-section{
	padding-left: 3rem;
	padding-right: 3rem;
}
.custom-shadow{
	box-shadow: 0 5px 30px rgb(0 0 0 / 10%);
}
.mini-heading{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	text-transform: uppercase;
}
.login-right{
	padding: 45px;
}
.login .form-group{
	margin-bottom: 15px;
	position: relative;
}
.label{
	font-size: 14px;
	font-weight: 500;
	user-select: none;
	letter-spacing: -0.3px;
}
.label .required{
	font-size: 14px;
	color: red;
}
#password-field{
	padding-right: 40px;
}
.field-icon{
	position: absolute;
	top: 34px;
	right: 11px;
	z-index: 1;
	font-size: 16px;
	cursor: pointer;
	width: 20px;
}
.forgot-password{
	font-size: 14px;
	display: inline-block;
	font-weight: 500;
	letter-spacing: -0.3px;
}

.login .btn-primary{
	padding: 8px 30px;
}

.or-line{
	font-size: 14px;
	font-weight: 600;
	position: relative;
	text-align: center;
	display: block;
}

.or-line::before{
	content: '';
	height: 1px;
	width: 46%;
	background: #cccccc54;
	position: absolute;
	left: 0;
	top: 54%;
}
.or-line::after{
	content: '';
	height: 1px;
	width: 46%;
	background: #cccccc54;
	position: absolute;
	right: 0;
	top: 54%;
}

.login-with-linkedin img{
	border-radius: 50px;
}

.login-slide{
	padding: 20px 15px;
	background: rgb(0 0 0 / 20%);
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.login-slide .mini-heading{
	position: absolute;
	top: 45px;
	left: 45px;
	color: #fff;
}
.login-slide .btn-white{
	position: absolute;
	bottom:70px;
	right:60px;
	padding: 7px 12px;
	font-size: 13px;
}
.login-slide .slide-content{
	padding: 0 60px;
}
.login-slide .slide-content .ratings{
	display: flex;
	margin-bottom: 7px;
}
.login-slide .slide-content .ratings i{
	margin-right: 3px;
	color: #dfa525;
}
.login-slide .slide-content p{
	font-size: 18px;
	color: #fff;
}
.login-slide .slide-content strong{
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	width: 100%;
	display: block;
	position: relative;
	padding-left: 15px;
}
.login-slide .slide-content strong::before{
	content: '-';
	position: absolute;
	left: 0;
}
.swiper-button-next{
	right: 0 !important;
}
.swiper-button-prev{
	left: 0 !important;
}
.swiper-button-next, .swiper-button-prev{
	min-width: 35px;
	max-height: 35px;
	border:2px solid #fff;
	border-radius: 50%;
	padding-top: 1px;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 14px !important;
	color: #fff;
}

/*login end*/


/*recruiter start*/
.recruiter-mail{
	border:1px solid #153462;
	border-radius: 3px;
	padding: 7px 25px;
	display: inline-block;
	font-size: 15px;
}
/*recruiter end*/


/*contact start*/
.contact{
	padding-bottom: 40px;
}
.contact .nav-link{
	border: 2px solid #153462d1;
	margin-right: 7px;
	width: auto !important;
	margin-bottom: 10px !important;
}
.sage-graph.reload{
	background: #000 !important;
}
.contact .contact-form{
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 4%);
	margin-top: 0;
	transition: 0.3s;
	position: relative;
	z-index: 3;
}
.contact .form-scrolled{
	position: fixed;
	top: 110px;
	margin-top: 0;
	z-index: 2;
	transition: 0.3s;
	width: 26.1%;
}
.contact .form-group{
	margin-bottom: 6px;
}
form .btn-primary{
	padding: 8px 10px;
}
small a{
	font-size: 14px;
}
.contact .card{
	background: #fff;
	padding: 10px;
	border-radius: 7px;
	border: 0;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
}
.contact .card img{
	border-radius: 5px;
}

.contact .card .card-body{
	margin-top: 10px;
}

.contact .card .card-body hr{
	margin:7px 0;
}
.contact .card .card-body h5{
	font-size: 18px;
	font-weight: 600;
}

.contact .card .card-body p{
	font-size: 14px;
	margin-bottom: 6px;
	letter-spacing: -0.3px;
	font-weight: 500;
}
.map-area{
	border-radius: 5px;
	overflow: hidden;
}
#map_wrapper {
	height: 400px;
}
#map_canvas {
	width: 100%;
	height: 100%;
}
#map_canvas > div:nth-child(3) {
	display: none!important;
}
#map_canvas > div:nth-child(2) {
	display: none!important;
}
.info_content h3{
	font-size: 18px;
	font-weight: 600;
}
.info_content p{
	font-size: 14px;
	margin-bottom: 6px;
}
.location-img{
	position: relative;
	overflow: hidden;
}
.location-img i{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 24%);
	font-size: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	color: #ffffff7d;
	display: none !important;
}
.location-heading{
	font-weight: 600;
	font-family: Bebas Neue,cursive;
	font-size: 30px;
	letter-spacing: 1px;
	word-spacing: 1px;
}
/*contact us end*/



/*GLOBAL INTELLIGENCE start*/
.global-section{
	padding: 80px 0 50px;
	background: #dee2eb;
	margin-top: -30px;
}
/*.global-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -25px;
    background: #dee2eb;
    width: 100%;
    z-index: 0;
    height: 100px;
    transform: skew(0, -2deg);
}*/
.about-global{
	width: 90%;
	margin: auto;
	position: relative;
	margin-bottom: 0;
}
.about-global p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 10px;
	text-align: center;
}
.global-i{
	padding: 50px 0;
	background: #153462;
}
.global-i .global-i-card{
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 0;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
}
.global-i-card-head{
	background: #153462;
	border-radius: 3px;
	padding: 10px;
}
.global-i-card-head h4{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #fff;
}
.global-i-card-head p{
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 500;
	color: #fff;
}
.global-i-card-body{
	padding: 10px;
	background: rgb(21 52 98 / 8%);
	margin-top: 10px;
	border-radius: 3px;
	min-height: 155px;
}
.global-i-card-body p{
	margin-bottom: 6px;
	display: flex;
}
.global-i-card-body p i{
	padding-top: 3px;
	display: inline-block;
	padding-right: 6px;
}

.global-section-2{
	padding: 50px 0;
	background: #dee2eb;
}
.global-section-2 .global-wrap{
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	margin:0 40px;
}
.gs-card-wrap{
	margin-left: 40px;
}
.graph{
	width: 90%;
}
.gs-card{
	border-bottom: 2px solid #386b93;
	background: #fff;
	padding: 10px 0 10px 0;
	margin-bottom: 15px;
}
.gs-card h4{
	text-align: left;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 5px;
}
.gs-card p{
	margin-bottom: 0;
	font-size: 16px;
	text-align: left;
	font-weight: 500;
}
/*.gs-card:last-child{
	margin-bottom: 0;
}*/

.how-it-works{
	padding: 50px 0;
}

.how-it-works .border-end{
	border-right: 3px solid #153462 !important;
}

.how-it-works-box{
	padding-top: 0;
	padding-bottom: 30px;
	position: relative;
}
.middle .how-it-works-box span{
	margin-left: auto;
}
.middle .how-it-works-box h4{
	text-align: right;
}
.middle .how-it-works-box p{
	text-align: right;
}
.how-it-works img{
	display: block;
	width: 64px;
	margin-left: auto;
}
.how-it-works .middle img{
	margin-right: auto;
	margin-left: 0;
}
.how-it-works-box span{
	height: 30px;
	width: 30px;
	background: #153462;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 10px;
}
.how-it-works-box h4{
	font-size: 18px;
	font-weight: 600;
}
.how-it-works-box p{
	font-size: 16px;
}


.ecosystem-map{
	position: relative;
}
.ecosystem-map .form-control{
	position: absolute;
	width: 205px;
	height: 40px;
	top: 10px;
	right: 10px;
	font-size: 14px;
	letter-spacing: -0.3px;
	font-weight: 500;
	border:0;
}
.ecosystem-map .form-control option{
	font-size: 14px;
	letter-spacing: -0.3px;
	font-weight: 500;
}
.ecosystem-map .btn-primary{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 7%;
}

/*global intelligence end*/




/*sage start*/
.content-wrap-header .service-wrap .service-wrap-row{
	padding-bottom: 0px;
	position: relative;
	z-index: 2;
	overflow: visible;
	background: #dfa525;
	padding-top: 40px;
	padding-left: 35px;
	padding-right: 42px;
}
.content-wrap-header .service-heading{
	font-size: 40px;
	margin-bottom: 20px;
	color: #fff;
}
.content-wrap-header .service-heading span{
	font-size: 70px;
	display: block;
	margin-bottom: 5px;
	color: #153462;
}
.content-wrap-header .service-heading span.small{
	font-size: 45px;
	display: block;
	margin-bottom: 5px;
	color: white;
}
.content-wrap-header .service-wrap .service-wrap-row img{
	height: 100%;
	width: 100%;
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	mix-blend-mode: color-burn;
	object-fit: cover;
	padding: 0;
	transform: skew(0, 2deg);
}

.content-wrap-header .service-wrap .service-wrap-row::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -30px;
	background: #dfa525;
	width: 100%;
	z-index: -2;
	height: 100px;
	transform: skew(0, 2deg);
}

.content-wrap-header .service-wrap .services-bg-box img{
	background: #153462;
}
.sage-section{
	padding: 80px 0 50px;
	background: #dee2eb;
	margin-top: -30px;
}
.about-sage{
	width: 90%;
	margin: auto;
	position: relative;
	margin-bottom: 0;
}
.about-sage p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 10px;
	text-align: center;
}




.type-of-sage{
	padding: 0;
	background: #dee2eb;
	position: relative;
}


.type-of-sage::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -25px;
	background: #dee2eb;
	width: 100%;
	z-index: 0;
	height: 100px;
	transform: skew(0, -2deg);
}

.type-of-card{
	border-radius: 0;
	margin-bottom: 0;
	text-align: center;
	min-height: 250px;
	padding: 5px;
	z-index: 1;
	position: relative;
}
.type-of-card img{
	width: 50px;
	margin-bottom: 10px;
}
.type-of-card h4{
	font-size: 20px;
	font-weight: 600;
}
.type-of-card p{
	margin-bottom: 0;
	font-size: 14px;
}

.fact-figures{
	padding: 90px 0 50px;
	background: #153462;
}
.fact-figures-main{
	margin-left: -12px;
	margin-right: -12px;
}
.fact-figures{
	min-height: 220px;
}
.fact-f-card{
	background: #fff;
	min-height: 190px;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 20px;
}
.fact-f-card img {
	width: 50px;
	margin: auto;
	margin-bottom: 10px;
}

.testimonials{
	padding: 50px 0;
/*	margin-bottom: -30px;*/
}
.testimonials .mySwiper{
	padding: 10px 20px 60px;
	margin-left: -20px;
	margin-right: -20px;
}
.testimonials .testimonials-box{
	background: #fff;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgb(0 0 0 / 4%);
	position: relative;
}
.testimonials .testimonials-box::after{
	content: '”';
	font-size: 120px;
	color: #153462;
	opacity: 0.2;
	position: absolute;
	right: 20px;
	top: -20px;
}

.testimonials .testimonials-box p{
	min-height: 200px;
	margin-bottom: 0;
	font-size: 16px;
}
.testimonials .testimonials-box strong{
	font-size: 16px;
	font-weight: 600;
	width: 100%;
	display: block;
	position: relative;
	padding-left: 15px;
	margin-top: 7px;
	min-height: 47px;
}
.testimonials .testimonials-box strong:before{
	content: '-';
	position: absolute;
	left: 0;
}
.swiper-pagination-bullet{
	height: 10px !important;
	width: 10px !important;
	background: none;
	border:1px solid #153462;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: #153462 !important;
	border:1px solid #153462;
}

.graph-title{
	font-size: 18px;
	font-weight: 600;
}
.apexcharts-datalabel-value{
	font-size: 30px !important;
	font-weight: 500;
	fill: #153462 !important;
}
.apexcharts-toolbar{
	display: none !important;
}
.apexcharts-text *{
	font-size: 14px !important;
	letter-spacing: -0.3px;
}
.apexcharts-tooltip-text-y-label{
	display: none !important;
}
/*sage end*/

/*think tank start*/

.think-tank-section{
	padding: 90px 0 50px;
}

.think-tank-wrap{
	background: #153462;
	min-height: 100px;
	border-radius: 7px;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
	margin:auto;
	width: 80%;
	padding: 20px 30px;
	text-align: center;
}
.think-tank-wrap .border-end{
	border-right: 2px solid #eee !important;
}
.think-tank-wrap h4{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-top: 15px;
	color: #fff;
}
.think-tank-wrap .btn-primary{
	margin-top: 15px;
}
.com-box{
	padding: 5px 7px;
	background: #fff;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	margin-bottom: 20px;
}
.h-md-100{
	height: 100%;
}
.com-box h4{
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 0;
	line-height: 24px;
}

.functional .com-box{
	background: #153462;
}
.functional .com-box h4{
	color: #fff;
}

.member-benefits{
	padding-bottom: 50px;
}
.member-benefits .mb-card{
	background: #fff;
	padding: 10px;
	border-radius: 7px;
	border: 0;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%)
}
.member-benefits .mb-card h3{
	font-size: 18px;
	margin:10px 0;
	font-weight: 600;
}
.member-benefits .mb-card p{
	min-height: 120px;
	margin-bottom: 10px;
}
.member-benefits .mb-card img{
	height: 212px;
	object-fit: cover;
	border-radius: 3px;
	width: 100%;
}
.member-benefits .mb-card .btn-primary{
	padding: 10px 20px 10px;
}
.events{
	padding: 50px 0;
	overflow: hidden;
}

.events .key-stats-box{
	min-height: 140px;
}

.committees{
	padding: 50px 0;
	background: #153462;
}
.committee-box{
	min-height: 100%;
}
/*think tank end*/


/*corporate masterclasses start*/
.content-wrap-header.masterclasses .service-wrap{
	overflow: hidden;
	position: relative;
	transform: skew(0, 2deg);
	margin-top: -55px;
	height: 450px;
}
.content-wrap-header.masterclasses .service-wrap .service-wrap-row{
	background: none;
	position: absolute;
	top:0;
	left: 0;
	transform: skew(0, -2deg);
	padding-top: 100px;
	height: 100%;
	width: 101%;
}
.content-wrap-header.masterclasses .service-wrap .service-wrap-row::after{
	background: rgb(0 0 0 / 60%);
	height: 100%;
}
.content-wrap-img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	z-index: -3;
}
.content-wrap-header.masterclasses .service-heading *{
	color: #fff;
}
.cm-video{
	margin-top: -100px;
	width: 100%;
	height: auto;
}
.cm-section{
	padding:90px 0 50px;
	background: #dee2eb;
	margin-top: -30px;
}
.cm-box{
	text-align: center;
	padding-top: 20px;
}
.cm-box img{
	width: 50px;
}
.cm-box h4{
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0 5px;
}
.cm-box p{
	margin-bottom: 0;
	font-size: 14px;
}
.get-demo{
	padding: 50px 0;
}
.get-demo-box{
	padding: 20px;
	border-radius: 7px;
	box-shadow: 0 5px 20px rgb(0 0 0 / 8%);
}
.gdb-left{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.gdb-left h4{
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 33px;
	line-height: 1.3;
	opacity: 0.80;
}
.gdb-left-box{
	background: #153462;
	padding: 15px 7px;
	border-radius: 5px;
}
.gdb-left-box *{
	color: #fff;
}
.gdb-left-box h5{
	font-size: 16px;
}
.gdb-left-box p{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
}
.cm-searchbar{
	background: #dfa525;
	margin:0 80px;
	padding: 30px;
	border-radius: 5px;
	margin-bottom: 40px;
	margin-top: -110px;
	position: relative;
	box-shadow: 0 10px 15px rgb(209 139 12 / 30%);
}
.cm-searchbar .btn-white-outline{
	margin-right: 10px;
	padding: 6px 17px;
	border:1px solid #fff;
}
.cm-searchbar .form-group{
	display: flex;
	align-items: center;
	position: relative;
}
.cm-searchbar .form-group .search-icon{
	position: absolute;
	top: 54%;
	transform: translateY(-50%);
	left: 18px;
	opacity: 0.7;
}
.cm-searchbar .form-control{
	height: 55px;
	padding-left: 45px;
	padding-right: 50px;
	border:0;
	border-radius: 5px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 10%) !important;
}
.search-btn{
	border:0;
	width: 38px;
	height: 38px;
	background: #153462;
	border-radius: 5px;
	margin-left: -48px;
	margin-top: 1px;
}
.search-btn *{
	color: #fff;
	font-size: 14px;
	margin-top: 3px;
	display: block;
}

/*corporate masterclasses end*/


/*apply page start*/
.apply-now{
	border:0;
	border-radius: 3px;
}
.apply-now .modal-header{
	padding: 12px 25px;
}
.apply-now .btn-close{
	opacity: 0.7;
	font-size: 12px;
	box-shadow: none !important;
}
.apply-now .form-group{
	margin-bottom: 10px;
}
.apply-now .label{
	font-size: 14px;
	margin-bottom: 1px;
}
.apply-now h6{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.5px;
}
.apply-now .accordion-button::after, .apply-now .accordion-button:not(.collapsed)::after{
	display: none;
}
.apply-now .accordion-button::before{
	content: '+';
	background: none !important;
	font-size: 20px;
	transform: translate(0) !important;
	margin-top: -3px;
	width: 30px;
	position: absolute;
	left: 0;
}
.apply-now .accordion-button:not(.collapsed)::before{
	content: '-';
	font-size: 25px;
	transform: translate(0) !important;
	margin-top: -5px;
	width: 30px;
	position: absolute;
	left: 0;
}
.apply-accordion{
	border:1px solid #cccccc8a;
	padding: 10px 10px 5px;
	border-radius: 3px;
	height: auto;
	overflow: auto;
}
.apply-accordion ul{
	list-style: none;
	padding-left: 0;
}
.apply-accordion ul ul{
	padding-left: 10px;
}
.apply-accordion .parent-industry{
	display: flex;
	background: #f8f9fa;
	padding: 5px 7px;
	border-radius: 3px;
	margin-bottom: 0;
}
.apply-accordion .parent-industry .label{
	font-weight: 600 !important;
	font-size: 15px;
}
.apply-accordion .child-industry{
	display: flex;
	background: #fff;
	padding: 6px 7px 0;
	border-radius: 3px;
}
.apply-accordion .child-industry .label{
	font-weight: normal;
}
.apply-now .accordion-button{
	box-shadow: none !important;
	padding: 2px 5px 2px 22px;
	font-size: 15px;
	border: none !important;
	position: relative;
}
.apply-now .accordion-button:not(.collapsed){
	background: #fff;
	color: #151719;
	border-bottom: 1px solid #eee;
}
.accordion-item{
	border:0;
	margin-bottom: 10px;
}
.accordion-body {
	padding: 10px 10px 0;
	border:1px solid #cccccc8a;
	border-radius: 3px;
}
.apply-now .btn-primary {
	padding: 8px 30px;
}
.apply-now-wrap{
	padding: 0 10px;
}
/*apply page end*/




/*Join Now start*/
.join-us{
	padding: 30px 0 0;
}

.industries{
	list-style: none;
	padding-left: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -20px;
	margin-right: 0;
}
.industries li{
	width: 23%;
	background: #153462;
	color: #fff;
	padding: 10px;
	margin:0 1%;
	min-height: 80px;
	margin-bottom: 12px;
	text-align: center;
	box-shadow: 0 5px 15px rgb(0 0 0 / 3%);
	word-break: break-word;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	line-height: 20px;
}
.industries li span{
	color: #dfa525;
	display: block;
	font-size: 14px;
}
.linkedin-login{
	background: #007cb7;
	padding:8px 15px;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.linkedin-login i{
	color: #fff;
	font-size: 25px;
	margin-right: 5px;
}
.linkedin-login span{
	color: #fff;
	font-weight: 500;
	font-size: 14px;
}
.engagements{
	padding: 40px 0;
	margin-top: 20px;
/*	margin-bottom: -30px;*/
}
.engagements .our-clients-box{
	padding: 30px 0 0;
}
.engagements .our-clients-box h4{
	font-size: 20px;
}
.min-height-auto{
	min-height: auto !important;
}
/*Join Now end*/



/*Consultive Process start*/
.consultative-process{
	padding: 30px 0 50px;
}
.cp-box p{
	font-size: 11px;
	margin-bottom: 0;
	text-align: center;
	color: #fff;
	font-weight: 600;
}
.cp-box{
	width: 180px;
	height: 180px;
	background: #ccc;
	padding: 7px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin:auto;
	margin-bottom: 85px;
	position: relative;
	border:5px solid #fff;
}
.cp-wrap:nth-child(odd) .cp-box::after{
	content: '';
	background: url('assets/images/left.png');
	height: 20px;
	width: 100%;
	border-radius: 5px;
	position: absolute;
	right: -81%;
	top: -35px;
	background-repeat: no-repeat;
}
.cp-wrap:nth-child(even) .cp-box::after{
	content: '';
	background: url('assets/images/left.png');
	height: 20px;
	width: 100%;
	border-radius: 5px;
	position: absolute;
	right: -81%;
	bottom: -35px;
	background-repeat: no-repeat;
	transform: scaleY(-1);
}
.cp-wrap:nth-child(n+6) .cp-box::after{
	display: none;
}
.cp-wrap:nth-child(1) .cp-box{
	background: #ff8f00;
	box-shadow:0 0 0 25px #ffd3a8 !important;
}
.cp-wrap:nth-child(2) .cp-box{
	background: #293191;
	box-shadow:0 0 0 25px #a7a0cd !important;
}
.cp-wrap:nth-child(3) .cp-box{
	background: #aad33e;
	box-shadow:0 0 0 25px #e1edb9 !important;
}
.cp-wrap:nth-child(4) .cp-box{
	background: #bb4299;
	box-shadow:0 0 0 25px #e0b7d6 !important;
}
.cp-wrap:nth-child(5) .cp-box{
	background: #ff0059;
	box-shadow:0 0 0 25px #ffb3b7 !important;
}
.cp-wrap:nth-child(6) .cp-box{
	background: #4FA095;
	box-shadow:0 0 0 25px #a0ddd9 !important;
}
.our-clients{
	padding:50px 0  30px;
	position: relative;
	/*background: linear-gradient(rgb(21 52 98 / 10%), rgb(21 52 98 / 10%)), url(../images/gradient.jpg);*/
	background: #3d4152;
/*	margin-bottom: -30px;*/
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.our-clients-box{
	padding: 15px 0;
	border-radius: 3px;
	border: 0;
/*	background: #fff;*/
margin-bottom: 10px;
}
.our-clients-box h4{
	font-size: 24px;
	font-weight: 700;
	margin: 10px 0 5px;
	color: #fff;
}
.our-clients-box img{
	width: 50px;
}
.our-clients-box p{
	margin-bottom: 0;
	font-size: 12px;
	text-align: left;
	font-weight: 500;
	color: #fff;
}
.oc-icon{
	height: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
.oc-icon img{
	width: 30px;
}
/*Consultive Process end*/


/*FAQ's start*/
.faq{
	padding: 30px 0 50px;
}
.faq .card{
	padding: 10px 20px 20px;
	box-shadow: 0 5px 25px rgb(0 0 0 / 10%);
}
.faq .accordion-button{
	border-bottom: 1px solid #eee;
	box-shadow: none !important;
	padding-left: 0;
	font-size: 16px;
	font-weight: 600;
}
.faq .accordion-flush .accordion-item .accordion-button{
	background: #fff;
	color: #444;
}
.accordion-flush .accordion-item{
	margin-bottom: 0;
	border-radius: 0 !important;
}
.accordion-body{
	border:0;
	padding:10px 0;
	font-size: 15px;
}
/*FAQ's end*/


/*careers start*/
.careers{
	padding: 30px 0 50px;
}
.careers-row{
	box-shadow: 0 5px 25px rgb(0 0 0 / 5%);
	padding: 15px;
	border-radius: 7px;
}
.careers .heading-sm{
	margin-bottom: 15px;
}
.careers .nav-pills{
	background: #dee2eb;
	padding: 20px;
	border-radius: 5px;
	min-height: 500px;
	flex-direction: column;
	margin-right: 13px;
}
.nav-pills .nav-link{
	padding: 10px 20px;
	color: #444;
	font-size: 14px;
	background: #fff;
	border-radius: 3px;
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
	width: 100%;
}
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active{
	background: #153462;
	color: #fff;
	font-weight: 600;
}
.careers .tab-pane{
	background: #fff;
	padding: 15px;
	border:1px solid #dee2eb;
	border-radius: 5px;
	min-height: 500px;
	/*overflow: auto;*/
}
.peek-ia{
	margin-bottom: -22px;
}
.peek-ia-box{
	background: #eceff3;
	padding: 15px;
	border-radius: 3px;
	display:flex;
	flex-direction: column;
    height: 100%;
}
.peek-ia-head{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 7px;
	align-items: center;
}
.peek-ia-head .peek-ia-title{
	font-size: 16px;
	font-weight: 600;
}
.peek-ia-head .peek-ia-date{
	font-size: 13px;
	font-weight: 500;
}
.peek-ia-body img{
	border-radius: 3px;
	height: 200px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 10px;
}
.peek-ia-body p{
	font-size: 15px;
	margin-bottom: 0;
}

.job-search{
	padding: 15px;
	background: rgb(221 226 235 / 35%);
	border-radius: 5px;
}
.form-switch .form-check-input{
	box-shadow: none;
	cursor: pointer;
}
.form-switch .form-check-input:checked{
	background-color: green;
	border-color: green;
}
.input-search{
	position: relative;
}
.input-search .search-icon{
	position: absolute;
	left: 10px;
	top: 55%;
	font-size: 14px;
}
.input-search input{
	padding-left: 30px;
}
.clear{
	cursor: pointer;
}
.jobs-list {
	margin-top: 20px;
}
.jobs-list-box{
	border:1px solid #eee;
	border-radius: 5px;
	padding: 15px;
	background: #fff;
	margin-bottom: 22px;
}
.col-md-12:last-child .jobs-list-box{
	margin-bottom: 0;
}
.jobs-list-box .job-title{
	font-size: 20px;
	font-weight: 600;
}
.jobs-list-box .job-role{
	font-size: 14px;
	font-weight: 500 !important;
}
.jobs-list-box .role-count{
	font-size: 12px !important;
	background: #eee;
	display: inline-block;
	border-radius: 5px;
	padding: 3px 10px;
	font-weight: 500 !important;
}
.jobs-list-box .small-details{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 5px;
}
.jobs-list-box .small-details span{
	display: flex;
	margin: 4px 15px 4px 0;
	font-size: 13px;
	font-weight: 600;
}
.jobs-list-box .small-details i{
	margin-right: 5px;
	padding-top: 0;
	color: #153462;
}
.btn-job-detail{
	border: 2px solid #153462;
	display: inline-block;
	padding: 7px 13px 1px;
	border-radius: 5px;
	transition: 0.3s;
}
.btn-job-detail i{
	font-size: 20px;
	line-height: 0;
}
.btn-job-detail:hover{
	background: #153462;
}
.btn-job-detail:hover i{
	color: #fff;
}
.job-description{
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	display: -webkit-box!important;
	-webkit-line-clamp: 4;
	margin-bottom: 0;
	font-size: 15px;
}
/*careers end*/

/*Job details start*/
.job-details{
	padding: 30px 0 20px;
}
.job-details .job-description{
	-webkit-line-clamp: inherit;
	overflow: auto;
	margin-bottom: 10px;
	font-size: 16px;
}
.required-skills{
	list-style: none;
	padding-left: 35px;
}
.required-skills li{
	margin-bottom: 10px;
	position: relative;
}
.required-skills li::before{
	content: "\f127";
	position: absolute;
	left: -22px;
	top: 5px;
	font-family: uicons-regular-rounded !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.job-details .jobs-list-box{
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
	border:0;
	padding: 30px;
}
.job-details .top-details{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	padding: 20px 20px 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.job-details .mini-heading{
	margin-top: 30px;
	margin-bottom: 8px;
}
/*Job details end*/

/*compliance start*/
.compliance{
	padding: 20px 0 40px;
}

.compliance-practices{
	padding: 50px 0;
	background: #3d4152;
}
.compliance-practices-box{
	margin-bottom: 15px;
	border-radius: 3px;
}
.compliance-practices-box img{
	width: 50px;
}
.compliance-practices-box h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 10px 0 5px;
	color: #fff;
}
.compliance-practices-box p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}
.compliance-practices-box ul{
	padding-left: 20px;
	margin-bottom: 0;
}
.compliance-practices-box li{
	color: #fff;
	font-size: 14px;
}

.compliance-practices a{
	font-size: 14px;
	color: #297fff;
}

.corporate-database .cd-wrap{
	background: #fff;
	box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
	padding: 20px;
	margin-top: 30px;
	border-radius: 7px;
	display: flex;
	align-items: center;
}
.corporate-database .cd-wrap h4{
	font-size: 23px;
	font-weight: 600;
}
.corporate-database .cd-wrap p{
	margin-bottom: 0;
}
.corporate-database .cd-wrap .btn-primary{
	white-space: nowrap;
	min-width: 200px;
	padding: 11px 17px 10px;
	text-align: center;
}

/*compliance end*/


/*corporate database start*/

.corporate-database{
	padding: 20px 0 50px;
}
.corporate-database-box{
	padding: 12px;
	border-radius: 7px;
	box-shadow: 0 5px 20px rgb(0 0 0 / 6%);
	margin:auto;
}
.cd-text{
	padding:15px;
	border-radius: 5px;
	background: #f2f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 450px;
}
.cd-text p{
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 0;
	text-align: center;
}


/*corporate database end*/







/*services overview start*/
.services-overview-top{
	padding: 95px 0 50px;
	background: #dee2eb;
	margin-top: -65px;
}
.services-overview{
	margin-top: 0;
}
.services-overview .our-clients-box p{
	font-size: 14px;
}
.become-a-client{
	background: #fff;
	padding: 25px 20px;
	border-radius: 5px;
}
.become-a-client .our-clients-box{
	text-align: center;
	padding: 25px 10px 15px;
	background: #dee2eb9c;
	margin-bottom: 40px;
	border-radius: 3px;
}
.become-a-client .our-clients-box h4{
	color: #444;
}
.become-a-client .our-clients-box p{
	color: #444;
	text-align: center;
}
.submit-enquiry-box{
	background: #dfa525;
	padding: 15px;
	border-radius: 3px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.become-a-client p{
	font-size: 15px;
	margin-bottom: 10px;
}
.become-a-client ul{
	padding-left: 20px;
	margin-bottom: 10px;
}
.become-a-client li{
	font-size: 15px;
}
.submit-enquiry-box h4{
	font-size: 18px;
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
}
.submit-enquiry-box .btn-primary{
	font-size: 13px;
	font-weight: 400;
	padding: 11px 15px 10px;
	text-align: center;
}
.recent-projects{
	padding: 50px 0;
	background: #dee2eb;
	position: relative;
	overflow: hidden;
}
.recent-projects .fact-wave{
	top:0;
}
.recent-projects .container{
	z-index: 2;
	position: relative;
}
.recent-projects .border-bottom{
	border-bottom: 1px solid #0000005e !important;
}
.rp-results p{
	font-size: 14px;
	margin-bottom: 0;
	border-bottom: 1px solid #0000005e;
	padding-top: 3px;
	padding-bottom: 3px;
	min-height: 42px;
	display: flex;
	align-items: center;
	letter-spacing: -0.3px;
}


.submit-project .corporate-database-box{
	width: auto;
	padding: 20px;
}

.submit-project .cd-text{
	min-height: auto;
	align-items: flex-start;
	justify-content: unset;
}


/*services overview end*/

/*sector covered start*/
.sector-covered{
	padding: 95px 0 30px;
	background: #dee2eb;
	margin-top: -65px;
/*	margin-bottom: -30px;*/
}
.sc-box{
	padding:20px 0 30px;
	position: relative;
	cursor: pointer;
}
.sc-box img {
	width:50px;
}
.sc-box h4 {
	font-size: 20px;
	font-weight: 600;
	margin: 10px 0 5px;
}
.sc-box p{
	background: #fff;
	box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
	left: 0;
	padding: 10px;
	position: absolute;
	bottom: 65%;
	z-index: 99999;
	font-size: 13px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	text-align: left;
	border-radius: 3px;
	font-weight: 400;
	color: #444;
}
.sc-box:hover p{
	opacity:1;
	bottom: 85%;
	visibility: visible;
	cursor: auto;
}
.sectors-details:before {
	content: "";
	position: absolute;
	display: block;
	left: 10px;
	bottom: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #fff transparent transparent transparent;
	z-index: 99999999;
}
/*sector covered end*/

/*expert and client testimonials start*/

.testimonials-page{
	background: #dee2eb;
	margin-top: -65px;
	padding: 90px 0 30px;
	min-height: 70vh;
/*	margin-bottom: -30px;*/
}
.testimonials-page .card{
	padding: 15px;
	border-radius: 5px;
	min-height: 115px;
	margin-bottom: 0;
	box-shadow: none;
	height: 100%;
}
.testimonials-page .card .e-name{
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 5px;
}
.testimonials-page .card .e-date{
	font-size: 12px;
	font-weight: 500;
	color: #939393;
	display: inline-block;
	margin-bottom: 7px;

}
.testimonials-page .card .rating{
	display: flex;
	margin-bottom: 15px;
}
.testimonials-page .card .rating i{
	color: orange;
	margin-right: 3px;
	font-size: 14px;
}
.testimonials-page .card .e-review{
	font-size: 15px;
	display: block;
	font-weight: 500;
	margin-bottom: 0;
}
.testimonials-page .card-body{
	padding: 0;
	background: none;
}


.testimonials-page .card .e-review::before{
	content: '“';
	font-family: fantasy;
	font-size: 20px;
}
.testimonials-page .card .e-review::after{
	content: '”';
	font-family: fantasy;
	font-size: 20px;
}
.client-testimonials .card .e-name{
	min-height: 41px !important;
}
.client-testimonials .card-body{
	background: #dee2eb82;
	border-radius: 5px;
	position: relative;
	padding: 10px;
}
.client-testimonials .card-body::after{
	content: "";
	position: absolute;
	left: 40px;
	bottom: -20px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: #dee2eb82 transparent transparent transparent;
}
.client-testimonials .card-footer{
	background: none;
	border:0;
	padding: 22px 0 0;
}
/*expert and client testimonials end*/


/*start a trial*/
.start-trial{
	padding: 60px 0;
}
.start-trial-wrap{
	background: #fff;
	box-shadow: 0 5px 30px rgb(0 0 0 / 9%);
	border-radius: 7px;
	padding: 30px;
	margin:0 65px;
}
.st-content{
	background: linear-gradient(#dee2ebb5, #dee2ebb5), url(../images/login.jpg);
	border-radius: 5px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding:20px 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.st-content span{
	width: 100%;
	margin:10px 0;
}
.st-content .or-line::before,
.st-content .or-line::after{
	background: #ffffffb5;
}
.st-content h1{
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0;
	color: #151719;
}
.st-content h1 *{
	font-size: 30px;
	color: #151719;
}
.custom-checkbox{
	margin-right: 6px;
}
.custom-checkbox:last-child{
	margin-right: 0;
}
.custom-checkbox input{
	position: absolute;
	left: 0;
	z-index: -1;
	width: 1rem;
	height: 1.25rem;
	opacity: 0;
	visibility: hidden;
}

.custom-checkbox .label{
	border: 2px solid #1534629e;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 12px;
	padding: 7px 8px;
	border-radius: 3px;
	margin-bottom: 5px;
	font-weight: 500;
}
.custom-checkbox input:checked ~ .label{
	background: #153462;
	color: #fff;
}
/*start a trial end*/



/*loader start*/

.loader{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(21 52 98 / 100%);
	height: 100vh;
	width: 100%;
	overflow: hidden;
	backdrop-filter: blur(10px);
}
.spinner {
	width: 9px;
	height: 9px;
	animation: spinner-o824ag 1s infinite linear;
}

.spinner div {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50%;
	animation: spinner-vse6n7 1.25s infinite ease;
}

.spinner div:nth-child(1) {
	--rotation: 90;
}

.spinner div:nth-child(2) {
	--rotation: 180;
}

.spinner div:nth-child(3) {
	--rotation: 270;
}

.spinner div:nth-child(4) {
	--rotation: 360;
}

@keyframes spinner-vse6n7 {
	0%, 100% {
		transform: rotate(calc(var(--rotation) * 1deg)) translateY(0);
	}

	50% {
		transform: rotate(calc(var(--rotation) * 1deg)) translateY(300%);
	}
}

@keyframes spinner-o824ag {
	to {
		transform: rotate(360deg);
	}
}
/*loader end*/



/*footer start*/

footer{
	background: #153462;
	color: #fff;
	padding: 30px 0 25px;
/*	margin-top: 30px;*/
position: relative;
z-index: 3;
}
footer .btn-white{
	font-size: 12px;
	padding: 6px 15px 6px;
}
.footer-heading{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.footer-menu a{
	color: #fff;
	display: block;
	padding: 3px 0;
	text-decoration: none;
	font-size: 12px;
}
.social-links{
	display: flex;
}
.social-links a{
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	border:2px solid #fff;
	min-width: 32px;
	height: 32px;
	border-radius: 50%;
	padding-top: 1px;
	transition: 0.3s;
}
.social-links a *{
	color: #fff;
	font-size: 13px;
}
.social-links a:hover{
	background: #fff;
}
.social-links a:hover *{
	color: #153462;
}
footer p{
	color: #fff;
	font-size: 12px;
}
footer a{
	font-size: 12px;
}

#freshteam-careers .content { width:96% !important; }

#freshteam-careers h3.page-title{
	font-size: 25px !important;
	color: rgb(0 0 0 / 50%) !important;
	margin-bottom: 20px !important;
	text-align: left !important;
	text-transform: uppercase !important;
	font-weight: 700 !important;
}