@font-face {
	font-family: 'Inter-Regular';
	src: url('../fonts/Inter-Regular.ttf') format("truetype");
}

@font-face {
	font-family: 'Inter-Medium';
	src: url('../fonts/Inter-Medium.ttf') format("truetype");
}

@font-face {
	font-family: 'Inter-SemiBold';
	src: url('../fonts/Inter-SemiBold.ttf') format("truetype");
}

@font-face {
	font-family: 'Inter-Bold';
	src: url('../fonts/Inter-Bold.ttf') format("truetype");
}

:root {
	--font-family-heading: 'Inter-Bold';
	--font-family-text: 'Inter-Regular';
	--font-size-text: 15px;
	--font-size-heading: 40px;
	--font-size-subheading: 32px;
    --font-size-medium-heading: 24px;
    --font-size-small-heading: 20px;
	--font-weight: normal;
	--text-color: #656565;
	--heading-color: #000000;
	--background-white: #fff;
    --font-white: #fff;
    /* v1 colors */
    --v1-background-light: #150550;
    --v1-background-dark: #04032E;
    /* --v1-theme-color: #B92F57; */
    --v1-theme-color: #B92F57;
    
}

*,
*:before,
*:after {
	box-sizing: border-box !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: var(--font-family-text);
	font-weight: var(--font-weight);
	font-size: var(--font-size-text);
	line-height: 25px;
	color: var(--text-color);
	background: var(--background-white);
	padding: 0;
	box-sizing: border-box;
	overflow: auto;
}

[hidden] {
	display: none !important;
}


/**
   * HTML5 display definitions
   */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}


/**
   * Text-level semantic
   */

 :active {
	outline: none;
}

a {
	color: inherit;
	background-color: transparent;
	text-decoration: none;
}

a:active, a:hover, a:focus {
	outline: 0;
	text-decoration: none;
	box-shadow: none;
}

button:active, button:hover, button:focus {
	outline: 0;
	box-shadow: none;
}

input:active, input:hover, input:focus {
	outline: 0;
	box-shadow: none;
}

select:active, select:hover, select:focus {
	outline: 0;
	box-shadow: none;
}

textarea:active, textarea:hover, textarea:focus {
	outline: 0;
	box-shadow: none;
}

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-size: inherit;
	font-weight: inherit;
}


/**
   * Embedded content
   */

img {
	max-width: 100%;
	height: auto;
	border-style: none;
	vertical-align: top;
}


/**
   * Grouping content
   */

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 16px;
}


/**
   * Forms
   */

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button,
input[type=submit] {
	padding: 0;
	overflow: visible;
	background: none;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
}

button,
select {
	text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
	-moz-appearance: none;
	border-radius: 0;
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto;
}

input[type=search] {
	-webkit-appearance: none;
	box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: inherit;
}

input::placeholder,
textarea::placeholder {
	color: inherit;
}

.is-tabbing input[type=radio]:focus+label {
	/* Helps improving accessibility */
	outline: 1px dotted #212121;
	outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 6px 10px 12px;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}


/**
   * Tables
   */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/* v1 home style */
.top-info-block{
    height: 50px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium';
    font-weight: normal;
    text-align: center;
    color: var(--font-white);
    position: relative;
}

.v1 .top-info-block{
    background-color: var(--v1-background-dark);
}

.top-menu-list{
    background-color: #000000;
    height: 45px;
    display: flex;
    padding: 5px 0px;
    justify-content: space-between;
}

.top-menu-contact ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu-contact ul li{
    color: var(--font-white);
    margin-right: 20px
}

.top-menu-contact ul li i{
    margin-right: 10px;
}

.top-menu-contact{
    display: flex;
    align-items: center;
}

.top-menu-right{
    height: 100%;
    float: right;
    display: flex;
    align-items: center;
}

.top-menu-right ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu-right ul li{
    color: var(--font-white);
    margin-right: 20px
}

.navbar{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 3px rgb(0 0 0 / 15%);
    height: 90px;
    padding: 10px;
}

.navbar-toggler{
    line-height: 30px;
}

.navbar .container{
    height: 100%;
}

.navbar .container .navbar-collapse{
    height: 100%;
}

.navbar .container .navbar-collapse .navbar-nav{
    height: 100%;
    display: flex;
    align-items: center;
    /* position: absolute !important;
    width: 100% !important;
    left: 0; */
}

