/**
* Template Name: Append
* Template URL: https://bootstrapmade.com/append-bootstrap-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  sans-serif;
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}




/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: Poppins, sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: Poppins, sans-serif;
}



@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
 background: rgb(2,0,36);
  
  --heading-color: #fff;
  --nav-color: #fff;
  --nav-hover-color: #fff;
  opacity: 0.8;
  padding:15px 0px;
}
#mainLogo img{will-change: transform;}
.has_transition_1000_quint{-webkit-transition: -webkit-transform 1000ms cubic-bezier(0.230, 1.000, 0.320, 1.000),opacity 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  transition: transform 1000ms cubic-bezier(0.230, 1.000, 0.320, 1.000),opacity 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);}
.index-page.scrolled .header #mainLogo img{width:20%;}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 0px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
  border-right:2px solid #fff;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  background: url(../assets/img/bkg_copyright_bar.jpg) no-repeat center;
  margin-top:80px;
  background-size:cover;
 
}
.footer .copyright ul li{list-style-type:none;}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #fff;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero{
background: url(../assets/img/mainbanner.webp) no-repeat;background-size:cover;
background-position:top center;
min-height:1580px;
}
.logo-stacked {
 
  margin: 0 auto;
  width:75%;
}
a{color:#fff;}
.elevate-h2{ text-transform:uppercase;
	font-weight:100;
	font-family: Poppins, sans-serif;
	margin-bottom:100px!important;
	margin-top:280px!important;
	margin-left:-40px;
}	
	.subhead{
		margin-left:-40px;
	}
	
.financial{font-size:70px;font-weight:500;letter-spacing: 0.04em;}
.journey{font-size:113px;font-weight:200;letter-spacing: 0.04em;}
.ourpurpose{
		background: linear-gradient(0deg, rgba(147, 165, 207, 0.45) -51.0506%, rgba(228, 239, 233, 0.45) 65.9494%), rgba(255, 255, 255, 0.8);
		top:100%;
		width:100%;
		padding-top:160px;
		padding-bottom:125px;
		opacity:0.8;
  }
  .ourpurpose h2{
	  color: #000000;
  font-size: 80px;
  font-weight: 100;
  letter-spacing: 0.05em;
  }
  .ourpurpose p{font-size:26px;line-height:50px;}
  #ourapproach h2{
		padding-top:60px;
		font-size: 80px;
  font-weight: 100;
  letter-spacing: 0.02em;
	}
	#ourapproach{
		background: url(../assets/img/bkg_approach.jpg) no-repeat;
		background-size:cover;
		background-position:top center;
	
	}
	
	.txtapproach p{font-size: 22px;
  line-height: 45px;
  font-weight: 300;}
	#clientportal h2{color: #000000;
  font-size: 80px;
  font-weight: 100;
  letter-spacing: 0.03em;
	text-align: center;}
	#clients h2{font-size:80px;font-weight:100;letter-spacing:0.05em;}
	.text-17,.text-21 {
  font-size: 40px;
  font-weight: 300;
  text-align: center;
}
.text-19 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}
.text-18 {
  margin: 17px 0 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}
  .new-client-application {
  margin: 80px auto 0;
  position: relative;
}
.text-23 {
  font-weight: 500;
  font-size:20px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
.text-24 {
  margin: 15px 10px 50px 10px;
  font-size: 44px;
  font-weight: 100;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}
.ph-icon{
	border: 1px solid #fff;
  border-radius: 50px;
  padding: 4px;
  margin: 0 15px;
}
.overlaybgblack{
	background: rgba(0,0,0,0.5);
	margin: 0 auto;
	padding:10px 15px;
	
  }
  #overlay-div{
    margin: 0 auto;
  min-height: 313px;
  padding: 90px 10px;
  width: 90%;
  background: #323540 center 0;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
  opacity:0.9;
  border:20px solid #444756;
}
#overlay-div h4{font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  }
  .approachtxt{font-size: 22px;
  line-height: 30px;
  text-align: justify;
  
  
  }
  .approachcontent{
		border:1px solid #fff;
		padding-top:30px;
		margin-right:50px;
		margin-left:50px;
  }
  
 .securesignbtn{
	background:#323540;border:1px solid #26235c;border-radius:0;box-shadow: 9.192533px 7.713451px 18px 0 rgba(18, 20, 28, 0.45);
  font-size: 25px;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 104px;
  text-align: center;
  padding:20px 130px;
	}
	
  .bgbottom{
	background: url(../assets/img/bkg_cover_gradient.png) no-repeat;
	background-size:cover;
	margin-top:100px;
	z-index:1;
  }
  .approachcontent{position:relative;}
 
  #overlaybg
  {
	position:absolute;
	background: #002538 center 0;
	margin: 0 auto;
	min-height:900px;
  }
 	
	#hero h2 .elevate{
	font-size:180px;font-weight:100;letter-spacing: 0.05em;
	}
	
  .text-style-4{font-weight:100;}
.overlaybgblack .contactaddr{margin: 0 auto;
 
  padding: 40px 0 25px;
  position: relative;
  width: 98%;
	z-index: 999;
  background: #020202;
  opacity:0.6;
  }
  .approaches{margin-top:150px;margin-bottom:50px;margin-right:50px;margin-left:50px;}
  .footer{background: url(../assets/img/bkg_footer.jpg) no-repeat;background-size:cover;background-position:top center;max-height:1400px;}
.clickherebtn{font-size: 30px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-align: center;
  border:1px solid #fff;
  background: rgba(255, 255, 255, 0.15);
    background-clip: border-box;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom:50px;
  }
  .copyright .copyrighttxt{padding-right:15px;padding-left:15px;margin-right:30px;margin-left:30px;}
  
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 20px;
  max-width: 100%;
  
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}
 #content-1::before{
	content: "";
	position: absolute;
	  top: -111px;
	  bottom: 0;
	  left: 10%;
	  border-right: 1px solid #CCC;
	  z-index: 1;
	  height:33%!important;
	}
	#content-2::before{
		
		content: "";
	position: absolute;
	top: -111px;
	left: 37%;
	 bottom: 0;
	 border-right: 1px solid #CCC;
	  z-index: 1;
	 height:33%!important;
	}
	#content-3::before{
		
		content: "";
	position: absolute;
	top: -111px;
	left: 64%;
	 bottom: 0;
	 border-right: 1px solid #CCC;
	  z-index: 1;
	  height:33%!important;
	}
	#content-4::before{
		
		content: "";
	position: absolute;
	top: -111px;
	left: 90%;
	 bottom: 0;
	 border-right: 1px solid #CCC;
	  z-index: 1;
	  height:33%!important;
	}
/***media query***/
/* Navmenu - Mobile */
@media (min-width: 1200px){
	#overlay-div{min-height:280px;}
	#overlay-div h4 {
    font-size: 24px;
  }
  
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
	#content-1::before{height:23%!important;}
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
	width:80%;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff!important;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
	width:325px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  section,
  .section {
    scroll-margin-top: 64px;
  }
  .ourpurpose{
	  top:60%!important;
  }
  .new-client-application{
	  margin:25px auto 0!important;
  }
  .elevate-h2{
		margin-top:200px;
  }
  .logo-stacked{max-width:150px;margin:0px!important;}
  #overlay-div{width:93%!important;border:15px solid #444756!important;min-height:200px!important;}
  #overlay-div h4 {
	font-size: 26px!important;
  }
  .approachrow{margin-top:0px!important;}
  
	
  .approaches .col-md-3{padding-left:0px!important;padding-right:0px!important;}
  .ourpurpose p{line-height:50px;}
  .elevate-h2{
	  margin:0px 0px 100px 0px!important;
	  
  }
	.elevate{
	  font-size:74px!important;
	  font-weight:200!important;
	}
	.financial{
		  font-size:74px!important;
	  }	
	  .journey{ font-size:40px!important;}
  .subhead{margin:15px 0px!important;}
   
}
   @media only screen and (max-width: 1440px) and (min-width:900px)
  {
	  #content-1::before{height:24.5%!important;left:9%;}
	   #content-2::before{height:24.5%!important;}
	   #content-3::before{height:23%!important;left:65%;}
	   #content-4::before{height:23%!important;left:94%;}
  }
  @media only screen and (min-width: 768px) and (max-width:1024px)
  {
		#hero .container{margin-top:280px!important;}
		#hero{
		min-height:1550px;
		background-position:inherit;
	}
	  .elevate-h2{
	  margin:0px 0px 100px 0px!important;
	  
  }
	.elevate{
	  font-size:54px!important;
	  font-weight:200!important;
	}
	.financial{
		  font-size:54px!important;
	  }	
	  .journey{ font-size:40px!important;}
  .subhead{margin:25px 0px!important;}
  .subhead nth-child(1){margin-top:100px;}
  .ourpurpose{padding-top:100px;padding-bottom:120px;top:60%!important;}
  .ourpurpose h2{font-size:40px;}
  .ourpurpose p{font-size:22px;line-height:30px;padding:0px 10px;}
  .approachrow{margin-top:0px!important;}
  #ourapproach h2{font-size:40px;padding-top:40px;}
  #ourapproach p{font-size:20px;line-height:32px;font-weight:300;}
  .approaches{margin-top:80px;margin-left:0px;margin-right:0px;}
  #clientportal h2{font-size:40px;padding-top:40px;}
  #overlay-div h4 {
  font-size: 20px!important;
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}
#overlay-div{padding:50px 10px;min-height:200px;border: 15px solid #444756;width:95%;}
.approaches .col-md-3{padding-left:0px!important;padding-right:0px!important;}
  .call-to-action{padding:30px 0!important;}
  .securesignbtn{padding:20px 40px!important;}
  #clients h2{font-size:40px;}
  .text-17,.text-21,.text-19{font-size:24px;}
  .text-18{font-size:16px;line-height:22px;padding-bottom:10px;}
  .clients .client-logo img{padding:5px 5px!important;}
  .new-client-application{margin:60px auto 0;}
  #content-1::before{height:20%!important;left:7%;}
	  #content-2::before{height:20%!important;left:35%;}
	  #content-3::before{height:20%!important;left:61%;}
	  #content-4::before{height:20%!important;}
  
  }
  @media (min-width: 1024px)  {
	
		.ourpurpose p{line-height:30px;}
		#hero{
		min-height:1550px;
		background-position:inherit;
	  }
	  #hero .container{margin-top:220px!important;margin-bottom:30px;}
	.ourpurpose{top:65%!important;padding-top: 80px;}
	.elevate-h2{
	  margin:0px 0px 80px 0px!important; 
	}
	
	  .subhead{margin:10px 0px!important;font-size:16px!important;}
	  .approaches{margin-right:30px;margin:left:30px;}
	  #overlay-div h4{font-size:24px;}
	  
	  
}
  @media (max-width: 992px) {
	  
	.ourpurpose{top:60%!important;}
	.elevate-h2{
	  margin:0px 0px 100px 0px!important;
	  
  }
	.elevate{
	  font-size:74px!important;
	  font-weight:200!important;
	}
	.financial{
		  font-size:74px!important;
	  }	
	  .journey{ font-size:60px!important;}
	  #content-1::before{height:32.5%!important;}
  #content-2::before{height:30%;}
  #content-3::before{height:30%;}
  #content-4::before{height:32%;}
	   
}
@media (max-width: 768px) {
	.socialmenu{padding-bottom:20px;}
	#hero .container{margin-top:280px!important;}
	#hero{
		min-height:1500px;
		background-position:inherit;
	}
  .elevate-h2{
	 margin:0px 0px 150px 0px!important;
	  
  }
  .elevate{
	  font-size:40px!important;
	  font-weight:200!important;
  }
  .financial{
	  font-size:40px;!important;
  }
  .journey{ font-size:40px;!important;}
  .subhead{margin:20px 0px!important;}
  .ourpurpose{padding-top:60px;padding-bottom:60px;top:97%!important;}
  .ourpurpose h2{font-size:40px;}
  .ourpurpose p{font-size:20px;line-height:26px;padding:0px 10px;}
  #ourapproach h2{font-size:40px;padding-top:40px;}
  #ourapproach p{font-size:20px;line-height:32px;font-weight:300;}
  #clientportal h2{font-size:40px;padding-top:40px;}
  .call-to-action{padding:30px 0!important;}
  .securesignbtn{padding:20px 40px!important;}
  #clients h2{font-size:40px;}
  .text-17,.text-21,.text-19{font-size:24px;}
  .text-18{font-size:16px;line-height:22px;padding-bottom:10px;}
  .overlaybgblack .contactaddr{padding-top:10px;padding-bottom:10px;}
  #ourapproach{padding-top:0;}
  .txtapproach{margin-left:0px!important;margin-right:0px!important;}
  .approaches{margin-top:50px;margin-bottom:50px;margin-right:0px;margin-left:0px;}
  .approaches .col-12{padding-left:0!important;padding-right:0!important;}
  #overlay-div{width:100%;}
  .bgbottom{margin-top:50px;}
  .bgbottom .row{margin-left:0px!important;margin-right:0px!important;}
  .approachcontent{
		
		margin-right:0px;
		margin-left:0px;
  }
  .footer .footer-links{border-bottom:1px solid #fff;border-right:0px;}
  .footer .footer-top{padding-top:30px;}
  .footer{max-height:100%;}
  .footerlogo{margin-top:0px!important;margin-bottom:0px!important;}
  .new-client-application{margin-top:50px;}
  .text-24{font-size:24px;}
  .text-23{font-size:18px;}
  .clickherebtn{font-size:20px;letter-spacing:0.01em;}
  .copyright .copyrighttxt{padding-right:5px!important;padding-left:5px!important;margin-right:0px!important;}
  .copyrighttxt ul li{padding-right:10px!important;padding-left:10px!important;padding-top:20px;}
  #content-1::before{display:none;}
  #content-2::before{display:none;}
  #content-3::before{display:none;}
  #content-4::before{display:none;}
}


