

:root {
	--primary-red: #167A4E;
	--dark: #000;
	/* --secondary: #29294E; */
	--secondary: #1A1A1A;
	--banner-bg: #FFF1F0;
	--accent-blue: #F1F1FF;
	--accordion-btn-after: url('../images/icons/plus.svg');
	--bs-accordion-active-icon: url('../images/icons/minus.svg');
}

html {
	scroll-behavior: smooth;
}

body, html{
	width: 100%;
	min-height: 100%;
	padding: 0;
	margin: 0;
	color: var(--secondary);
}


body {
	position:relative;
    font-family: 'DM Sans', sans-serif;
}

/* Preloader container */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 20% 20%, #e0f7fa, transparent 25%),
                  radial-gradient(circle at 80% 30%, #f1f8e9, transparent 25%),
                  radial-gradient(circle at 50% 80%, #e3f2fd, transparent 25%),
                  linear-gradient(-45deg, #fce4ec, #e0f7fa, #f1f8e9, #e3f2fd);
      background-size: 200% 200%;
      animation: gradientBG 15s ease infinite;
      z-index: 9999;
      transition: opacity 0.8s ease, background-color 0.8s ease;
    }

    #preloader.fade-out {
      background-color: #27ae60; /* green fade */
      opacity: 0;
      pointer-events: none;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .logo {
      display: block;
      margin: 0 auto;
      width: 40vw;
      max-width: 300px;
      animation: breathe 0.7s ease-in-out infinite;
    }

    @keyframes breathe {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.9; }
    }
/* End of Preloader container */



h1,h2,h3,h4,h5,h6 {
	color: var(--secondary);
}

h1 {
	font-size: 52px;
	font-weight: 600;
	line-height: 62px;
	font-family: 'DM Sans';
}

h2 {
	font-weight: 400;
	font-size: 56px;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
	font-family: 'DM Sans';
}

h3 {
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 44px;
	
}

p {
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	color: var(--secondary);
	letter-spacing: -0.04em;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 20px;
}


.btn {
	padding: 4px 18px;
	letter-spacing: -0.03em;
	color: #ffffff;
	line-height: 38px;
	font-size: 20px;
	border-radius: 100px;
}

.btn:hover, :not(.btn-check)+.btn:active, 
.btn:first-child:active {
	color: #FFFFFF;
}

.btn-primary-red {
	background: var(--primary-red);
	border: 2px solid var(--primary-red);
	box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 16px -8px rgba(12, 12, 13, 0.153);
}

.btn-primary-red:hover, :not(.btn-check)+.btn:active, 
.btn:first-child:active {
	background: transparent;
	border: 2px solid #47d697;
	color: #47d697;
	box-shadow: none;
}

.btn-secondary-navy {
	background: var(--primary-red);
	border: 2px solid var(--primary-red);
	box-shadow: rgba(12, 12, 13, 0.05) 0px 4px 4px -4px, rgba(12, 12, 13, 0.153) 0px 16px 16px -8px;
}

.btn-secondary-navy:hover, :not(.btn-check)+.btn:active {
	background: transparent;
	border-color: var(--primary-red);
	color: var(--primary-red);
	box-shadow:none;
}

input.form-control {
	background: #fff;
	border-radius: 10px;
	    border: 2px solid rgb(59 59 59 / 24%);
	height: 70px;
	line-height: 70px;
	color: var(--secondary);
	font-weight: 500;
	font-size: 20px;
	font-family: 'DM Sans', sans-serif;
	margin-bottom: 20px;
}

textarea.form-control {
	background: #fff;
	border-radius: 10px;
	    border: 2px solid rgb(59 59 59 / 24%);
	height: auto !important;
	color: var(--secondary);
	font-weight: 500;
	font-size: 20px;
	font-family: 'DM Sans', sans-serif;
	margin-bottom: 20px;
}

input.form-control::placeholder, 
textarea.form-control::placeholder {
	color: rgba(9, 35, 23, 0.118);
	font-weight: 500;
	font-size: 20px;
}

.btn:focus, .btn:active, input:focus, textarea:focus, button:focus, button:active, .accordion-button:focus {
	box-shadow: none;
	outline: none;
}

input.form-control:focus, textarea.form-control:focus {
	box-shadow: none;
	outline: none;
	border-color: var(--primary-red);
}

.custom-tooltip {
  --bs-tooltip-bg: var(--secondary);
}

section {
	position: relative;
}

.banner-top {
	background: url('../images/backgrounds/herobg.webp') center center / cover no-repeat, #000;
	color: #ffffff;
}

.banner-inner-top {
	background-color: var(--secondary);
}

.bg-acent-red {
	background: #D5EFE3;
}


.header {
	padding-top: 8px;
	padding-bottom: 8px;
	background: #ffffff;
}

.fixed-top{
	box-shadow: 0 2px 8px #00000024;
}



.header .navbar-brand img {
	width: 100%;
	height: auto;
}

.header ul.navbar-nav li a {
	font-weight: 500;
	font-size: 17px;
	letter-spacing: -0.03em;
	line-height: 26px;
	color: #092317;
	padding: 20px 16px !important;
	font-family: 'DM Sans', sans-serif;
}

.header ul.navbar-nav li a:hover, 
.header ul.navbar-nav li a.active {
	color: #00a35be0;
}

.header .btn-primary-red {
	font-size: 18px;
}
.header .btn-primary-red:hover,
:not(.btn-check)+.btn:active, .btn:first-child:active {
	background: transparent;
	border: 2px solid var(--primary-red);
	color: var(--primary-red);
	box-shadow: none;
}

.hamburger {
  width: 21px;
  height: 3px;
  background: var(--primary-red);
  position: relative;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, .2);*/
  transition: 0.5s;
  border-radius: 50px;
}