.navbar .container .navbar-collapse .navbar-nav .nav-item{
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand{
    width: 180px;
}

.btn-btn1{
    background-color: var(--v1-theme-color);
    border-radius: 6px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    padding: 10px 20px;
    max-width: 180px;
}

.btn-btn1:hover{
    color: #fff;
}

a:hover{
    color: inherit;
}

.brand-text{
    font-family: 'Inter-Bold';
    font-weight: normal;
    font-size: 26px;
    color: #000000;
    margin-bottom: 0;
}

.navbar-nav .nav-item .nav-link{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium';
    font-weight: normal;
    margin-right: 20px;
    color: #000000;
}

.navbar-nav .nav-item{
    position: relative;
}

.navbar-nav .nav-item:hover .dropdown-menu{
    display: block;
    top: 75px;
}

.dropdown-menu{
    padding: 15px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: none;
    border-top: 2px solid #B92F57;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    z-index: 99;
    text-align: left;
    border-radius: 6px;
    min-width: 220px;
}

.dropdown-menu:hover{
    display: block;
}

.dropdown-item:active{
    background-color: var(--v1-background-light);
}

.dropdown-menu.v2 .dropdown-item:active{
    background-color: var(--v2-theme-color-5);
}

.dropdown-item{
    padding: 8px 30px;
    position: relative;
    display: inline-block;
}

.dropdown-menu.v2{
    border-top: 2px solid var(--v2-theme-color-2);
}

.dropdown-toggle::after{
    margin-left: 10px;
    color: var(--v1-theme-color);
}

.dropdown.v2 .dropdown-toggle::after{
    color: var(--v2-theme-color-2);
}

.banner-section .carosel-item.item{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 23vh);
}

.carosel-item.item.slider1{
    background-image: url('../images/slider-1.jpg');
}

.carosel-item.item.slider2{
    background-image: url('../images/slider-2.jpg');
}

.carosel-item.item.slider3{
    background-image: url('../images/slider-3.jpg');
}

.carosel-item.item.slider4{
    background-image: url('../images/slider-4.jpg');
}

.banner-btns{
    width: fit-content;
}

