/** Custom Styles **/
:root{
	--theme-blue: 		#4597d9;
	--theme-dark:		#10101F;
}
/** General Styles **/
.header-nav-main nav .nav li.active a,
.header-nav-main nav .nav li a:hover{
	color: var(--theme-blue)!important;
}
.color-primary{
	color: var(--primary) !important;
}
h3.font-weight-bold{
	font-weight: 600 !important;
	font-size: 28px !important;
	line-height: 38px !important;
	text-transform: none !important;
}
.toggle.toggle-faqs .toggle>label:before, 
.toggle.toggle-faqs .toggle>.toggle-title:before {
    right: 15px !important;
}
.lead {
    letter-spacing: 0 !important; 
    font-size: 1.15em !important;
}
.counters label {
    font-weight: 400;
}
.bullet-check,
.bullet-double-check,
.bullet-circle-check,
.bullet-verified{
	list-style: none !important;
}
.bullet-check li,
.bullet-double-check li,
.bullet-circle-check li,
.bullet-verified li{
	position: relative;
}
.bullet-check li:before{
	font-family: "Font Awesome 6 Free";
	content: '\f00c';
	font-size: 21px;
	position: absolute;
	left: -30px;
	top: 0;
	font-weight:900;
	color: var(--primary);
}
.bullet-circle-check li:before{
	font-family: "Font Awesome 6 Free";
	content: '\f058';
	font-size: 21px;
	position: absolute;
	left: -30px;
	top: 0;
	font-weight:900;
	color: var(--primary);
}
.bullet-double-check li:before{
	font-family: "Font Awesome 6 Free";
	content: '\f560';
	font-size: 21px;
	position: absolute;
	left: -30px;
	top: 0;
	font-weight:900;
	color: var(--primary);
}
.bullet-verified li:before{
	font-family: "startapps";
	content: '\e921';
	font-size: 21px;
	position: absolute;
	left: -30px;
	top: 0;
	font-weight:900;
	color: var(--primary);
}
.call-to-action.call-to-action-in-footer {
    margin-bottom: -20px !important;
}
.call-to-action .call-to-action-content {
    text-align: left !important;
}

/** Service SVG Icons **/
.apps-ico-box .animated-ico{
	margin-bottom: 20px;
}
.apps-ico-box .animated-ico svg path,
.apps-ico-box .animated-ico svg line,
.apps-ico-box .animated-ico svg rect,
.apps-ico-box .animated-ico svg circle,
.apps-ico-box .animated-ico svg polyline{
    stroke: #ff0000 !important;
    fill: #ff0000 !important;
	transition: all ease-in .3s !important;
}
.apps-ico-box:hover .animated-ico svg path,
.apps-ico-box:hover .animated-ico svg line,
.apps-ico-box:hover .animated-ico svg rect,
.apps-ico-box:hover .animated-ico svg circle,
.apps-ico-box:hover .animated-ico svg polyline{
    stroke: #10101f !important;
    fill: #10101f !important;
	transition: all ease-in .3s !important;
}

/** Button Light 3 / Button Light 3 Inverse **/
.btn-light-3{
	border-color: var(--light);
	color: var(--light );
	background: transparent;
	transition: all ease-in .3s;	
}

.btn-light-3:active,
.btn-light-3:hover{
	border-color: var(--theme-blue);
	color: var(--light );
	background:  var(--theme-blue);
	transition: all ease-in .3s;	
}
.btn-light-3-inv{
	border-color: var(--theme-blue);
	color: var(--light );
	background:  var(--theme-blue);
	transition: all ease-in .3s;
}

.btn-light-3-inv:active,
.btn-light-3-inv:hover{
	border-color: var(--light);
	color: var(--light );
	background: transparent;
	transition: all ease-in .3s;
}

/** Text Spacing **/
.ts-xs{letter-spacing: 0.2px;}
.ts-sm{letter-spacing: 0.5px;}
.ts-md{letter-spacing: 1px;}
.ts-lg{letter-spacing: 1.5px;}
.ts-xl{letter-spacing: 2px;}