.hamburger:before {
  top: -6px;
}

.hamburger:after {
  top: 6px;
}

/* Icon 3 
}*/

.hamburger-three:before,
.hamburger-three:after {
  content: '';
  position:absolute;
  width: 21px;
  height: 3px;
  background:var(--primary-red);
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
  transition:0.5s;
  border-radius: 50px;
}

.icon-three.active-three .hamburger-three {
  background:rgba(0,0,0,0);
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0);*/
}

.icon-three.active-three .hamburger-three:before {
  top: 0;
  transform:rotate(135deg);
  /*box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);*/
}

.icon-three.active-three .hamburger-three:after {
  top: 0;
  transform:rotate(225deg);
  /*box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);*/
}

.header.affix .hamburger {
	background: #000;
	box-shadow: none;
}

.header.affix .hamburger::before,
.header.affix .hamburger::after {
	background: #000;
	box-shadow: none;
}

.header.affix .icon-three.active-three {
	border: 0;
}

.header.affix .icon-three.active-three .hamburger-three {
	background: transparent;
	box-shadow: none;
}

section.main-banner {
	padding-top: 120px;
	padding-bottom: 120px;
}

section.main-banner .banner-content {
	width: 100%;
	max-width: 680px;
}

section.main-banner .banner-content h1 {
	font-size: 56px;
	color: #ffffff;
	line-height: 62px;
	margin-bottom: 33px;
	font-weight: 500;
	width: 100%;
	max-width: 560px;
	letter-spacing: -0.02em;
}

section.main-banner .banner-content h1 span {
	color: var(--primary-red);
	font-weight: 300;
}

section.main-banner .banner-content p {
	letter-spacing: -0.02em;
	color: #ffffff;
	font-weight: 300;
	font-size: 20px;
	line-height: 170%;
	margin-bottom: 32px;
}

section.main-banner .banner-img {
	position: absolute;
	width: 40%;
	height: 100%;
	bottom: -16%;
	right: 9%;
	text-align: right;
} 

section.main-banner .banner-img img{
	width: 400px;
}

section.content-section {
	padding-top: 90px;
	padding-bottom: 70px;
	background-position: top 20% right 0;
	background-repeat: no-repeat;
}

section.content-section h2 {
	line-height: 38px;
}

section.content-section p {
	letter-spacing: -0.02em;
	margin-bottom: 0;
}

section.content-section .wf-row {
	padding-top: 80px;
	padding-bottom: 80px;
}