.carousel-item-caption{
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.banner-small-heading{
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    font-family: 'Inter-Medium';
    font-weight: normal;
    margin-bottom: 10px;
}

.banner-main-heading{
    font-size: 48px;
    line-height: 58px;
    color: #000000;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 35px;
}

.banner-section{
    position: relative;
}

.carosel-nav-left{
    position: absolute;
    top: 50%;
    left: 5px;
    padding: 10px;
    background: var(--v1-background-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 6px;
}

.carosel-nav-right{
    position: absolute;
    top: 50%;
    right: 5px;
    padding: 10px;
    background: var(--v1-background-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 6px;
}

.section{
    padding: 70px 0px;
    position: relative;
}

.main-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.section-main-heading{
    font-size: 40px;
    line-height: 48px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: var(--heading-color);
    margin-bottom: 25px;
}

.section-heading{
    text-align: center;
    margin-bottom: 30px;
}

.about-image-wrapper{
    position: relative;
    border-radius: 6px;
    height: 100%;
}

.about-image-wrapper img{
    border-radius: 6px;
    height: 100%;
    display: inline-block;
    width: 100%;
    object-fit: cover;
}


.about-image-wrapper::after{
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #04032E 100%);
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.about-layer-text{
    position: absolute;
    bottom: 0px;
    color: #fff;
    z-index: 11;
    padding: 20px;
}

.about-slide-wrapper .slick-track{
    /* display: flex; */
    flex-direction: column;
}

.about-slide-wrapper .carosel-item.item{
    margin-bottom: 20px;
    background-color: var(--v1-background-light);
    border-radius: 6px;
    padding: 20px;
}

.about-invest-heading{
    color: var(--font-white);
    font-size: 20px;
    line-height: 24px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    margin-bottom: 15px;
}

.about-invest-description{
    color: var(--font-white);
    margin-bottom: 0;
}

.about-invest-inner{
    display: flex;
    align-items: flex-start;
}

.about-invest-inner img{
    margin-right: 20px;
}

.about-slide-wrapper .slick-dots li button:before{
    width: 10px;
    height: 10px;
    display: inline-block;
    content: '';
    background-color: #A09C9C;
    border-radius: 50%;
}

.about-slide-wrapper .slick-dots li.slick-active button:before{
    opacity: 1;
    background-color: var(--v1-theme-color);
    width: 30px;
    border-radius: 8px;
}

.about-slide-wrapper .slick-dots li.slick-active{
    opacity: 1;
    background-color: var(--v1-theme-color);
    width: 30px;
    border-radius: 8px;
}

.about-slide-wrapper .slick-dots li{
    width: auto;
    height: auto;
}

.about-slide-wrapper .slick-dots li button{
    width: auto;
    height: auto;
}

.about-slide-wrapper .slick-dots{
    bottom: -30px;
}

.about-slide-wrapper .slick-slide{
    margin: 0px 10px;
}

.investment-plan{
    background-color: var(--v1-background-dark);
    padding: 70px 0px;
}

.investment-plan-card{
    background-color: var(--v1-background-light);
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 6px;
    z-index: 1;
    overflow: hidden;
}

.plan-header{
    text-align: center;
}

.plan-header-heading{
    font-size: 26px;
    line-height: 31px;
    color: #fff;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 25px;
}

.plan-header-offer{
    font-size: 40px;
    line-height: 48px;
    color: var(--v1-theme-color);  
    margin-bottom: 25px; 
}

.plan-header-offer span{
    font-size: 22px;
    line-height: 48px;
    color: var(--font-white); 
}

.plan-body table, .plan-body td, .plan-body th {
    border: 1px solid #ccc;
}

.plan-body table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.plan-body table tbody td{
    padding: 10px;
    color: #fff;
}

.plan-bottom{
    margin-top: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-white{
    color: var(--font-white);
}

.investment-plan-card::after{
    background: url('../images/plan-layer-bg.png');
    background-repeat: no-repeat;
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.best-sale{
    position: absolute;
    right: -52px;
    top: 24px;
    background: #1AA15F;
    width: 180px;
    text-align: center;
    height: 30px;
    line-height: 28px;
    color: #fff;
    transform: rotate(45deg);
}

.choose-us-heading{
    font-size: 24px;
    line-height: 29px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 0;
}

.choose-us-descrip{
    color: #fff;
}

.choose-us-card{
    background-color: var(--v1-background-light);
    padding: 30px;
    border-radius: 6px;
}

.choose-us-inner-icon{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.choose-us-inner-icon img{
    margin-right: 15px;
}

.how-tostart{
    background-color: var(--v1-background-dark);
    padding: 70px 0px;
}

.how-start-card{
    background-color: var(--v1-background-light);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.how-start-head{
    font-size: 24px;
    line-height: 29px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.how-start-descrip{
    color: #fff;
}

.hs-card-count{
    background-color: var(--v1-theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 15%;
}

.how-start-card.odd{
    margin-top: 50px;;
}

.about-profit-heading{
    font-size: 32px;
    line-height: 39px;
    color: #02012B;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 20px;
}

.calculator-card{
    background-color: var(--v1-background-light);
    padding: 30px;
    position: relative;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
}

.calc-input-wrapper{
    position: relative;
    margin-bottom: 25px;
}

.calc-label{
    width: 100%;
    color: #fff;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

.calc-input{
    width: 100%;
    background: rgb(185 47 87 / 20%);
    border-radius: 6px;
    height: 51px;
    padding: 10px 15px;
    border: none;
}

.testimonial{
    background-color: var(--v1-background-dark);
    padding: 70px 0px;
}

.testimonia-info-heading{
    font-size: 32px;
    line-height: 39px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
}

.testimonial-info-descrip{
    color: #fff;
}

.btn-reviews{
    background: var(--v1-background-light);
    border-radius: 6px;
    padding: 10px 20px;
    height: 50px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-info-btns{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial .slick-slide{
    background-color: var(--v1-background-light);
    margin: 0px 10px;
    border-radius: 6px;
}

.testimonial .slick-center{
    background-color: var(--v1-theme-color);
}

.testimonial .carosel-item.item{
    border-radius: 6px;
}

.testimonial-card{
    padding: 25px;
    position: relative;
    border-radius: 6px;
}

.tc-header{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tc-header img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.tc-info h4{
    font-size: 18px;
    line-height: 25px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 0px;
    color: #fff;
}

.tc-info p{
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 0px;
    color: #fff;
}

.stars-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.stars-list li{
    margin-right: 3px;
    color: #FEC731;
}

.tc-body p{
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}

.carosel-nav-left-testi{
    height: 50px;
    width: 50px;
    background-color: var(--v1-background-light);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
}

.carosel-nav-right-testi{
    height: 50px;
    width: 50px;
    background-color: var(--v1-background-light);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
}

.testi-arros{
    display: flex;
}

.blog-card{
    background-color: var(--v1-background-light);
    padding: 30px;
    height: 100%;
    border-radius: 6px;
}

.blog-image{
    margin-bottom: 20px;
}

.blog-image img{
    width: 100%;
    height: 210px;
    display: inline-block;
    object-fit: cover;
}

.blog-flag-btn span{
    color: #fff;
    background-color: var(--v1-theme-color);
    padding: 10px 20px;
    font-size: 12px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    border-radius: 6px;
}

.blog-flag-btn{
    margin-bottom: 20px;
}

.blog-user-info{
    margin-bottom: 20px;
}

.blog-user-info ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.blog-user-info ul li i{
    color: var(--v1-theme-color);
    margin-right: 10px;
    font-size: 14px;
}

.blog-user-info ul li span{
    color: #fff;
    font-family: 'Inter-Medium';
    font-weight: normal;
    font-size: 14px;
}

.blog-info h3{
    font-size: 22px;
    line-height: 27px;
    color: #fff;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 20px;
}

.blog-info p{
    color: #fff;
    margin-bottom: 0;
}

.btn-know-more-blog{
    width: 100%;
    text-align: right;
    text-transform: uppercase;
    margin-top: 20px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    display: inline-block;
    color: #fff;
}

.btn-know-more-blog::after{
    content: '➜';
    position: relative;
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
}

.subscribe{
    padding: 50px 0px;
    background: linear-gradient(0deg, rgba(21, 5, 80, 0.8), rgba(21, 5, 80, 0.8)), url('../images/subscribe-bg.jpg');
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.subscribe-services-info h3{
    font-size: 32px;
    line-height: 39px;
    color: #fff;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 20px;
}

.subscribe-services-info p{
    color: #fff;
    margin-bottom: 0;
}

.subscribe-heading{
    font-size: 22px;
    line-height: 39px;
    color: #fff;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 20px;
}

.boottom-subscribe-input{
    background: #04032E;
    border-radius: 6px;
    width: 60%;
    display: inline-block;
    height: 51px;
    padding: 10px 15px;
    border: none;
}

.submit-btn-subs{
    height: 51px;
    padding: 10px 15px;
    background-color: var(--v1-theme-color);
    color: #fff;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    margin-left: -10px;
}

.top-footer{
    padding: 50px 0px;
    /* background-color: var(--v1-background-dark); */
    background-image: url('../images/footer-bg-v1.png');
    background-position: initial;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
}
 
.footer-list-heading{
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 30px;
}

.footer-compnay-sescrip{
    font-size: 16px;
    /* line-height: 19px; */
    color: #fff;
    margin-bottom: 30px;
}

.footer-socail-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-socail-list li{
    margin-right: 10px;
}

.footer-socail-list li a{
    background-color: #fff;
    border-radius: 6px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v1-theme-color)
}

.footer-link-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li{
    margin: 10px 0px;
}

.footer-link-list li a{
    color: #fff;
}

.footer-link-list li a::before{
    content: '➜';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
}

.bottom-footer{
    background-color: var(--v1-background-light);
    padding: 15px 0px;    
}

.footer-bottom-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-list li{
    margin-left: 15px;
}

.footer-bottom-list li a{
    color: #fff;
}

/* v2 - Home */
:root {
    --v2-theme-color-1: #1D414E;
    --v2-theme-color-2: #E7A913;
    --v2-theme-color-3: #569EAA;
    --v2-theme-color-4: #10322B;
    --v2-theme-color-5: #EA6A63;
    --v2-theme-color-6: #2C3E53;
    --v2-theme-color-7: #357D6C;
    --v2-theme-color-8: #EADFD0;
    --v2-theme-color-9: #242D38;
}

.top-header.v2{
    background-color: var(--v2-theme-color-1);
}

.btn-btn1.v2{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.btn-btn1.v2-banner{
    background-color: var(--v2-theme-color-3);
}

.carosel-nav-left.v2{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.carosel-nav-right.v2{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.about-image-wrapper.v2::after{
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, var(--v2-theme-color-4) 100%);
}

.about-slide-wrapper.v2 .carosel-item.item{
    background-color: var(--v2-theme-color-4);
}

.about-slide-wrapper.v2 .slick-dots li.slick-active button:before{
    background-color: var(--v2-theme-color-5);
}

.investment-plan.v2{
    background-color: var(--v2-theme-color-6)
}

.investment-plan-card.v2{
    background-color: var(--v2-theme-color-7);
}

.v2 .plan-header-offer{
    color: var(--v2-theme-color-2);
}

.v2 .btn-btn1{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.v2 .investment-plan-card::after{
    background: url('../images/plan-layer-bg-v2.png');
    background-repeat: no-repeat;
}

.v2 .best-sale{
    background: #f43a30;
}

.choose-us-card.v2{
    background-color: var(--v2-theme-color-8);
}

.choose-us-card.v2 .choose-us-heading{
    color: #000000;
}

.choose-us-card.v2 .choose-us-descrip{
    color: #000000;
}

.how-tostart.v2{
    background-color: var(--v2-theme-color-6);
}

.v2 .how-start-card{
    background-color: var(--v2-theme-color-4);
}

.v2 .hs-card-count{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.calculator-card.v2{
    background-color: var(--v2-theme-color-4);
}

.v2 .calc-input{
    background: rgba(231, 169, 19, 0.2);
}

.calc-input::placeholder{
    color: #fff;
}

.calc-input{
    color: #fff;
}

.testimonial.v2{
    background-color: var(--v2-theme-color-6);
}

.v2 .btn-reviews{
    background: var(--v2-theme-color-2);
}

.v2 .carosel-nav-left-testi{
    background: var(--v2-theme-color-3);
}

.v2 .carosel-nav-right-testi{
    background: var(--v2-theme-color-3);
}

.v2.testimonial .slick-slide{
    background: var(--v2-theme-color-3);
}

.v2.testimonial .slick-center{
    background-color: var(--v2-theme-color-5);
}

.blog-card.v2{
    background: var(--v2-theme-color-4);
}

.blog-card.v2 .blog-flag-btn span{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.blog-card.v2 .blog-user-info ul li i{
    color: var(--v2-theme-color-2);
}

.subscribe.v2{
    background: linear-gradient(0deg, rgba(86, 158, 170, 0.8), rgba(86, 158, 170, 0.8)), url('../images/subscribe-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.subscribe.v2 .boottom-subscribe-input{
    background: var(--v2-theme-color-4);
}

.subscribe.v2 .submit-btn-subs{
    background-color: var(--v2-theme-color-2);
    color: #fff;
}

.top-footer.v2{
    background-image: url('../images/footer-bg-v2.png');
}

.top-footer.v2 .footer-socail-list li a{
    color: var(--v2-theme-color-2);
}

.bottom-footer.v2{
    background-color: var(--v2-theme-color-9);
}

/* page styles */
.page-banner{
    background: linear-gradient(0deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url('../images/investment-banner.jpg');
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}

.page-banner-inner-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-banner-heading{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
    text-align: center;
}

.page-banner-descrip{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    color: #fff;
    text-align: center;
}

.servives-inner-card{
    width: 100%;
    padding: 30px;
    background-color: var(--v1-background-light);
    border-radius: 6px;
    display: flex;
    transition: ease-in-out 0.5s;
}

.sic-icon{
    background-color: var(--v1-theme-color);
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-right: 15px;
    border-radius: 6px;
}

.sic-content{
    width: 100%;
}

.sic-heading{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
}

.sic-descrip{
    color: #fff;
    margin-bottom: 0;
}

.contact-form{
    background: linear-gradient(0deg, rgb(41 45 56 / 95%), rgb(41 45 56 / 95%)), url('../images/contact-us.jpg');
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cf-input-container{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.cf-input-container label{
    color: #fff;
    width: 100%;
    display: inline-block;
}

.cf-input-container input{
    width: 100%;
    padding: 6px 15px;
    border: none;
    border-bottom: 1px solid #fff;
    /* height: 50px; */
    background: transparent;
    color: #fff;

}

.cf-input-container textarea{
    width: 100%;
    padding: 6px 15px;
    border: none;
    border-bottom: 1px solid #fff;
    /* height: 50px; */
    background: transparent;
}

.cf-info-wrapper h4{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
}

.cf-info-wrapper p{
    color: #fff;
}

.cf-info-wrapper a{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
}

.servives-inner-card:hover{
    margin-top: -35px;
    transition: ease-in-out 0.5s;
    background-color: var(--v1-background-dark);
}

.servives-inner-card.v2{
    background-color: var(--v2-theme-color-4);
}

.v2 .sic-icon{
    background-color: var(--v2-theme-color-2);
}

.blog-detail-banner{
    background-image: url('../images/page-head-bg-v1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    background-attachment: fixed;
}

.bd-heading{
    font-size: 42px;
    line-height: 30px;
    margin-bottom: 0px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
    text-align: center;
}

.blog-detail-image{
    position: relative;
}

.blog-detail-image img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.blog-publish-overlay{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.blog-publish-date{
    background-color: var(--v1-background-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #fff;
    font-size: 13px;
    padding: 5px;
    line-height: 20px;
}

.blog-bublisg-icon{
    background-color: var(--v1-background-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    font-size: 13px;
    padding: 5px;
    line-height: 20px;
}

.blog-content-body{
    padding: 40px 0px;
}

.blog-content-heading{
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
}

.blog-content-publish span{
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 20px;
}

.blog-content-publish{
    margin-bottom: 30px;
}

.blog-content-tags{
    margin: 40px 0px;
    display: inline-block;
}

.blog-content-tags .bct-btn{
    padding: 10px 15px;
    text-align: center;
    background-color: #A09C9C;
    color: #000000;
    border-radius: 6px;
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-content-tags .bct-btn.active{
    background-color: var(--v1-background-light);
    color: #fff;
}

.blog-content-author{
    display: flex;
}

.bca-image{
    min-width: 90px;
    margin-right: 20px;
}

.bca-image img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: inline-block;
}

.bca-social-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bca-social-list li a{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--v1-theme-color);
    color: #fff;
    margin-right: 6px;
    font-size: 12px;
}

.bca-info-heading{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
}

.bca-info-position{
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: var(--v1-background-light);
}

.comments-heading{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
    margin-top: 50px;
}

.comments-list{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.comments-list ul li {
    margin-bottom: 25px;
}

.comments-details {
    background: var(--v1-background-light);
    border: 1px solid var(--v1-background-light);
    overflow: hidden;
    padding: 30px;
}

.comments-list-image {
    float: left;
    margin-right: 30px;
    border-radius: 50%;
}

.comments-list-image img {
    border-radius: 50%;
    border: 1px solid var(--v1-theme-color);
    width: 82px;
    height: auto;
}

.comments-content-wrap {
    color: #eee;
    position: relative;
    font-size: 15px;
    padding-left: 112px;
}

.comments-content-wrap span b {
    margin-right: 5px;
    color: var(--v1-theme-color);
}

.comments-content-wrap span.post-time {
    margin-right: 5px;
}

.comments-content-wrap span a {
    color: var(--v1-theme-color);
}

.comments-list li {
    margin-bottom: 25px;
}

.threaded-comments {
    margin-left: 50px;
}

.comment-input-wrapper{
    margin-bottom: 25px;
}

.comment-input{
    padding: 10px 15px;
    border: 1px solid #ccc;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
}

.comment-input::placeholder{
    font-size: 12px;
}

.blog-search{
    position: relative;
    margin-bottom: 30px;
}

.blog-input-search{
    padding: 10px 35px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

.blog-search i{
    position: absolute;
    top: 13px;
    color: var(--v1-background-light);
    right: 10px;
}

.blog-sidebar-heading{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.blog-recent-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent-list li{
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
}

.blog-post-recent-image{
    min-width: 90px;
    height: 70px;
    border: 1px solid #ccc;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 10px;
    margin-right: 15px;
    border-radius: 6px;
}

.blog-post-recent-image img{
    object-fit: cover;
}

.blog-post-recent-info h3 a{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
}

.blog-post-recent-info p{
    margin-bottom: 0;
    font-size: 12px;
}

.blog-recent-list li:last-child{
    border: none;
}

.blog-tag-list{
    list-style: none;
    margin: 0;
    padding: 0; 
}

.blog-tag-list li{
    margin-right: 10px;
    width: auto;
    display: inline-flex;
    margin-bottom: 10px;
}

.blog-tag-list li a{
    padding: 10px;
    background-color: var(--v1-theme-color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
}

.contact-info-card{
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding-top: 55px;
    background-color: #fff;
    height: 100%;
}

.icon-box{
    position: absolute;
    top: 0px;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v1-theme-color);
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: #fff;
    font-size: 40px;
}

.contact-info-card h3{
    color: var(--v1-background-light);
    font-family: 'Inter-Bold';
    font-size: 20px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info-card p{
    color: #8d8d8d;
}

.contact-info-card a{
    font-size: 12px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: var(--v1-theme-color);
}

.page-contact-us{
    position: relative;
    margin-top: 50px;
    z-index: 10;
}

.theme-color-v1{
    color: var(--v1-theme-color) !important;
}

.contactus-form{
    background-color: var(--v1-background-light);
    position: relative;
    z-index: 9;
    margin-top: -130px;
    padding-top: 130px;
}

.questionmark-overlay{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    opacity: 0.07;
    width: 300px;
}

.contactus-form-heading{
    font-size: 30px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

.our-story-heading{
    font-size: 30px;
    line-height: 35px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: #000000;
}

.our-story-image{
   max-width: 400px;
   width: auto;
   margin: auto;
   text-align: center;
}

.our-story-cwrapper p{
    margin-bottom: 30px;
}

.our-story-planning-list{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

.our-story-planning-list li{
    width: 50%;
    float: left;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.our-story-planning-list li span{
    width: 20px;
    margin-right: 10px;
}

.our-story-planning-list li h4{
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    margin-bottom: 0px;
    color: #000000;
}

.our-story-planning-list li h4 span{
    width: 100%;
    float: left;
}

.our-story-planning-list li h4 span.small-text{
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    margin-bottom: 0px;
    color: #656565;
}

/* .list-happy.our-story-planning-list li{
    width: 100%;
} */

.accordion.faq{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.accordion.faq .card{
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    border: none;
    margin-bottom: 20px;
}

.accordion.faq .card .card-header{
    border: 1px solid #ede8ff;
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 0px;
    background-color: #ede8ff;
}

.accordion.faq .card .card-header h2 button{
    font-size: 14px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    color: #000000;
}

.accordion.faq .card .card-header h2 button:hover{
    text-decoration: none;
}

.accordion.faq .card .card-header h2 button[aria-expanded="false"]::after{
    content: "\f067";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: var(--v1-background-light);
    font-size: 14px;
    position: absolute;
    top: 15px;
    right: 30px;
}

.accordion.faq .card .card-header h2 button[aria-expanded="true"]::after{
    content: "\f068";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: var(--v1-background-light);
    font-size: 14px;
    position: absolute;
    top: 15px;
    right: 30px;
}

.accordion.faq .card .card-header h2 button:focus{
    box-shadow: none;
    text-decoration: none;
}

.accordion.faq .card .card-header:hover, .accordion.faq .card .card-header:active{
    border-color: var(--v1-background-light);
    background-color: #fff;
    color: var(--v1-background-light);
}

.accordion.faq .card .card-header:hover h2 button{
    color: var(--v1-background-light);
}

.our-team{
    /* background-color: #ede8ff; */
    background: linear-gradient(0deg, rgb(237 232 255 / 80%), rgba(237 232 255 / 80%)), url('../images/team-bg.png');
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.our-team-card{
    text-align: center;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 6px;
}

.our-team-image{
    width: 120px;
    height: 120px;
    margin: auto;
    background-image: url('../images/team-img-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.our-team-image img{
    width: 100px;
    border-radius: 50%;
    position: relative;
    top: 8px;
    left: -5px;
}

.our-team-info h3{
    font-size: 16px;
    font-family: 'Inter-Semibold';
    font-weight: normal;
    color: var(--v1-theme-color);
    margin-bottom: 5px;
}

.our-team-info h4{
    font-size: 14px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    color: var(--v1-background-light);
    margin-bottom: 10px;
}

.our-team-info ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team-info ul li{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-team-info ul li {
    font-size: 12px;
    color: #000;
}

.reviews .testimonial-card{
    background-color: var(--v1-background-light);
}

.company-terms {
    display: block;
    overflow: hidden;
    margin-right: 30px;
}

.single-terms {
    margin-bottom: 30px;
}

.single-terms h4 {
    font-size: 18px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    margin-bottom: 10px;
}

.single-terms .number {
    color: var(--v1-theme-color);
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    padding-right: 10px;
    float: left;
}

span.terms-text {
    padding-left: 40px;
    display: inherit;
    font-size: 20px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #000;
}

.single-terms p {
    padding-left: 40px;
}

.terms-right {
    background: var(--v1-background-light);
    padding: 40px 30px 30px;
    overflow: hidden;
    border-radius: 6px;
}

.terms-single h4{
    font-size: 24px;
    line-height: 32px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #fff;
}

.terms-single p{
    color: #fff;
}

.terms-list{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.terms-list li {
    position: relative;
    padding-left: 30px;
    margin: 5px 0px;
    line-height: 32px;
    color: #fff;
}

.terms-list li::after {
    position: absolute;
    left: 0px;
    top: 6px;
    content: "\f00c";
    font-family: FontAwesome;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    color: var(--v1-theme-color);
    border: 1px solid var(--v1-theme-color);
}

.error-page{
    background-image: url('../images/error-bg-v1.jpg');
    width: 100%;
    height: calc(100vh - 0px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
}

.line-h0{
    line-height: 0;
}

.error-page-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.error-page-wrapper h1{
    font-size: 120px;
    /* line-height: 150px; */
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 30px;
}

.error-page-wrapper h3{
    font-size: 35px;
    line-height: 45px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 30px;
}

.error-page-wrapper p{
    font-size: 20px;
    line-height: 30px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.login{
    /* background-color: #ede8ff; */
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #ede8ff;
}


.page-login-form{
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 30px;
    position: relative;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
}

.page-login-wrapper{
    padding: 30px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-login-form form h4{
    font-size: 24px;
    line-height: 30px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: var(--v1-background-light);
    margin-bottom: 15px;
    text-align: center;
}

.page-login-form form p{
    font-family: 'Inter-Regular';
    font-weight: normal;
    text-align: center;
    font-size: 13px;
}

.login-input-wrapper{
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    display: inline-block;
}

.login-input{
    width: 100%;
    position: relative;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.login-input-wrapper i{
    position: absolute;
    top: 13px;
    left: 10px;
    color: var(--v1-theme-color);
}

.btn-auth-submit{
    max-width: 100%;
    width: 100%;
}

.login-options{
    text-align: center;
    margin-top: 30px;
    /* margin-bottom: 30px; */
}

.auth-link{
    color: var(--v1-theme-color);
}

.login-options p{
    margin-bottom: 0;
    margin-top: 15px;
}

.page-login-logo{
    text-align: center;
    margin-bottom: 20px;
}

.page-login-logo img{
    width: 40px;
}

.login-input::placeholder{
    color: #A09C9C;
    font-size: 13px;
}

.help-card{
    border: 1px solid #ccc;
    display: inline-block;
    padding: 30px;
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 6px;
}

.help-card-icon{
    width: 80px;
    height: 80px;
    background-color: var(--v1-background-light);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.help-card h3{
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    text-align: center;
    font-size: 20px;
    color: var(--v1-background-dark);
}

.help-category-heading{
    font-family: 'Inter-medium';
    font-weight: normal;
    text-align: left;
    font-size: 20px;
    color: var(--v1-background-dark);
    margin-bottom: 25px;
}

.help-category-read-more{
    width: 100%;
    text-decoration: underline;
    color: var(--v1-theme-color);
    text-align: right;
    margin: 30px 0px;
    display: inline-block;
}

.help-category-content-list{
    margin-bottom: 30px;
}

.help-categories-list-wrapper{
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 30px;
    border-radius: 6px;
}

.categories-heading{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: 'Inter-Bold';
    font-weight: normal;
    color: #1b1b1b;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.help-categories-list-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.help-categories-list-wrapper ul li{
    margin-bottom: 10px;
}

.help-categories-list-wrapper ul li a{
    font-size: 14px !important;
    line-height: 20px;
    margin-bottom: 0px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    color: #1b1b1b;
}

.help-categories-list-wrapper ul li a:hover{
    color: var(--v1-theme-color);
}

.category-article-list{
    padding-left: 20px !important;
}

.category-article-list li a{
    font-size: 14px !important;
    line-height: 20px;
    margin-bottom: 0px;
    font-family: 'Inter-Regular' !important;
    font-weight: normal;
    color: #A09C9C !important;
    font-style: italic;
}

.article-main-heading{
    font-size: 26px;
    line-height: 25px;
    margin-bottom: 40px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #1b1b1b;
}

.article-second-heading{
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 20px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #1b1b1b;
}

.article-small-heading{
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
    color: #1b1b1b;
}

.artilce-main-content p{
    margin-bottom: 40px;
}

.article-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

blockquote{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    font-style: italic;
}

.quote-author{
    font-size: 12px;
}

/* v2 styles */
.blog-detail-banner.v2{
    background-image: url('../images/page-head-bg-v2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    background-attachment: fixed;
}
.v2 .icon-box{
    color: var(--v2-theme-color-5);
}

.v2 .theme-color-v1{
    color: var(--v2-theme-color-5) !important;
}

.v2.contact-info-card a{
    color: var(--v2-theme-color-5);
}

.v2.contactus-form{
    background-color: var(--v2-theme-color-6);
}

.v2 .blog-publish-date{
    background-color: var(--v2-theme-color-4);
}

.v2 .blog-bublisg-icon{
    background-color: var(--v2-theme-color-2);
}

.blog-content-tags.v2 .bct-btn.active{
    background-color: var(--v2-theme-color-5);
}

.v2 .bca-info-position{
    color: var(--v2-theme-color-6);
}

.bca-social-list.v2 li a{
    background-color: var(--v2-theme-color-2);
}

.v2 .comments-details{
    background: var(--v2-theme-color-3);
    border-color: var(--v2-theme-color-3);
}

.v2 .comments-list-image img{
    border-color: var(--v2-theme-color-2);
}

.v2 .comments-content-wrap span a{
    color: var(--v2-theme-color-2);
}

.v2 .comments-content-wrap span b{
    color: var(--v2-theme-color-2);
}

.blog-tag-list.v2 li a{
    background-color: var(--v2-theme-color-5);
}

.accordion.faq.v2 .card .card-header{
    background-color: #d4fff6;
    border-color: #d4fff6;
}

.accordion.faq.v2 .card .card-header h2 button[aria-expanded="false"]::after{
    color: var(--v2-theme-color-2);
}

.accordion.faq.v2 .card .card-header h2 button[aria-expanded="true"]::after{
    color: var(--v2-theme-color-2);
}

.accordion.faq.v2 .card .card-header:hover h2 button{
    color: var(--v2-theme-color-1);
}

.our-team.v2{
    background: linear-gradient(0deg, rgb(212 255 246 / 80%), rgba(212 255 246 / 80%)), url('../images/team-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed;*/
}

.v2 .our-team-info h3{
    color: var(--v2-theme-color-5);
}

.v2 .reviews .testimonial-card{
    background-color: var(--v2-theme-color-4);
}

.single-terms.v2 .number{
    color: var(--v2-theme-color-2);
}

.terms-right.v2{
    background-color: var(--v2-theme-color-4);
}

.v2 .terms-list li::after{
    color: var(--v2-theme-color-2);
    border-color: var(--v2-theme-color-2);
}

.v2.error-page{
    background-image: url('../images/error-bg-v2.jpg');
    width: 100%;
    height: calc(100vh - 0px);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
}

.login.v2{
    background-color: var(--v2-theme-color-8);
}

.v2 .login-input-wrapper i{
    color: var(--v2-theme-color-2);
}
.v2 .auth-link{
    color: var(--v2-theme-color-5);
}

.v2 .help-card-icon{
    background-color: var(--v2-theme-color-4);
}

.v2 .help-card h3{
    color: #000;
}

.v2 .help-category-read-more{
    color: var(--v2-theme-color-2);
}

.v2 .help-categories-list-wrapper ul li a:hover{
    color: var(--v2-theme-color-2);
}

.v2 .page-login-form form h4{
    color: #000;
}

.backto-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #a24e67;
  color: white;
  cursor: pointer;
  /* padding: 15px; */
  border-radius: 6px;
  width: 50px;
  height: 50px;
}

.backto-top:hover {
  background-color: #555;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--v2-theme-color-1);
    font-size: 14px;
    border-radius: 6px;
    z-index: 10;
    bottom: 72px;
    left: 50%;
    padding-left: 10px;
    color: #fff;
    width: 265px;
    transform: translate(-50%, 50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.check-success-icon {
    background: var(--v2-theme-color-2);
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -30px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}