@media (min-width:320px) and (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
    #mainLogo a{padding-left:75px;}
  .logo-stacked{width:50%;margin-left:15px!important;}

  .socialmenu{padding-bottom:20px;}
	#hero .container{margin-top:150px!important;}
	#hero{
		min-height:1580px;
		background-position:center center;
	}
  .elevate-h2{
	 margin:0px 0px 65px 0px!important;
	  
  }
  .elevate{
	  font-size:40px!important;
	  font-weight:200!important;
  }
  .financial{
	  font-size:40px!important;
  }
  .journey{ font-size:40px!important;}
  .subhead{margin:50px 0px!important;font-size:18px!important;}
  .ourpurpose{padding-top:60px;padding-bottom:60px;top:50%!important;}
  .ourpurpose h2{font-size:40px;}
  .ourpurpose p{font-size:20px;line-height:26px;padding:0px 10px;}
  #ourapproach h2{font-size:40px;padding-top:40px;}
  #ourapproach p{font-size:20px;line-height:32px;font-weight:300;}
  #clientportal h2{font-size:40px;padding-top:40px;}
  .call-to-action{padding:30px 0!important;}
  .securesignbtn{padding:20px 40px!important;}
  #clients h2{font-size:40px;}
  .text-17,.text-21,.text-19{font-size:24px;}
  .text-18{font-size:16px;line-height:22px;padding-bottom:10px;}
  .overlaybgblack .contactaddr{padding-top:10px;padding-bottom:10px;}
  #ourapproach{padding-top:0;}
  .txtapproach{margin-left:0px!important;margin-right:0px!important;}
  .approaches{margin-top:50px;margin-bottom:50px;margin-right:0px;margin-left:0px;}
  .approaches .col-12{padding-left:0!important;padding-right:0!important;}
  #overlay-div{width:100%;}
  .bgbottom{margin-top:50px;}
  .bgbottom .row{margin-left:0px!important;margin-right:0px!important;}
  .approachcontent{
		
		margin-right:0px;
		margin-left:0px;
  }
  .footer .footer-links{border-bottom:1px solid #fff;border-right:0px;}
  .footer .footer-top{padding-top:30px;}
  .footer{max-height:100%;}
  .footerlogo{margin-top:0px!important;margin-bottom:0px!important;}
  .new-client-application{margin-top:50px;}
  .text-24{font-size:20px;margin-bottom:20px;}
  .text-23{font-size:18px;}
  .clickherebtn{font-size:20px;letter-spacing:0.01em;}
  .copyright .copyrighttxt{padding-right:5px!important;padding-left:5px!important;margin-right:0px!important;}
  .copyrighttxt ul li{padding-right:10px!important;padding-left:10px!important;padding-top:20px;}
  #content-1::before{display:none;}
  #content-2::before{display:none;}
  #content-3::before{display:none;}
  #content-4::before{display:none;}
}




/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}