.ways-features .ways-box {
	margin-bottom: 50px;
}

.ways-features ul {
	flex-wrap: nowrap;
}
.ways-features ul li img {
	margin-right: 30px;
}

.ways-features ul li .box-details h3 {
	margin-bottom: 5px;
}

.ways-features ul li .box-details p {
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	width: 100%;
	max-width: 400px;
}

.invest-conten {
	padding-top: 30px;
	padding-bottom: 50px;
	position: relative;
}

.invest-conten div.inner-body {
	background: url('../images/backgrounds/general-bg.webp') center center / cover no-repeat, var(--primary-red);
	border-radius: 20px;
	padding: 50px 50px;
	width: 100%;
	max-width: 65%;
}

.invest-conten div.inner-body h2 {
	color: #ffffff;
	margin-bottom: 30px;
	font-weight: 300;
	font-size: 56px;
	line-height: 62px;
	width: 100%;
    max-width: 500px;
}

.invest-conten div.inner-body p {
	color: #F1F1FF;
    margin-bottom: 60px;
    width: 100%;
    max-width: 415px;
    font-weight: 300;
    font-size: 20px;
}

.invest-conten .investment-img {
	width: 100%;
	max-width: 550px;
	border-radius: 20px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.invest-conten .investment-img img {
	border-radius: 20px;
	position: relative;
    top: 80px;
}

.saving-guide {
	padding-top: 60px;
	padding-bottom: 90px;
	background-image: url('../images/backgrounds/arrow-1.svg'),url('../images/backgrounds/arrow-2.svg');
	background-position: left 30% top 52%, left 67% top 52%;
	background-repeat: no-repeat, no-repeat;
}

.saving-guide p {
	width: 100%;
	max-width: 940px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 25px !important;
}

.saving-guide .saving-step .step-number {
	width: 75px;
	height: 75px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	display: flex;
	color: var(--secondary);
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 42px;
}

.saving-guide .saving-step h3 {
	font-size: 22px;
	line-height: 26px;
}

.saving-guide .saving-step p {
	font-size: 16px;
	margin-bottom: 16px;
}

section.faqs {
	padding-top: 70px;
	padding-bottom: 60px;
	width: 100%;
	background-image: url('../images/backgrounds/general-bg.webp');
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
}

section.faqs h2 {
	color: #fff;
}

section.faqs p {
	color: #ffffff;
	margin-bottom: 50px;
	font-weight: 300;
	font-size: 20px;
    letter-spacing: -0.02em;
}

section.faqs .faq-questions {
	margin-bottom: 50px;
}

section.faqs .faq-questions .accordion .accordion-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}

section.faqs .faq-questions .accordion .accordion-item .accordion-header {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: -0.02em;
	color: #29294E;
}

section.faqs .faq-questions .accordion .accordion-item .accordion-header button {
	padding: 23px 38px;
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	letter-spacing: -0.02em;
	color: var(--secondary)
}

section.faqs .faq-questions .accordion .accordion-item .accordion-header button::after {
	background-image: var(--accordion-btn-after);
	background-position: center;
}

section.faqs .faq-questions .accordion .accordion-item .accordion-header button:not(.collapsed) {
	background: #fff;
	color: #29294E;
}

section.faqs .faq-questions .accordion .accordion-item .accordion-header button:not(.collapsed)::after {
	background-image: var(--bs-accordion-active-icon);
	background-position: center;
}

section.faqs .faq-questions .accordion .accordion-item .accordion-body {
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: var(--secondary);
	font-family: 'DM Sans', sans-serif;
	padding: 1px 38px 50px 38px;
}

section.fund-compare {
	padding: 80px 0;
	background-color: #fff;
}

section.fund-compare .table {
	font-family: 'DM Sans', sans-serif;
}

section.fund-compare .table tr th {
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #DADAEF;
	padding-top: 20px;
	padding-bottom: 20px;
	color: var(--secondary);
}

section.fund-compare .table tr td {
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #DADAEF;
	padding-top: 15px;
	padding-bottom: 15px;
	color: var(--secondary);
}