/** Widgets **/
.widget{
	width: 100%;
	padding: 0;
	margin:0 0 30px;
	border: 1px solid rgba(0, 0, 0, 0.175);
	background: #ffffff;
	position: relative;
	overflow:hidden;
	display: inline-block;
	border-radius: 4px;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5% );
}
.faqs-contact .image-wrapper{
	width: 100%;
    padding: 5px;
	position: relative;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.faqs-contact .image-wrapper img{
	max-width:100%;
}
.faqs-contact .content-wrapper{	
	padding: 20px 15px;
	position: relative;
	display: inline-block;
}
.faqs-contact .content-wrapper p{
	font-size: 16px;
}
.faqs-contact .content-wrapper p span{
	display: block;
	font-weight: 600;
	font-size: 18px;
	margin: 5px 0 10px;
}
.faqs-contact .content-wrapper p span a{
	text-decoration-line: underline;
	text-decoration-style: wavy;
	text-decoration-color: #0e0e1f;
	transition: all ease-in .3s;
}
.faqs-contact .content-wrapper p span a:hover{
	text-decoration: none;
	transition: all ease-in .3s;
}
span.desc,
span.impact{
	font-size: 13px;
    display: block;
    line-height: 1.2;
    font-weight: 400;
}

/** Toggle Tweak **/
.toggle > .toggle-content {
    padding: 20px 15px;
    border: 1px solid #efefef;
    margin-top: -5px;
    border-radius: 0 0 6px 6px;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5% );
}
.toggle.active > .toggle-title {
    transition: all .15s ease-out;
    background: var(--grey-100);
    border-left: 3px solid var(--grey-500);
    border-radius: 5px 5px 0 0;


/** media queries **/
@media (min-width: 992px) {
    .call-to-action.with-button-arrow .call-to-action-btn {
        left: 0 !important;
    }
}


/** StartApps Icons **/
@font-face {
  font-family: 'startapps';
  src:  url('fonts/startapps.eot?b5v5vn');
  src:  url('fonts/startapps.eot?b5v5vn#iefix') format('embedded-opentype'),
    url('fonts/startapps.ttf?b5v5vn') format('truetype'),
    url('fonts/startapps.woff?b5v5vn') format('woff'),
    url('fonts/startapps.svg?b5v5vn#startapps') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="ico-"], [class*=" ico-"], .sa-icons {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'startapps' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sa-icons{
	font-size:16px;
}
.sa-icons-sm{
	font-size:28px;
}

.sa-icons-md{
	font-size:40px;
}

.sa-icons-lg{
	font-size:52px;
}

.sa-icons-xl{
	font-size:64px;
}

.sa-icons-xxl{
	font-size:76px;
}

.ico-help:before {
  content: "\e900";
}
.ico-resource-allocation:before {
  content: "\e901";
}
.ico-sign-in:before {
  content: "\e902";
}
.ico-motivation:before {
  content: "\e903";
}
.ico-training:before {
  content: "\e904";
}
.ico-class:before {
  content: "\e905";
}
.ico-funds:before {
  content: "\e906";
}
.ico-piggy-bank:before {
  content: "\e907";
}
.ico-scholarships:before {
  content: "\e908";
}
.ico-home-value:before {
  content: "\e909";
}
.ico-light-bulb:before {
  content: "\e90a";
}
.ico-idea:before {
  content: "\e90b";
}
.ico-idea-1:before {
  content: "\e90c";
}
.ico-strategic-plan:before {
  content: "\e90d";
}
.ico-collaboration:before {
  content: "\e90e";
}
.ico-collaboration-1:before {
  content: "\e90f";
}
.ico-global-network:before {
  content: "\e910";
}
.ico-network:before {
  content: "\e911";
}
.ico-network-security:before {
  content: "\e912";
}
.ico-mail:before {
  content: "\e913";
}
.ico-email:before {
  content: "\e914";
}
.ico-smartphone:before {
  content: "\e915";
}
.ico-telephone:before {
  content: "\e916";
}
.ico-smartphone-call:before {
  content: "\e917";
}
.ico-map:before {
  content: "\e918";
}
.ico-gps-navigation:before {
  content: "\e919";
}
.ico-map-1:before {
  content: "\e91a";
}
.ico-facebook:before {
  content: "\e91b";
}
.ico-search:before {
  content: "\e91c";
}
.ico-twitter:before {
  content: "\e91d";
}
.ico-close:before {
  content: "\e91e";
}
.ico-linkedin:before {
  content: "\e91f";
}
.ico-photo:before {
  content: "\e920";
}
.ico-verified:before {
  content: "\e921";
}
.ico-shared-vision:before {
  content: "\e922";
}
.ico-vision:before {
  content: "\e923";
}
.ico-mission:before {
  content: "\e924";
}
.ico-mission-1:before {
  content: "\e925";
}
.ico-leadership:before {
  content: "\e926";
}
.ico-diamond:before {
  content: "\e927";
}
.ico-suitcase:before {
  content: "\e928";
}
.ico-suitcase-1:before {
  content: "\e929";
}
.ico-people:before {
  content: "\e92a";
}
.ico-user:before {
  content: "\e92b";
}
.ico-shopping:before {
  content: "\e92c";
}
.ico-tag:before {
  content: "\e92d";
}
.ico-question:before {
  content: "\e92e";
}
.ico-add:before {
  content: "\e92f";
}
.ico-plus:before {
  content: "\e930";
}
.ico-right-arrow:before {
  content: "\e931";
}
.ico-down-arrow .path1:before {
  content: "\e932";
  color: rgb(56, 42, 1);
  opacity: 0.6;
}
.ico-down-arrow .path2:before {
  content: "\e933";
  margin-left: -1em;
  color: rgb(41, 31, 1);
  opacity: 0.82;
}
.ico-down-arrow .path3:before {
  content: "\e934";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.ico-down-arrow .path4:before {
  content: "\e935";
  margin-left: -1em;
  color: rgb(60, 45, 1);
  opacity: 0.77;
}
.ico-down-arrow .path5:before {
  content: "\e936";
  margin-left: -1em;
  color: rgb(78, 58, 2);
  opacity: 0.76;
}
.ico-down-arrow .path6:before {
  content: "\e937";
  margin-left: -1em;
  color: rgb(59, 44, 1);
  opacity: 0.62;
}
.ico-down-arrow .path7:before {
  content: "\e938";
  margin-left: -1em;
  color: rgb(31, 23, 1);
  opacity: 0.93;
}
.ico-down-arrow .path8:before {
  content: "\e939";
  margin-left: -1em;
  color: rgb(43, 32, 1);
  opacity: 0.76;
}
.ico-down-arrow .path9:before {
  content: "\e93a";
  margin-left: -1em;
  color: rgb(58, 44, 1);
  opacity: 0.71;
}
.ico-down-arrow .path10:before {
  content: "\e93b";
  margin-left: -1em;
  color: rgb(53, 40, 1);
  opacity: 0.69;
}
.ico-down-arrow .path11:before {
  content: "\e93c";
  margin-left: -1em;
  color: rgb(53, 40, 1);
  opacity: 0.77;
}
.ico-down-arrow .path12:before {
  content: "\e93d";
  margin-left: -1em;
  color: rgb(48, 37, 1);
  opacity: 0.76;
}
.ico-down-arrow .path13:before {
  content: "\e93e";
  margin-left: -1em;
  color: rgb(50, 38, 1);
  opacity: 0.78;
}
.ico-down-arrow .path14:before {
  content: "\e93f";
  margin-left: -1em;
  color: rgb(58, 44, 1);
  opacity: 0.76;
}
.ico-down-arrow .path15:before {
  content: "\e940";
  margin-left: -1em;
  color: rgb(31, 24, 1);
  opacity: 0.92;
}
.ico-down-arrow .path16:before {
  content: "\e941";
  margin-left: -1em;
  color: rgb(56, 43, 1);
  opacity: 0.62;
}
.ico-down-arrow .path17:before {
  content: "\e942";
  margin-left: -1em;
  color: rgb(63, 47, 1);
  opacity: 0.77;
}
.ico-down-arrow .path18:before {
  content: "\e943";
  margin-left: -1em;
  color: rgb(55, 41, 1);
  opacity: 0.59;
}
.ico-left-arrow:before {
  content: "\e944";
}
.ico-up-arrow:before {
  content: "\e945";
}
.ico-up-arrow-1:before {
  content: "\e946";
}
.ico-down-arrow-1:before {
  content: "\e947";
}
.ico-left-arrow-1:before {
  content: "\e948";
}
.ico-right-arrow-1:before {
  content: "\e949";
}
.ico-cashback:before {
  content: "\e94a";
}
.ico-100-percent:before {
  content: "\e94b";
}
.ico-no-preservatives:before {
  content: "\e94c";
}