section.fund-compare .table tr td i {
	font-size: 12px;
	cursor: pointer;
}

section.fund-compare .table tr td:nth-child(1) {
	font-size: 18px;
	line-height: 26px;
	text-align: left;
}

section.fund-compare .table tr:last-child td {
	border-bottom: none;
}

.featuredin{
	transition: transform .2s; /* Animation */
}

.featuredin:hover{
	-ms-transform: scale(1.1); /* IE 9 */
 	 -webkit-transform: scale(1.1); /* Safari 3-8 */
 	 transform: scale(1.1);
}

.join-us {
	background-image: url("../images/backgrounds/CTA-bg.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	padding: 70px 0px;
}

.contact-banner {
	padding-top: 60px;
	padding-bottom: 60px;
	background: url('../images/backgrounds/general-bg.webp') center center / cover no-repeat, var(--banner-bg);
	color: #fff;
	background-attachment: scroll;
	background-color: #000;
}

.contact-banner .banner-content {
	margin-bottom: 0;
}

.contact-banner .banner-content h2 {
	margin-bottom: 10px;
	color: #ffffff;
	text-align: center;
	font-size: 40px;
	font-weight: 300;
}

.contact-banner .banner-content p {
	letter-spacing: -0.02em;
	line-height: 26px;
	margin-bottom: 9px;
	color: #ffffff;
}

.contact-banner .banner-content p a {
	text-decoration: none;
	color: #ffffff
}

.contact-banner .banner-content p strong {
	font-weight: 500;
	font-size: 22px;
	font-family: 'DM Sans', sans-serif;
}

.contact-us-form {
	padding: 50px 0px;
	background-image: url('../images/backgrounds/contact-form-bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.contact-us-form h2 {
	    color: var(--secondary);
	margin-bottom: 5px;
}

.contact-us-form p {
	    color: var(--secondary);
	margin-bottom: 40px;
}

.contact-us-form .contact-form {
	margin-bottom: 60px;
}

.contact-us-form form .form-group.form-floating>label {
	font-size: 16px !important;
	opacity: 1 !important;
	font-family: 'DM Sans', sans serif;
	font-weight: 600;
}

.contact-us-form form .form-control:focus + label {
	color: var(--primary-red);
}

.contact-us-form .contact-form .btn {
	width: 100%;
}

.about-banner {
	padding: 100px 0px;
	color: #fff;
	background-image: url('../images/backgrounds/general-bg.webp');
	background-repeat: no-repeat;
	background-size: cover
}

.about-banner h1, .about-banner p {
	color: #fff;
	font-weight: 400;
}

.about-banner h1 span {
	color: var(--primary-red);
	font-weight: 300;
}


section.about-a {
	padding: 75px 0px;
}

section.about-b {
	padding: 75px 0px 90px 0px;
}

section.about-b .why-card img {
	margin-bottom: 30px;
}

section.about-b .why-card .a-title {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: var(--secondary);
	margin-bottom: 20px;
}

section.about-b .why-card  p {
	font-weight: 300;
	font-size: 18px;
	opacity: 0.8;
	margin-bottom: 40px;
}

section.register-user {
	padding: 65px 0px 90px 0px;
	background-image: url('../images/backgrounds/reg-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-size: 100%;
	background-color: #000;
}

section.register-user p {
	margin-bottom: 40px;
	color: #fff;
}
section.register-user h2 {
	color: #fff;
}

section.register-user .register-form .form-group p {
	font-size: 16px;
}

section.register-user .register-form .form-group p a {
	color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-red);
}

.register-form .form-group.form-floating>label {
	font-size: 16px !important;
	opacity: 1 !important;
	font-family: 'DM Sans', sans serif;
	font-weight: 500;
	color: #818181;
}

.register-form form .form-control:focus + label {
	color: #818181;
}

.footer {
	background-image: url('../images/backgrounds/general-bg.webp');
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
}

.footer .footer-top {
	padding: 22px 0px;
}

.footer .footer-top ul li a {
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	color: #ffffff;
	font-family: 'DM Sans', sans-serif;
	padding: 5px 13px;
	text-decoration: none;
}

.footer .footer-top ul.social-nav {
	justify-content: end;
}

.footer .footer-top ul.social-nav li a {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 6px;
    font-size: 28px;
}

.footer .footer-top ul.social-nav li a i {
	position: relative;
	top: 2.5px;
	color: #ffffff
}

.footer .footer-center {
	border-top: 1px solid #ffffff1c;
	border-bottom: 1px solid #ffffff1c;
	padding: 25px 0px;
}

.footer .footer-center p {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 12px;
	color: #FFFFFF;
	line-height: 25	px;
}

.footer .footer-bottom {
	padding: 25px 0px;
}

.footer .footer-bottom, 
.footer .footer-bottom ul li a, 
.footer .footer-bottom a  {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.01em;
	color: #fff;
}

.footer .footer-bottom ul li a {
	padding: 0px 8px;
	text-decoration: none;
}

.footer .footer-bottom ul li:first-child a {
	padding-left: 0;
}

.footer ul li a:hover {
	color: #58c694;
}

.terms-services p {
	font-size: 16px;
	text-align: left;
}

.terms-services h3 {
	font-size: 25px;
	text-align: left;
}

.terms-services h6 {
	font-size: 18px;
	text-align: left;
}

.terms-services ul li {
	text-align: left;
}

.terms-services p a, 
.terms-services ul li a {
	color: var(--primary-red);
	white-space: normal;
}

.terms-services p span.text-underline {
	text-decoration: underline;
}

@media (min-width: 1300px) {
	nav .container,
	section .container {
		width: 100%;
		max-width: 100%;
		padding-left: 144px;
		padding-right: 144px;
	}
}

@media (min-width: 1500px) {
	.invest-conten div.inner-body {
		max-width: 75%;
	}
}

@media (max-width: 1430px) {
	.header ul.navbar-nav li a {
		padding: 20px 15px !important;
	}
}

@media (max-width: 1200px) {

	.header ul.navbar-nav li a {
		padding: 20px 12px !important;
		font-size: 16px;
	}

	section.main-banner .banner-content {
		max-width: 530px;
	}
	
	section.main-banner .banner-content p {
		font-size: 22px;
	}
	
	.invest-conten .investment-img {
		max-width: 460px;
	}
	
	.saving-guide {
		background-position: left 30% top 50%, left 67% top 50%;
	}
}


@media (max-width: 992px) {
	
	h2 {
		font-size: 35px;
		line-height: 40px;
	}
	
	.header {
		padding: 5px 0px;
	} 
	
	.header ul.navbar-nav li a {
		border-bottom: 1px solid var(--primary-red);
		padding: 20px 0px !important;
		font-size: 18px;
	}
	
	.header ul.navbar-nav li:last-child a {
		border-bottom: 0px;
	}
	
	.header .btn-primary-red {
		margin-top: 20px;
		margin-bottom: 20px;
		width: 100%;
	}
	
	.header .navbar-collapse .navbar-nav {
		margin-right: 0 !important;
		margin-left: 0 !important;
		width: 100%;
	}
	
	.header .navbar-collapse {
		min-height: calc(100vh - 70px);
		visibility: visible;
		opacity: 1;
		z-index: 9;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
		flex-direction: column;
	}
	
	.header .navbar-collapse:not(.show) {
		height: 0;
		min-height: 0 !important;
		transition: 0.1s;
		visibility: hidden;
	}
	
	section.main-banner {
		padding-top: 75px;
		padding-bottom: 35px;
	} 

	section.main-banner .banner-content, 
	section.main-banner .banner-content h1 {
		max-width: 100%;
	}

	section.main-banner img {
		max-width: 300px;
	}
	
	section.main-banner .banner-img {
		display: none;
	}
	
	section.content-section {
		padding-top: 50px;
		padding-bottom: 80px;
	}
	
	section.content-section .wf-row {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	
	.invest-conten {
		padding-top: 10px;
		padding-bottom: 20px;
	}
	
	.invest-conten div.inner-body {
		max-width: 100%;
		padding: 40px 20px;
		margin: auto;
	}

	.invest-conten div.inner-body, 
	.invest-conten div.inner-body h2, 
	.invest-conten div.inner-body p {
		max-width: 100%;
	}

	.invest-conten div.inner-body h2 {
		font-size: 40px;
	}

	.invest-conten div.inner-body p img {
		border-radius: 10px;
		max-width: 400px;
	}
	
	.invest-conten .investment-img {
		display: none;
	}
	
	.saving-guide {
		padding-top: 50px;
		background-position: left 30% top 43%, left 70% top 43%;
	}
	
	
	
	section.fund-compare .table tr th {
		font-size: 18px;
	}
	
	section.fund-compare .table tr td:nth-child(1) {
		font-size: 16px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item .accordion-header button {
		padding: 16px 25px;
		font-size: 20px;
		line-height: 22px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item .accordion-body {
		padding: 10px 30px 30px 30px;
		font-size: 18px;
		line-height: 26px;
	}
	
	section.register-user {
		padding: 30px 0px;
	}
	
	.about-banner {
		padding: 80px 0px;
		background-size: 13%;
	}
	
	.about-banner h1 {
		font-size: 40px;
		line-height: 50px;
	}
	
	section.about-a {
		padding: 50px 0px;
	}
	
	section.about-b {
		padding: 50px 0px 60px 0px;
	}
	
	.contact-banner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.contact-banner .banner-content {
		margin-bottom: 25px;
	}
	
	section.register-user {
		background-position: center right 10%;
		background-size: 25%;
	}
	
	.footer .footer-top ul.social-nav {
		justify-content: center;
	}
	
	.invest-conten div.inner-body p {
		margin-bottom: 30px;
		text-align: center;
        font-size: 18px;
	}

	.trustpilot-widget {
		left: 50%;
		transform: translateX(50%);
		-webkit-transform: translateX(50%);
	}

	.footer .footer-bottom ul  {
		justify-content: center;
	}
}


@media (max-width: 767px) {
	
	h2 {
		line-height: 45px;
	}
	
	h3 {
		font-size: 22px;
		line-height: 30px;
	}
	
	p {
		font-size: 16px;
		line-height: 27px;
	}
	
	.btn {
		font-size: 18px;
		width: 100%;
	}
	
	input.form-control,
	textarea.form-control {
		height: 55px;
		line-height: 55px;
		font-size: 16px;
		padding: 10px 15px;
	}
	
	textarea.form-control {
		height: auto;
	}
	
	input.form-control::placeholder,
	textarea.form-control::placeholder {
		font-size: 16px;
	}
	
	section .container, nav .container {
		padding: 0px 1.5rem !important;
	}
	
	section.main-banner {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	
	section.main-banner .banner-content h1 {
		font-size: 42px;
        line-height: 52px;
        font-weight: 600;
        letter-spacing: 0.02em;
	}
	
	section.main-banner .banner-content p {
		font-size: 20px;
		line-height: 32px;
	}
	
	section.content-section h2 {
		line-height: 25px;
	}
	
	section.content-section .wf-row {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.ways-features .ways-box {
		margin-bottom: 20px;
		text-align: center;
	}
	
	.ways-features ul {
		flex-wrap: wrap;
	}
	
	.ways-features ul li {
		width: 100%;
		text-align: center;
	}
	
	.ways-features ul li img {
		margin-right: 0;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	
	.ways-features ul li .box-details p {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 0px;
	}
	
	section.content-section {
		padding-top: 40px;
		padding-bottom: 20px;
		background-size: 20%;
		background-position: top 35% right 0;
	}
	
	.invest-conten {
		padding-top: 15px;
		padding-bottom: 25px;
	}
	
	.invest-conten div.inner-body h2 {
		max-width: 100%;
		font-size: 32px;
		line-height: 40px;
		text-align: center;
	}

	.invest-conten div.inner-body p img {
		max-width: 100%;
	}
	
	.saving-guide {
		padding-top: 20px;
		background-image: none;
	}
	
	section.faqs {
		padding: 40px 0px;
	}
	
	section.faqs .faq-questions, section.faqs p {
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 24px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item {
		margin-bottom: 10px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item .accordion-header button::after {
		background-size: 15px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item .accordion-header button {
		padding: 12px 15px;
		font-size: 18px;
		line-height: 20px;
	}
	
	section.faqs .faq-questions .accordion .accordion-item .accordion-body {
		padding: 10px 25px 30px 25px;
		font-size: 16px;
		line-height: 24px;
	}
	
	section.fund-compare, .join-us {
		padding: 30px 0px;
	}
	
	section.fund-compare .table tr th {
		font-size: 16px;
		line-height: 26px;
		white-space: nowrap;
		padding-top: 10px;
		padding-bottom: 10px;
		color: #29294E;
	}
	
	section.fund-compare .table tr td {
		white-space: nowrap;
		font-size: 14px;
		line-height: 18px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	section.fund-compare .table tr td .btn {
		font-size: 14px;
		padding: 5px 15px;
		line-height: 16px;
		border-radius: 5px
	}
	
	.about-banner {
		padding: 60px 0px;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.about-banner h1 {
		font-size: 32px;
		line-height: 45px;
	}
	
	section.about-a {
		padding: 25px 0px;
		text-align: center;
	}
	
	section.about-b {
		padding: 25px 0px 40px 0px;
	}
	
	section.about-b .why-card img {
		margin-bottom: 15px;
	}
	
	section.about-b .why-card .a-title {
		margin-bottom: 10px;
	}
	
	section.about-b .why-card p {
		margin-bottom: 20px;
	}
	
	.contact-banner {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.contact-banner .banner-content {
		margin-bottom: 0px;
	}
	
	.contact-banner .banner-content img {
		width: 40px;
	}
	
	.contact-banner .banner-content p {
		margin-bottom: 0px;
		line-height: 22px;
	}
	
	.contact-banner .banner-content p strong {
		font-size: 18px;
		line-height: 20px;
	}
	
	.contact-us-form {
		padding: 30px 0px;
	}
	
	section.register-user {
		background-image: url(../images/backgrounds/reg-bg.webp);
        background-repeat: no-repeat;
        background-size: cover ! IMPORTANT;
        background-position: center;
	}
	section.register-user h2{
		text-align: center;
	}

	section.register-user p{
		text-align: center;
	}
		
	.footer .footer-top .navbar .navbar-brand {
		width: 100%;
		text-align: center;
		margin-right: 0;
	}
	
	.footer .footer-top ul.list-top li {
		display: block;
		width: 100%;
		text-align: left;
		margin: 5px 0px;
	}

	.footer .footer-top ul {
		justify-content: center;
	}
	
	.footer .footer-bottom ul, 
	.footer .footer-top ul.social-nav  {
		justify-content: center;
	}

	.trustpilot-widget {
		left: 0;
		transform: translateX(0%);
		-webkit-transform: translateX(0%);
	}
}
/* Cookies Banner */

.cookies-bg {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: fixed;
	background-color: #222222c9;
	z-index: 9999;
}

.cookies-eu-banner {
	background: #fff;
    color: var(--secondary);
    padding: 30px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 50%;
    left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
	border-radius: 10px;
	height: max-content;
	text-align: left;
    
  }
  
  .cookies-eu-banner button:hover {
	background: #fff;
	color: #222;
  }
  
  .hidden {
	display: none;
  }

  .cookies-header{
	font-family: 'Rubik', sans-serif;
	font-size: 22px;
    line-height: 26px;
	font-weight: 500;
    letter-spacing: -0.02em;
	color: #29294E;
	text-align: center;
  }

  .cookies-body{
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
    line-height: 22px;
	font-weight: 400;
    letter-spacing: -0.02em;
	color: #29294E;
	overflow-y:scroll ;
	height: 300px;
  }
  
  .cookies-footer{
	text-align: center;
  }

  @media (max-width: 767px) {
	.cookies-eu-banner {
		width: 90%;
		padding: 20px;
	}

	.cookies-eu-banner .cookies-header {
		font-size: 18px;
	}
		
  }
  /* cookies banner end */

  #success-msg{
	display: none;
  }
  #fail-msg{
	display: none;
  }