diff --git a/app/Http/Controllers/Admin/AdminLoginController.php b/app/Http/Controllers/Admin/AdminLoginController.php
index 42513f1..0c2f73a 100644
--- a/app/Http/Controllers/Admin/AdminLoginController.php
+++ b/app/Http/Controllers/Admin/AdminLoginController.php
@@ -33,7 +33,7 @@ class AdminLoginController extends Controller
if (Hash::check($password, $userPassword)) {
session()->put('email', $email);
- $this->otpMail($email);
+ // $this->otpMail($email);
return response()->json(['status' => 200, 'message' => 'OTP has been send on your mail!']);
};
diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php b/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php
index aa28a52..5809a97 100644
--- a/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php
+++ b/app/Http/Controllers/Admin/ManageFreeUInvestmentController.php
@@ -53,6 +53,7 @@ class ManageFreeUInvestmentController extends Controller
->leftJoin('high_yield_finances as hyf', 'products.id', 'hyf.products_id')
->leftJoin('lease_based_financings as lbf', 'products.id', 'lbf.products_id')
->leftJoin('venture_debts as vd', 'products.id', 'vd.products_id')
+ // ->leftJoin('real_estates as re', 'products.id', 're.products_id')
->join('categories', 'products.categories_id', 'categories.id')
->latest('products.created_at')
->get();
diff --git a/app/Http/Controllers/Admin/ManageFreeUInvestments/ManageCategoriesController.php b/app/Http/Controllers/Admin/ManageFreeUInvestments/ManageCategoriesController.php
index 30460e5..46e7bed 100644
--- a/app/Http/Controllers/Admin/ManageFreeUInvestments/ManageCategoriesController.php
+++ b/app/Http/Controllers/Admin/ManageFreeUInvestments/ManageCategoriesController.php
@@ -62,12 +62,12 @@ class ManageCategoriesController extends Controller
$id = $request->category_id;
$validator = Validator::make($request->all(), [
'category_name' => 'required|unique:categories,category_name,' . $id . '',
- ],[
+ ], [
'required' => 'The :attribute field must be required',
'unique' => 'The :attribute field must be unique'
]);
$validationMessage = $this->validationError($validator);
- if ($validationMessage) {
+ if ($validationMessage) {
return response()->json(['status' => 400, 'message' => $validationMessage]);
}
$updateCategoryName = Category::where('id', $id)->update([
@@ -76,13 +76,14 @@ class ManageCategoriesController extends Controller
return response()->json(['status' => 200, 'message' => 'Category Updated!']);
}
- public function deleteCategory(Request $request){
+ public function deleteCategory(Request $request)
+ {
$id = $request->category_id;
$category = Category::find($id);
- if(!$category){
+ if (!$category) {
return response()->json(['status' => 400, 'message' => 'Error Deleting Category!!']);
}
- Category::where('id',$id)->delete();
+ Category::where('id', $id)->delete();
return response()->json(['status' => 200, 'message' => 'Category Deleted!!']);
}
@@ -98,24 +99,25 @@ class ManageCategoriesController extends Controller
}
}
- public function categoryList(){
+ public function categoryList()
+ {
$categories = Category::all();
- if(!$categories){
- return response()->json(['status'=>400,'message'=>'No Categories'],400);
+ if (!$categories) {
+ return response()->json(['status' => 400, 'message' => 'No Categories'], 400);
}
- return response()->json(['status'=>200,'data'=>$categories],200);
+ return response()->json(['status' => 200, 'data' => $categories], 200);
}
public function dataTable(Request $request)
{
if ($request->ajax()) {
$data = Category::select('*');
- if($request->dropdownValue!=null && $request->dropdownValue != 'orderby'){
+ if ($request->dropdownValue != null && $request->dropdownValue != 'orderby') {
$where = $request->dropdownValue;
- $data->where('status',$where);
+ $data->where('status', $where);
};
- if($request->dropdownValue == 'orderby'){
- $data->orderBy('id','desc');
+ if ($request->dropdownValue == 'orderby') {
+ $data->orderBy('id', 'desc');
};
return Datatables::of($data)->addIndexColumn()
->editColumn('created_at', function ($row) {
@@ -123,7 +125,7 @@ class ManageCategoriesController extends Controller
return '
' . $formattedDate . '
';
})
->editColumn('category_name', function ($row) {
- return '' . $row->category_name . '
';
+ return '' . $row->category_name . '
';
})
->addColumn('action', function ($row) {
$status = $row->status == 1 ? 'checked' : 'null';
diff --git a/app/Http/Controllers/Admin/ManageInvestorController.php b/app/Http/Controllers/Admin/ManageInvestorController.php
index b10e47e..343db7b 100644
--- a/app/Http/Controllers/Admin/ManageInvestorController.php
+++ b/app/Http/Controllers/Admin/ManageInvestorController.php
@@ -272,13 +272,13 @@ class ManageInvestorController extends Controller
return '' . $formattedDate . '
';
})
->editColumn('name', function ($row) {
- return '' . $row->user->name . '
';
+ return '' . $row->user->name . '
';
})
->editColumn('email', function ($row) {
- return '' . $row->email . '
';
+ return '' . $row->email . '
';
})
->editColumn('status', function ($row) {
- return '' . $row->status . '
';
+ return '' . $row->status . '
';
})
->addColumn('action', function ($row) {
if ($row->status == 'Approved') {
@@ -360,22 +360,22 @@ class ManageInvestorController extends Controller
return '' . $formattedDate . '
';
})
->editColumn('name', function ($row) {
- return '' . $row->name . '
';
+ return '' . $row->name . '
';
})
->editColumn('email', function ($row) {
- return '' . $row->email . '
';
+ return '' . $row->email . '
';
})
->editColumn('contact_number', function ($row) {
- return '' . $row->contact_number . '
';
+ return '' . $row->contact_number . '
';
})
->editColumn('amount_invested', function ($row) {
- return '' . $this->totalInvestment($row->id) . '
';
+ return '' . $this->totalInvestment($row->id) . '
';
})
->editColumn('active_investment', function ($row) {
- return '' . $this->totalInvestmentCount($row->id) . ' Investment(s)
';
+ return '' . $this->totalInvestmentCount($row->id) . ' Investment(s)
';
})
->editColumn('status', function ($row) {
- return '' . $row->status . '
';
+ return '' . $row->status . '
';
})
->addColumn('action', function ($row) {
$checked = $row->status == 1 ? 'checked' : '';
diff --git a/app/Http/Controllers/Frontend/HandpickedInvestmentController.php b/app/Http/Controllers/Frontend/HandpickedInvestmentController.php
index 2394589..903c0a1 100644
--- a/app/Http/Controllers/Frontend/HandpickedInvestmentController.php
+++ b/app/Http/Controllers/Frontend/HandpickedInvestmentController.php
@@ -24,16 +24,17 @@ class HandpickedInvestmentController extends Controller
->distinct('categories_id')
->where('categories.status', true)
->get();
+ // $productsWithCategories = $this->filterData(request()->search ?? '', $urlCategories, $assetType, $geographicFocus);
// dd($products);
return view('Frontend.Pages.handpicked-investment', compact('products', 'type', 'categories', 'urlCategories'));
}
function fetchData(Request $request)
{
- // dd($request->get('geographicFocus'));
if ($request->ajax()) {
$products = $this->filterData($request->get('query'), $request->get('categories'), $request->get('assetType'), $request->get('geographicFocus'));
- // dd($products);
+ // $productsWithCategories = $this->filterData($request->get('query'), $request->get('categories'), $request->get('assetType'), $request->get('geographicFocus'));
+
return view('Frontend.Pages.handpicked-investment.pagination', compact('products'))->render();
}
}
@@ -42,7 +43,6 @@ class HandpickedInvestmentController extends Controller
{
if (!is_array($categories) && $categories)
$categories = explode(',', $categories);
- // dd($categories);
$faCategoriesArr = [
Category::FractionalRealEstateId,
Category::VentureCapitalFundId,
@@ -100,35 +100,14 @@ class HandpickedInvestmentController extends Controller
->orWhere('re.geographic_focus', $geographicFocus);
});
})
- // ->when($assetType && $geographicFocus, function ($query) use ($geographicFocus) {
- // $query->where(function ($query) use ($geographicFocus) {
- // $query->where('fre.geographic_focus', $geographicFocus)
- // ->orWhere('aif.geographic_focus', $geographicFocus)
- // ->orWhere('funds.geographic_focus', $geographicFocus)
- // ->orWhere('re.geographic_focus', $geographicFocus);
- // });
- // })
- // ->when($geographicFocus, function ($query) use ($geographicFocus, $categories){
- // $query->where('fre.geographic_focus', $geographicFocus);
- // $query->orWhere('aif.geographic_focus', $geographicFocus);
- // $query->orWhere('funds.geographic_focus', $geographicFocus);
- // $query->orWhere('re.geographic_focus', $geographicFocus);
- // $query->when($categories, function($query) use ($categories){
- // $query->whereIn('products.categories_id', $categories);
- // });
- // })
->when($categories, function ($query) use ($categories) {
$query->whereIn('products.categories_id', $categories);
})
- ->where(function($query){
+ ->where(function ($query) {
$query->where('products.status', true);
$query->where('categories.status', true);
})
- // ->orWhereIn('products.categories_id', ['2','28'])
->paginate(6);
- // ->get();
- // return $categories;
- // return $products->toArray();
$products->appends(['search' => $query, 'categories' => $this->encode_arr($categories)]);
return $products->withPath('/primary-investment');
diff --git a/app/Http/Requests/StoreCompanyKYC.php b/app/Http/Requests/StoreCompanyKYC.php
index 1f58841..4d86c36 100644
--- a/app/Http/Requests/StoreCompanyKYC.php
+++ b/app/Http/Requests/StoreCompanyKYC.php
@@ -28,8 +28,6 @@ class StoreCompanyKYC extends FormRequest
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,' . auth()->guard('users')->user()->id . ',users_id',
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,' . auth()->guard('users')->user()->id . ',users_id',
'dob' => 'required',
- 'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
- 'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
diff --git a/app/Http/Requests/StoreCompanyKYCApi.php b/app/Http/Requests/StoreCompanyKYCApi.php
index dd6da0e..e5d0494 100644
--- a/app/Http/Requests/StoreCompanyKYCApi.php
+++ b/app/Http/Requests/StoreCompanyKYCApi.php
@@ -28,8 +28,6 @@ class StoreCompanyKYCApi extends FormRequest
'mobile_number' => 'required|regex:/^(\+\d{1,3}[- ]?)?\d{10,12}$/|unique:user_kycs,mobile_number,'.request()->user()->id.',users_id',
'email' => 'required|regex:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/|unique:user_kycs,email,'.request()->user()->id.',users_id',
'dob' => 'required',
- 'father_name' => 'required|regex:/^[a-zA-Z\s]+$/',
- 'mother_name' => 'required|regex:/^[a-zA-Z\s]+$/',
'occupation' => 'required|regex:/^[a-zA-Z\s]+$/',
'place_of_birth' => 'required|regex:/^[a-zA-Z\s]+$/',
'gross_annual_income' => 'required|regex:/^[0-9]+$/',
diff --git a/app/Http/Resources/PrivateRealEstateFundResource.php b/app/Http/Resources/PrivateRealEstateFundResource.php
index 50b0e13..dfbfa14 100644
--- a/app/Http/Resources/PrivateRealEstateFundResource.php
+++ b/app/Http/Resources/PrivateRealEstateFundResource.php
@@ -18,8 +18,8 @@ class PrivateRealEstateFundResource extends JsonResource
return [
'id' => $this->id,
'products_id' => $this->products_id,
- 'presentation' => Product::find($this->products_id)->value('presentation'),
- 'fact_sheet' => Product::find($this->products_id)->value('fact_sheet'),
+ 'presentation' => Product::find($this->products_id) == false ? null : Product::find($this->products_id)->value('presentation'),
+ 'fact_sheet' => Product::find($this->products_id) == false ? null : Product::find($this->products_id)->value('fact_sheet'),
'fund_name' => $this->fund_name,
'slug' => $this->slug,
'registration_number' => $this->registration_number,
diff --git a/app/Services/Admin/CompanyService.php b/app/Services/Admin/CompanyService.php
index f4df11e..add9560 100644
--- a/app/Services/Admin/CompanyService.php
+++ b/app/Services/Admin/CompanyService.php
@@ -27,17 +27,17 @@ class CompanyService
return '' . $formattedDate . '
';
})
->editColumn('company_logo', function ($row) {
- return '';
+ return '';
})
->editColumn('company_name', function ($row) {
- return '' . $row->company_name . '
';
+ return '' . $row->company_name . '
';
})
->editColumn('categories', function ($row) {
$s = '';
- foreach($row->category as $cat){
- $s .= trim($cat->category->pluck('category_name'),'[]"').',';
+ foreach ($row->category as $cat) {
+ $s .= trim($cat->category->pluck('category_name'), '[]"') . ',';
}
- return '' . $s . '
';
+ return '' . $s . '
';
})
->addColumn('action', function ($row) {
$status = $row->status == 1 ? 'checked' : 'null';
@@ -60,7 +60,7 @@ class CompanyService
';
return $btn;
})
- ->rawColumns(['company_logo', 'company_name', 'categories','created_at', 'action'])
+ ->rawColumns(['company_logo', 'company_name', 'categories', 'created_at', 'action'])
->make(true);
}
}
diff --git a/public/assets/css/FrontendCss/style.css b/public/assets/css/FrontendCss/style.css
index 4c0f62e..09becc3 100644
--- a/public/assets/css/FrontendCss/style.css
+++ b/public/assets/css/FrontendCss/style.css
@@ -1,6 +1,5 @@
/*@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500;700&family=Arimo:wght@400;500;600&family=Berkshire+Swash&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
-
/*@font-face {*/
/* font-family: 'Alegreya Sans';*/
/* src: url('../font/Alegreya/AlegreyaSans-Regular.woff2') format('woff2'),*/
@@ -11,12 +10,12 @@
/*}*/
@font-face {
- font-family: 'Cambria';
- src: url('') format('woff2'),
- url('../../font/cambria/Cambria.woff') format('woff');
- font-weight: normal;
- font-style: normal;
- font-display: swap;
+ font-family: "Cambria";
+ src: url("") format("woff2"),
+ url("../../font/cambria/Cambria.woff") format("woff");
+ font-weight: normal;
+ font-style: normal;
+ font-display: swap;
}
/*@font-face {*/
@@ -29,1498 +28,1493 @@
/*}*/
a {
- text-decoration: none;
+ text-decoration: none;
}
p {
- font-family: 'Cambria';
+ font-family: "Cambria";
}
a:focus-visible {
- outline: none !important;
+ outline: none !important;
}
body {
- overflow-x: hidden;
- font-family: 'Cambria';
+ overflow-x: hidden;
+ font-family: "Cambria";
}
html {
- overflow-x: hidden;
+ overflow-x: hidden;
}
.header-menu .menubar {
- background-color: #1B243D;
- height: 100px;
- top: 0;
- position: fixed;
- right: 0;
- left: 0;
- z-index: 10;
+ background-color: #1b243d;
+ height: 100px;
+ top: 0;
+ position: fixed;
+ right: 0;
+ left: 0;
+ z-index: 10;
}
div#masthead {
- position: relative;
+ position: relative;
}
.desktop-sbContainer {
- max-width: 100%;
- width: 100%;
- margin: auto;
- box-shadow: 0 2px 12px 0 rgba(0,0,0,.04);
- text-align: center;
- height: 99px;
+ max-width: 100%;
+ width: 100%;
+ margin: auto;
+ box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
+ text-align: center;
+ height: 99px;
}
.topbar .social-head p {
- margin-bottom: 0;
+ margin-bottom: 0;
}
.social-head {
- display: flex;
+ display: flex;
}
.header-menu .page ul.navbar-nav {
- height: 78px;
- display: flex;
- justify-content: center;
- align-items: center;
- justify-content: space-between;
+ height: 78px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ justify-content: space-between;
}
.header-menu .page li a {
- color: #C18948;
- font-size: 20px;
- font-family: cambria;
- border: none;
+ color: #c18948;
+ font-size: 20px;
+ font-family: cambria;
+ border: none;
}
.header-menu .page li.login-btn a {
- background-color: #C18948;
- color: #000;
- padding: 10px 42px;
- border-radius: 50px;
+ background-color: #c18948;
+ color: #000;
+ padding: 10px 42px;
+ border-radius: 50px;
}
h2.fell-font {
- font-family: im fell;
+ font-family: im fell;
}
.main-banner h2 {
- font-size: 38px;
- color: #1B243D;
- margin-bottom: 30px;
+ font-size: 38px;
+ color: #1b243d;
+ margin-bottom: 30px;
}
.main-banner .wealth li {
- color: #C18948;
- font-size: 18px;
- font-family: 'Cambria';
+ color: #c18948;
+ font-size: 18px;
+ font-family: "Cambria";
}
.wealth ul {
- margin-bottom: 31px;
- padding-left: 20px;
+ margin-bottom: 31px;
+ padding-left: 20px;
}
.blue-btn a {
- background-color: #1B243D;
- padding: 11px 32px;
- border-radius: 50px;
- color: #C18948;
- font-weight: 600;
+ background-color: #1b243d;
+ padding: 11px 32px;
+ border-radius: 50px;
+ color: #c18948;
+ font-weight: 600;
}
.blue-btn {
- margin-bottom: 12px;
- margin-top: 12px;
+ margin-bottom: 12px;
+ margin-top: 12px;
}
.main-banner .investor h6 {
- margin-left: 15px;
- font-size: 18px;
- color: #000;
+ margin-left: 15px;
+ font-size: 18px;
+ color: #000;
}
.main-banner p.title {
- font-size: 14px;
- font-style: italic;
- color: #1B243D;
+ font-size: 14px;
+ font-style: italic;
+ color: #1b243d;
}
.main-banner .investor {
- border-bottom: 1px solid #00000073;
- padding-bottom: 7px;
- margin-bottom: 3px;
+ border-bottom: 1px solid #00000073;
+ padding-bottom: 7px;
+ margin-bottom: 3px;
}
.main-banner .investor img {
- width: 30px;
- height: 35px;
+ width: 30px;
+ height: 35px;
}
.main-banner .banner-card {
- background-color: #E8C69F;
- padding: 18px 16px;
- border-radius: 20px;
- margin-bottom: 20px;
- height: 90%;
+ background-color: #e8c69f;
+ padding: 18px 16px;
+ border-radius: 20px;
+ margin-bottom: 20px;
+ height: 90%;
}
.main-banner .banner-card p {
- font-size: 15px;
- color: #000;
- font-family: 'Cambria';
+ font-size: 15px;
+ color: #000;
+ font-family: "Cambria";
}
.main-banner .bridge-img img {
- width: 100%;
- height: 778px;
- object-fit: cover;
+ width: 100%;
+ height: 778px;
+ object-fit: cover;
}
.main-banner .banner-left-content {
- width: 83%;
- margin: auto;
+ width: 83%;
+ margin: auto;
}
.market-size {
- background-color: #C18948;
- padding: 2rem 0;
+ background-color: #c18948;
+ padding: 2rem 0;
}
.market-size .global-sec h5 {
- background-color: #EFEAE5;
- width: 85px;
- height: 85px;
- border-radius: 50px;
- display: flex;
- align-items: center;
- text-align: center;
- font-size: 18px;
- margin-bottom: 0;
- justify-content: center;
- font-weight: 400;
- font-family: cambria;
+ background-color: #efeae5;
+ width: 85px;
+ height: 85px;
+ border-radius: 50px;
+ display: flex;
+ align-items: center;
+ text-align: center;
+ font-size: 18px;
+ margin-bottom: 0;
+ justify-content: center;
+ font-weight: 400;
+ font-family: cambria;
}
.market-size .global-sec p {
- margin-bottom: 0;
- padding: 10px 0;
- font-family: cambria;
- font-size: 18px;
+ margin-bottom: 0;
+ padding: 10px 0;
+ font-family: cambria;
+ font-size: 18px;
}
.alternative h2 {
- font-size: 20px;
- font-family: cambria;
- font-weight: 600;
- color: #C18948;
- margin-bottom: 15px;
+ font-size: 20px;
+ font-family: cambria;
+ font-weight: 600;
+ color: #c18948;
+ margin-bottom: 15px;
}
.alternative p {
- color: #E8C69F;
- font-size: 26px;
- font-family: cambria;
+ color: #e8c69f;
+ font-size: 26px;
+ font-family: cambria;
}
.alternative li {
- color: #E8C69F;
- line-height: 32px;
- font-family: cambria;
- font-size: 18px;
+ color: #e8c69f;
+ line-height: 32px;
+ font-family: cambria;
+ font-size: 18px;
}
.alternative img {
- width: 100%;
- height: auto;
-
+ width: 100%;
+ height: auto;
}
.alternative {
- background-color: #1B243D;
- padding: 4rem 0 2rem 0;
+ background-color: #1b243d;
+ padding: 4rem 0 2rem 0;
}
.alter-assets img {
- width: 100%;
+ width: 100%;
}
.alter-assets {
- background-color: #FFF3E4;
- padding: 2rem 0;
+ background-color: #fff3e4;
+ padding: 2rem 0;
}
.alternative .alter-port {
- display: flex;
- flex-direction: column;
- justify-content: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
}
.alter-assets h2 {
- background-color: #1B243D;
- color: #C18948;
- font-size: 20px;
- padding: 18px;
- font-family: Cambria;
- border-radius: 13px;
- margin-bottom: 40px;
- display: inline-block;
+ background-color: #1b243d;
+ color: #c18948;
+ font-size: 20px;
+ padding: 18px;
+ font-family: Cambria;
+ border-radius: 13px;
+ margin-bottom: 40px;
+ display: inline-block;
}
.main-footer {
- background-color: #1B243D;
- padding: 2rem 0;
+ background-color: #1b243d;
+ padding: 2rem 0;
}
.main-footer h2 {
- color: #fff;
- font-size: 20px;
- font-family: cambria;
- font-weight: 600;
- margin-bottom: 35px;
+ color: #fff;
+ font-size: 20px;
+ font-family: cambria;
+ font-weight: 600;
+ margin-bottom: 35px;
}
.main-footer li a {
- color: #fff;
+ color: #fff;
}
.main-footer li {
- list-style: none;
- line-height: 29px;
+ list-style: none;
+ line-height: 29px;
}
.main-footer ul {
- padding-left: 0;
- display: grid;
- grid-template-columns: repeat(2, 2fr);
+ padding-left: 0;
+ display: grid;
+ grid-template-columns: repeat(2, 2fr);
}
.main-footer .app-logo img {
- width: 100px;
- border-radius: 8px;
- margin-right: 10px;
+ width: 100px;
+ border-radius: 8px;
+ margin-right: 10px;
}
.main-footer p {
- color: #E8C69F;
- font-size: 14px;
- font-weight: 500;
- margin-bottom: 32px;
- line-height: 26px;
+ color: #e8c69f;
+ font-size: 14px;
+ font-weight: 500;
+ margin-bottom: 32px;
+ line-height: 26px;
}
.main-footer .icons img {
- width: 27px;
- margin-right: 9px;
+ width: 27px;
+ margin-right: 9px;
}
.bg-brown-head h3 {
- background-color: #C18948;
- font-size: 26px;
- font-family: Cambria;
- font-weight: 600;
- display: inline;
- padding: 8px 20px;
- border-radius: 5px;
+ background-color: #c18948;
+ font-size: 26px;
+ font-family: Cambria;
+ font-weight: 600;
+ display: inline;
+ padding: 8px 20px;
+ border-radius: 5px;
}
.bg-brown-head {
- margin-top: 3px;
+ margin-top: 3px;
}
h4.inner-title {
- font-size: 22px;
- font-family: Cambria;
- font-weight: 600;
+ font-size: 22px;
+ font-family: Cambria;
+ font-weight: 600;
}
.popular-assets {
- background-color: #EFEAE5;
- padding: 4rem 0;
+ background-color: #efeae5;
+ padding: 4rem 0;
}
.bg-brown-head p {
- color: #C18948;
- font-weight: 600;
- margin-top: 19px;
- font-size: 15px;
- font-family: cambria;
- margin-bottom: 5px;
+ color: #c18948;
+ font-weight: 600;
+ margin-top: 19px;
+ font-size: 15px;
+ font-family: cambria;
+ margin-bottom: 5px;
}
.explore-assets h4 {
- font-size: 26px;
- color: #C18948;
- font-family: cambria;
+ font-size: 26px;
+ color: #c18948;
+ font-family: cambria;
}
.explore-assets {
- /*background-color:#f8f4ec;*/
- /*box-shadow: -1px 1px 5px #c7c4c4;*/
- padding: 4rem 0;
+ /*background-color:#f8f4ec;*/
+ /*box-shadow: -1px 1px 5px #c7c4c4;*/
+ padding: 4rem 0;
}
.dropdown-tooltip a.btn {
- background-color: transparent;
- border-radius: 50px;
- margin-right: 10px;
- border: none;
- padding: 0px;
+ background-color: transparent;
+ border-radius: 50px;
+ margin-right: 10px;
+ border: none;
+ padding: 0px;
}
.dropdown-tooltip a.btn img {
- width: 33px;
- height: auto;
+ width: 33px;
+ height: auto;
}
.dropdown-tooltip p.about {
- color: #A6A6A6;
- font-size: 14px;
+ color: #a6a6a6;
+ font-size: 14px;
}
.dropdown-tooltip .dropdown-toggle::after {
- display: none;
+ display: none;
}
.dropdown-tooltip {
- text-align: center;
- position: relative;
- color: #A6A6A6;
+ text-align: center;
+ position: relative;
+ color: #a6a6a6;
}
.dropdown-tooltip .dropdown-menu.show {
- width: 467px;
- transform: translate(2px, 41px) !important;
- padding: 12px;
- background-color: #A6A6A6;
+ width: 467px;
+ transform: translate(2px, 41px) !important;
+ padding: 12px;
+ background-color: #a6a6a6;
}
.popular-assets .dropdown-tooltip .dropdown-menu.show {
- width: 290px;
+ width: 290px;
}
.alternative .dropdown-tooltip p {
- font-size: 14px;
- color: #000;
- line-height: 21px;
- margin-bottom: 0;
+ font-size: 14px;
+ color: #000;
+ line-height: 21px;
+ margin-bottom: 0;
}
.alternative .dropdown-tooltip {
- margin-top: 54px;
+ margin-top: 54px;
}
.header-menu .page img {
- width: 12px;
- margin-left: 2px;
+ width: 12px;
+ margin-left: 2px;
}
.main-banner .bridge-img {
- padding-right: 0;
+ padding-right: 0;
}
.parimay-card .assets-card {
- background-color: #D9D9D9;
- border-radius: 20px;
- overflow: hidden;
+ background-color: #d9d9d9;
+ border-radius: 20px;
+ overflow: hidden;
}
.parimay-card {
- display: grid;
- grid-template-columns: repeat(3, 3fr);
- grid-gap: 60px;
+ display: grid;
+ grid-template-columns: repeat(3, 3fr);
+ grid-gap: 60px;
}
.parimay-card .card-logo img {
- width: 100%;
- height: 112px;
- max-width: fit-content;
- /*object-fit: cover;*/
+ width: 100%;
+ height: 112px;
+ max-width: fit-content;
+ /*object-fit: cover;*/
}
.assets-card .card-logo {
- text-align: center;
+ text-align: center;
}
.parimay-card .blur-md {
- background-color: #1B243D;
- display: flex;
- align-items: center;
- padding: 6px 18px;
- height: 55px;
+ background-color: #1b243d;
+ display: flex;
+ align-items: center;
+ padding: 6px 18px;
+ height: 55px;
}
.parimay-card .blur-md p {
- color: #C18948;
- font-family: cambria;
- margin-bottom: 0;
- margin-left: 5px;
+ color: #c18948;
+ font-family: cambria;
+ margin-bottom: 0;
+ margin-left: 5px;
}
.parimay-card .blur-md h5 {
- color: #1B243D;
- background-color: #C18948;
- font-size: 12px;
- width: 32px;
- height: 32px;
- border-radius: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 11px;
- min-width: 32px;
+ color: #1b243d;
+ background-color: #c18948;
+ font-size: 12px;
+ width: 32px;
+ height: 32px;
+ border-radius: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 11px;
+ min-width: 32px;
}
.card-logo.bg-blue {
- background-color: #304ebe;
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
+ background-color: #304ebe;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
}
.parimay-card .blur-md img {
- width: 35px;
+ width: 35px;
}
.parimay-card .blur-md img.center-ig {
- width: 29px;
- margin: 0px 11px;
+ width: 29px;
+ margin: 0px 11px;
}
.parimay-card .middle-sec img {
- width: 26px !important;
- border-radius: 50px;
- margin-right: 4px;
+ width: 26px !important;
+ border-radius: 50px;
+ margin-right: 4px;
}
.assets-card .middle-sec {
- display: flex;
- background-color: #E8C69F;
- padding: 12px 7px;
- align-items: center;
- justify-content: space-between;
+ display: flex;
+ background-color: #e8c69f;
+ padding: 12px 7px;
+ align-items: center;
+ justify-content: space-between;
}
.assets-card .middle-sec p {
- margin: 0px;
- font-size: 15px;
- display: flex;
- align-items: center;
+ margin: 0px;
+ font-size: 15px;
+ display: flex;
+ align-items: center;
}
.assets-card .org span {
- color: #FF5300;
- font-weight: 600;
- margin-left: 4px;
+ color: #ff5300;
+ font-weight: 600;
+ margin-left: 4px;
}
.assets-card .grn span {
- color: #00BF63;
- font-weight: 600;
- margin-left: 4px;
+ color: #00bf63;
+ font-weight: 600;
+ margin-left: 4px;
}
.assets-card p.cate {
- margin-bottom: 0px;
- font-weight: 600;
- padding: 8px;
- font-size: 14px;
- height: 57px;
- display: flex;
- align-items: center;
- font-family: cambria;
+ margin-bottom: 0px;
+ font-weight: 600;
+ padding: 8px;
+ font-size: 14px;
+ height: 57px;
+ display: flex;
+ align-items: center;
+ font-family: cambria;
}
.assets-card .dics h4 {
- font-size: 14px;
- font-weight: 600;
- font-family: cambria;
+ font-size: 14px;
+ font-weight: 600;
+ font-family: cambria;
}
.assets-card .dics p {
- font-size: 14px;
- font-family: cambria;
+ font-size: 14px;
+ font-family: cambria;
}
.parimay-card .assets-card .dics {
- padding: 15px;
+ padding: 15px;
}
.card-logo.bg-white {
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
}
.parimay-card .latest p {
- margin-bottom: 0;
- font-size: 14px;
- color: #fff;
+ margin-bottom: 0;
+ font-size: 14px;
+ color: #fff;
}
.parimay-card .latest {
- background-color: #C28848;
- padding: 8px 12px;
+ background-color: #c28848;
+ padding: 8px 12px;
}
.inner-banner {
- background-size: cover;
- height: 290px;
- position: relative;
- display: flex;
- align-items: center;
+ background-size: cover;
+ height: 290px;
+ position: relative;
+ display: flex;
+ align-items: center;
}
.inner-banner-about {
- background-image: url(../../media/FrontendImages/inner-banner-about.jfif);
+ background-image: url(../../media/FrontendImages/inner-banner-about.jfif);
}
.inner-banner-insights {
- background-image: url(../../media/FrontendImages/inner-banner-insight.svg);
+ background-image: url(../../media/FrontendImages/inner-banner-insight.svg);
}
-.inner-banner-investors{
- background-image: url(../../media/FrontendImages/Intermediary.svg);
+.inner-banner-investors {
+ background-image: url(../../media/FrontendImages/Intermediary.svg);
}
-.inner-banner-managers{
- background-image: url(../../media/FrontendImages/AssetManager.svg);
+.inner-banner-managers {
+ background-image: url(../../media/FrontendImages/AssetManager.svg);
}
.inner-banner-pricing.inner-banner {
- /*background-image: url(https://jerichoalternatives.in/public/assets/css/FrontendCss/../../media/FrontendImages/inner-banner-new.png);*/
- background-image: url(../../media/FrontendImages/inner-banner-new.png);
+ /*background-image: url(https://jerichoalternatives.in/public/assets/css/FrontendCss/../../media/FrontendImages/inner-banner-new.png);*/
+ background-image: url(../../media/FrontendImages/inner-banner-new.png);
}
.inner-banner .overlay {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- background-color: #00000038;
- height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ background-color: #00000038;
+ height: 100%;
}
.primary-offer h4 {
- font-size: 20px;
+ font-size: 20px;
}
.primary-offer h3 {
- font-size: 26px;
+ font-size: 26px;
}
.primary-offer {
- background-color: #EDD9C2;
- margin-bottom: 30px;
- padding: 20px;
- border-radius: 12px;
+ background-color: #edd9c2;
+ margin-bottom: 30px;
+ padding: 20px;
+ border-radius: 12px;
}
.inner-banner h2 {
- color: #FFBD59;
- font-size: 36px;
- position: relative;
+ color: #ffbd59;
+ font-size: 36px;
+ position: relative;
}
.inner-banner p {
- color: #fff;
- font-size: 18px;
- margin-bottom: 0;
- position: relative;
+ color: #fff;
+ font-size: 18px;
+ margin-bottom: 0;
+ position: relative;
}
.about-inner-contain h4 {
- font-size: 20px;
- font-weight: 600;
+ font-size: 20px;
+ font-weight: 600;
}
.about-inner-contain img {
- width: 100%;
- position: relative;
- z-index: 9;
+ width: 100%;
+ position: relative;
+ z-index: 9;
}
.about-inner-contain {
- background-color:#EFEAE5;
- padding-top: 5rem;
- position: relative;
+ background-color: #efeae5;
+ padding-top: 5rem;
+ position: relative;
}
.about-inner-contain:after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- border-bottom: 58.5px solid #DDD4BD;
+ content: "";
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ border-bottom: 58.5px solid #ddd4bd;
}
.banner-content {
- display: flex;
- justify-content: space-between;
- align-items: center;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
}
.inner-banner .banner-content img {
- width: 170px;
+ width: 170px;
}
.main-footer .logo img {
- width: 105px;
- text-align: center;
+ width: 105px;
+ text-align: center;
}
.inner-banner .banner-content h4 {
- color: #FFBD59;
- font-size: 18px;
- font-style: italic;
- position: relative;
+ color: #ffbd59;
+ font-size: 18px;
+ font-style: italic;
+ position: relative;
}
.inner-contain {
- padding: 4rem 0;
- background-color: #EFEAE5;
+ padding: 4rem 0;
+ background-color: #efeae5;
}
.inner-contain .create-account {
- background-color: #1B243D;
- padding: 32px 15px;
- border-radius: 20px;
+ background-color: #1b243d;
+ padding: 32px 15px;
+ border-radius: 20px;
}
.create-account h3 {
- font-size: 22px;
- color: #fff;
+ font-size: 22px;
+ color: #fff;
}
.create-account p {
- color: #fff;
+ color: #fff;
}
.create-account .creat-form input {
- width: 100%;
- background-color: transparent;
- border: none;
- border-bottom: 1px solid #0000008a;
- padding: 4px;
+ width: 100%;
+ background-color: transparent;
+ border: none;
+ border-bottom: 1px solid #0000008a;
+ padding: 4px;
}
.create-account .creat-form {
- background-color: #fff;
- padding: 18px 12px;
- border-radius: 20px;
+ background-color: #fff;
+ padding: 18px 12px;
+ border-radius: 20px;
}
input:focus-visible {
- outline: none;
+ outline: none;
}
input:focus {
- outline: none;
+ outline: none;
}
.g-recaptcha iframe {
- transform: scale(0.9);
+ transform: scale(0.9);
}
.create-account .creat-form .g-recaptcha iframe {
- transform: scale(0.9) translateX(-16px);
+ transform: scale(0.9) translateX(-16px);
}
.create-account button {
- background-color: #C18948;
- width: 110px;
- height: 50px;
- border-radius: 10px;
- border: none;
- margin-top: 10px;
- color: #fff;
+ background-color: #c18948;
+ width: 110px;
+ height: 50px;
+ border-radius: 10px;
+ border: none;
+ margin-top: 10px;
+ color: #fff;
}
.inner-contain .empanel-cont {
- padding-left: 0;
- padding-right: 50px;
- line-height: 26px;
+ padding-left: 0;
+ padding-right: 50px;
+ line-height: 26px;
}
.inner-contain .empanel-cont li {
- padding-bottom: 18px;
+ padding-bottom: 18px;
}
.create-account .creat-form input::placeholder {
- font-size: 14px;
+ font-size: 14px;
}
.contact-form .tab-pane::-webkit-scrollbar-thumb {
- background: #aba9a3;
- border-radius: 5px;
+ background: #aba9a3;
+ border-radius: 5px;
}
.contact-form .tab-pane::-webkit-scrollbar-track {
- border-radius: 5px;
+ border-radius: 5px;
}
.contact-form .tab-pane::-webkit-scrollbar {
- width: 5px;
- height: 50px;
+ width: 5px;
+ height: 50px;
}
.inner-banner-funds {
- background-image: url('../../media/FrontendImages/inner-banner-fund.png');
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url("../../media/FrontendImages/inner-banner-fund.png");
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.fractional-banner {
- background-image: url(../../media/FrontendImages/alternative-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/alternative-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.angel-funds-banner {
- background-image: url(../../media/FrontendImages/angel-funds-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/angel-funds-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.infrastructure-funds {
- background-image: url(../../media/FrontendImages/infa-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/infa-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.venture-funds {
- background-image: url(../../media/FrontendImages/vacture-capital.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
- background-position: bottom;
+ background-image: url(../../media/FrontendImages/vacture-capital.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
+ background-position: bottom;
}
.Distressed-Funds {
- background-image: url(../../media/FrontendImages/Distressed-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Distressed-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.private-funds-banner {
- background-image: url(../../media/FrontendImages/private-funds-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/private-funds-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.private-credit-banner {
- background-image: url(../../media/FrontendImages/Private-credit-banner.png);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Private-credit-banner.png);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.pipe-funds {
- background-image: url(../../media/FrontendImages/Pipe_Funds.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Pipe_Funds.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.hedge-funds-banner {
- background-image: url(../../media/FrontendImages/Hedge-Funds.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Hedge-Funds.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.Long-Equity-Funds-banner {
- background-image: url(../../media/FrontendImages/Long-Equity-Funds.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Long-Equity-Funds.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.venture-capital-funds {
- background-image: url(../../media/FrontendImages/Venture-Capital-Funds.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Venture-Capital-Funds.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.global-hedge-funds {
- background-image: url(../../media/FrontendImages/Global-Hedge-Funds.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Global-Hedge-Funds.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.global-reits-banner {
- background-image: url(../../media/FrontendImages/Global-REIT.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Global-REIT.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.exotic-etfs-banner {
- background-image: url(../../media/FrontendImages/Exotic-ETFS.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Exotic-ETFS.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.industrial-estate-banner {
- background-image: url(../../media/FrontendImages/Industrial-real-banner.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Industrial-real-banner.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.commercial-estate-banner {
- background-image: url(../../media/FrontendImages/Commercial-real-estate.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Commercial-real-estate.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.residential-estate-banner {
- background-image: url(../../media/FrontendImages/Residential-real-estate.svg);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/Residential-real-estate.svg);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.pip-fund img {
- width: 80%;
+ width: 80%;
}
.fs-four li.brown-text {
- color: #D19D60;
- font-size: 14px;
+ color: #d19d60;
+ font-size: 14px;
}
.residential-graph h5 {
- font-size: 16px;
- font-weight: 600;
- margin-left: 10px;
+ font-size: 16px;
+ font-weight: 600;
+ margin-left: 10px;
}
-
.fs-four li {
- font-size: 14px;
+ font-size: 14px;
}
.fs-four p.brown-text {
- margin-bottom: 0;
- font-size: 15px;
+ margin-bottom: 0;
+ font-size: 15px;
}
.amount-tabs .more li {
- font-size: 12px;
- font-style: italic;
+ font-size: 12px;
+ font-style: italic;
}
.amount-tabs .more p {
- font-size: 12px;
- font-style: italic;
+ font-size: 12px;
+ font-style: italic;
}
.your-investment .pers h2 {
- font-size: 40px;
- color: #bf1111;
- font-family: sans-serif;
+ font-size: 40px;
+ color: #bf1111;
+ font-family: sans-serif;
}
.your-investment .pers p {
- font-size: 14px;
+ font-size: 14px;
}
.your-investment .pers {
- margin-bottom: 38px;
+ margin-bottom: 38px;
}
.private-dept {
- background-color: #E8C69F;
- padding: 15px;
- border-radius: 10px;
+ background-color: #e8c69f;
+ padding: 15px;
+ border-radius: 10px;
}
.your-investment .private-dept img {
- width: 65%;
+ width: 65%;
}
.banner-text-contain h2 {
- color: #FFBD59;
- font-size: 36px;
+ color: #ffbd59;
+ font-size: 36px;
}
.banner-text-contain p {
- color: #fff;
- font-size: 18px;
- margin-bottom: 0;
+ color: #fff;
+ font-size: 18px;
+ margin-bottom: 0;
}
.banner-text-contain h4 {
- color: #FFBD59;
- font-size: 18px;
- font-weight: 400;
+ color: #ffbd59;
+ font-size: 18px;
+ font-weight: 400;
}
.banner-text-contain button {
- background-color: #1B243D;
- color: #FFBD59;
- border: 2px solid #000;
- margin-bottom: 20px;
- margin-top: 9px;
- border-radius: 5px;
- font-size: 14px;
+ background-color: #1b243d;
+ color: #ffbd59;
+ border: 2px solid #000;
+ margin-bottom: 20px;
+ margin-top: 9px;
+ border-radius: 5px;
+ font-size: 14px;
}
.banner-btn a {
- padding: 9px 25px;
- background-color: #FFBD59;
- color: #000;
- font-weight: 500;
- border: 2px solid #000;
- border-radius: 5px;
+ padding: 9px 25px;
+ background-color: #ffbd59;
+ color: #000;
+ font-weight: 500;
+ border: 2px solid #000;
+ border-radius: 5px;
}
.banner-profile h5 {
- font-size: 18px;
- color: #fff;
- font-weight: 500;
- border-bottom: 1px solid #ffffffb8;
+ font-size: 18px;
+ color: #fff;
+ font-weight: 500;
+ border-bottom: 1px solid #ffffffb8;
}
.indian-startup img {
- width: 85%;
+ width: 85%;
}
.banner-profile p {
- font-size: 17px;
- margin-bottom: 0;
- color: #fff;
+ font-size: 17px;
+ margin-bottom: 0;
+ color: #fff;
}
.banner-profile .profile img {
- width: 80px;
- margin-right: 15px;
+ width: 80px;
+ margin-right: 15px;
}
.banner-profile {
- background-color: #C18948;
- padding: 10px;
- border-radius: 10px;
- width: 85%;
- margin: auto;
+ background-color: #c18948;
+ padding: 10px;
+ border-radius: 10px;
+ width: 85%;
+ margin: auto;
}
.your-investment h2.invest-fund {
- font-size: 36px;
- position: relative;
- margin-bottom: 24px;
+ font-size: 36px;
+ position: relative;
+ margin-bottom: 24px;
}
.your-investment h3 {
- font-size: 23px;
- margin-bottom: 2px;
+ font-size: 23px;
+ margin-bottom: 2px;
}
-
.your-investment h2.invest-fund:after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 0;
- width: 302px;
- border: 1px solid #C18948;
+ content: "";
+ position: absolute;
+ bottom: -5px;
+ left: 0;
+ width: 302px;
+ border: 1px solid #c18948;
}
.your-investment .structure img {
- margin-bottom: 28px;
- height: 325px;
- width: auto;
+ margin-bottom: 28px;
+ height: 325px;
+ width: auto;
}
.your-investment ul.key-feature {
- display: grid;
- grid-template-columns: repeat(2, 2fr);
- margin-top: 10px;
+ display: grid;
+ grid-template-columns: repeat(2, 2fr);
+ margin-top: 10px;
}
.your-investment {
- background-color: #EFEAE5;
- padding: 4rem 0;
+ background-color: #efeae5;
+ padding: 4rem 0;
}
.your-investment .historical img {
- width: 100%;
- height: 100%;
+ width: 100%;
+ height: 100%;
}
h2.inner-heading {
- font-size: 25px;
- font-weight: 600;
- margin-bottom: 26px;
+ font-size: 25px;
+ font-weight: 600;
+ margin-bottom: 26px;
}
.historical {
- background-color: #E8C69F;
- padding: 20px;
- border-radius: 15px;
+ background-color: #e8c69f;
+ padding: 20px;
+ border-radius: 15px;
}
.your-investment .hist-card {
- background-color: #E8C69F;
- padding: 20px;
- border-radius: 15px;
- height: 100%;
+ background-color: #e8c69f;
+ padding: 20px;
+ border-radius: 15px;
+ height: 100%;
}
.banifit-tabs ul {
- list-style: auto;
- padding: 11px 21px;
+ list-style: auto;
+ padding: 11px 21px;
}
.banifit-tabs .nav-tabs button {
- width: 135px;
+ width: 135px;
}
.banifit-tabs button.nav-link.active {
- background-color: #e8c69f !important;
- color: #000;
+ background-color: #e8c69f !important;
+ color: #000;
}
.banifit-tabs button.benefits {
- border-top-right-radius: 0;
- border-top-left-radius: 40px;
- border-bottom: 0;
- border-top: 1px;
- margin-right: 2px;
+ border-top-right-radius: 0;
+ border-top-left-radius: 40px;
+ border-bottom: 0;
+ border-top: 1px;
+ margin-right: 2px;
}
.banifit-tabs button.risks {
- border-top-left-radius: 0 !important;
- border-top-right-radius: 40px;
- border: none;
- margin-left: 2px;
+ border-top-left-radius: 0 !important;
+ border-top-right-radius: 40px;
+ border: none;
+ margin-left: 2px;
}
.banifit-tabs .tab-content .tab-pane.benefits {
- background-color: #e8c69f;
- padding: 20px;
- border-radius: 15px;
- height: 100%;
+ background-color: #e8c69f;
+ padding: 20px;
+ border-radius: 15px;
+ height: 100%;
}
-.banifit-tabs .tab-content .tab-pane{
- background-color: #e8c69f;
- padding: 20px;
- border-radius: 15px;
- height: 100%;
- color: #fff;
+.banifit-tabs .tab-content .tab-pane {
+ background-color: #e8c69f;
+ padding: 20px;
+ border-radius: 15px;
+ height: 100%;
+ color: #fff;
}
.banifit-tabs .tab-content .tab-pane.active {
- background-color: #e8c69f;
- color: #000;
+ background-color: #e8c69f;
+ color: #000;
}
.banifit-tabs button.nav-link {
- background-color: #c18948;
- color: #fff;
+ background-color: #c18948;
+ color: #fff;
}
.banifit-tabs .tab-content li {
- padding-bottom: 15px;
+ padding-bottom: 15px;
}
.categories-card .cate-card h4 {
- margin-bottom: 18px;
- font-size: 18px;
- font-weight: 600;
+ margin-bottom: 18px;
+ font-size: 18px;
+ font-weight: 600;
}
.cate-card img {
- width: 130px;
+ width: 130px;
}
.cate-card .btn a {
- background-color:#c18948;
- color: #fff;
- padding: 11px 24px;
- border: 1px solid #c18948;
- border-radius: 7px;
- font-size: 16px;
+ background-color: #c18948;
+ color: #fff;
+ padding: 11px 24px;
+ border: 1px solid #c18948;
+ border-radius: 7px;
+ font-size: 16px;
}
.cate-card {
- background-color: #fff;
- text-align: center;
- padding: 44px 20px;
- border-radius: 18px;
- box-shadow: 1px 0px 9px 3px #00000026;
+ background-color: #fff;
+ text-align: center;
+ padding: 44px 20px;
+ border-radius: 18px;
+ box-shadow: 1px 0px 9px 3px #00000026;
}
.categories-card {
- border-radius: 10px;
- display: grid;
- grid-template-columns: repeat(3, 2fr);
- grid-gap: 40px;
+ border-radius: 10px;
+ display: grid;
+ grid-template-columns: repeat(3, 2fr);
+ grid-gap: 40px;
}
.categories-card.categories-two-card {
- background-color: #C18948;
- padding: 26px;
- border-radius: 10px;
- display: grid;
- grid-template-columns: repeat(2, 2fr);
- grid-gap: 24px;
- width: 68%;
- margin: auto;
+ background-color: #c18948;
+ padding: 26px;
+ border-radius: 10px;
+ display: grid;
+ grid-template-columns: repeat(2, 2fr);
+ grid-gap: 24px;
+ width: 68%;
+ margin: auto;
}
h2.cate-head {
- font-size: 30px;
- font-weight: 400;
- text-align: center;
- margin-bottom: 22px;
- margin-top: 35px;
+ font-size: 30px;
+ font-weight: 400;
+ text-align: center;
+ margin-bottom: 22px;
+ margin-top: 35px;
}
.categories h2 {
- text-align: center;
- font-size: 25px;
- margin-bottom: 14px;
- font-weight: 400;
+ text-align: center;
+ font-size: 25px;
+ margin-bottom: 14px;
+ font-weight: 400;
}
h3.bg-blue {
- background-color: #1B243D;
- color: #C18948;
- display: inline;
- padding: 6px 18px;
- font-size: 28px;
- font-weight: 400;
- border-radius: 5px;
+ background-color: #1b243d;
+ color: #c18948;
+ display: inline;
+ padding: 6px 18px;
+ font-size: 28px;
+ font-weight: 400;
+ border-radius: 5px;
}
.explore-cate div#nav-tab {
- border-bottom: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
+ border-bottom: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
}
.explore-cate .nav-tabs button {
- background-color: #E8C69F;
- width: 240px;
- border: 0;
- margin-bottom: 17px;
- padding: 8px;
- color: #000000;
- font-size: 18px;
- border-radius: 5px;
+ background-color: #e8c69f;
+ width: 240px;
+ border: 0;
+ margin-bottom: 17px;
+ padding: 8px;
+ color: #000000;
+ font-size: 18px;
+ border-radius: 5px;
}
.explore-cate div#nav-tabContent {
- background-color: #1B243D !important;
- color: #C18948;
- border: none !important;
- border-radius: 20px;
- padding: 32px 18px;
+ background-color: #1b243d !important;
+ color: #c18948;
+ border: none !important;
+ border-radius: 20px;
+ padding: 32px 18px;
}
.explore-cate .real-fund img {
- width: 40px;
- height: 40px;
- margin-right: 8px;
+ width: 40px;
+ height: 40px;
+ margin-right: 8px;
}
.real-fund p {
- margin-bottom: 0;
+ margin-bottom: 0;
}
.explore-cate .real-fund {
- display: flex;
- align-items: center;
- background-color: #333B52;
- margin-bottom: 12px;
- border-radius: 35px;
- padding: 10px;
+ display: flex;
+ align-items: center;
+ background-color: #333b52;
+ margin-bottom: 12px;
+ border-radius: 35px;
+ padding: 10px;
}
.explore-cate {
- padding: 4rem 0rem;
+ padding: 4rem 0rem;
}
.taxation h2 {
- font-size: 30px;
- font-weight: 400;
- margin-bottom: 15px;
+ font-size: 30px;
+ font-weight: 400;
+ margin-bottom: 15px;
}
.taxation tbody {
- background-color: #E8C69F;
- border: 5px solid #fff;
+ background-color: #e8c69f;
+ border: 5px solid #fff;
}
.taxation tbody tr td {
- border: 1px solid #0000005c;
- padding: 15px;
+ border: 1px solid #0000005c;
+ padding: 15px;
}
.taxation tbody tr th {
- border: 1px solid #0000005c;
- padding: 15px;
- font-weight: 600;
+ border: 1px solid #0000005c;
+ padding: 15px;
+ font-weight: 600;
}
-
.category-banner {
- background-image: url(../../media/FrontendImages/inner-banner-fund.png);
- background-size: cover;
- height: 390px;
- display: flex;
- align-items: center;
+ background-image: url(../../media/FrontendImages/inner-banner-fund.png);
+ background-size: cover;
+ height: 390px;
+ display: flex;
+ align-items: center;
}
.sebi-graph img {
- width: 80%;
+ width: 80%;
}
.your-investment .sebi-graph {
- background-color: #E8C69F;
- text-align: center;
- padding: 12px 20px;
- border-radius: 10px;
+ background-color: #e8c69f;
+ text-align: center;
+ padding: 12px 20px;
+ border-radius: 10px;
}
.sebi-graph h5 {
- font-size: 16px;
- text-align: justify;
- padding-top: 10px;
+ font-size: 16px;
+ text-align: justify;
+ padding-top: 10px;
}
p.disclaimer {
- font-style: italic;
+ font-style: italic;
}
.realstate-graph img {
- border: 1px solid;
- width: 65%;
- border-radius: 10px;
+ border: 1px solid;
+ width: 65%;
+ border-radius: 10px;
}
.realstate-graph {
- text-align: center;
+ text-align: center;
}
.realstate-graph p.disclaimer {
- font-size: 14px;
+ font-size: 14px;
}
.real-estate-table td {
- padding: 6px;
+ padding: 6px;
}
.real-estate-table span.team {
- background-color: #1B243D;
- width: 84%;
- display: flex;
- color: #FFBD59;
- padding: 8px 13px;
- font-size: 18px;
+ background-color: #1b243d;
+ width: 84%;
+ display: flex;
+ color: #ffbd59;
+ padding: 8px 13px;
+ font-size: 18px;
}
.real-estate-table th {
- padding: 6px;
- padding-bottom: 14px;
- font-size: 20px;
- font-weight: 500;
+ padding: 6px;
+ padding-bottom: 14px;
+ font-size: 20px;
+ font-weight: 500;
}
.real-estate-table {
- background-color: #E8C69F;
- padding: 15px;
- border-radius: 10px;
+ background-color: #e8c69f;
+ padding: 15px;
+ border-radius: 10px;
}
.investment h2 {
- font-size: 32px;
- font-weight: 500;
- margin-bottom: 18px;
- text-align: center;
+ font-size: 32px;
+ font-weight: 500;
+ margin-bottom: 18px;
+ text-align: center;
}
.investment {
- padding-top: 3rem;
+ padding-top: 3rem;
}
.invest-card .card-img img {
- width: 100%;
- border-radius: 18px;
- padding: 10px 10px 0px 10px;
- height: 160px;
- object-fit: cover;
+ width: 100%;
+ border-radius: 18px;
+ padding: 10px 10px 0px 10px;
+ height: 160px;
+ object-fit: cover;
}
.invest-card h4 {
- font-size: 24px;
- font-weight: 500;
- margin-bottom: 1px;
+ font-size: 24px;
+ font-weight: 500;
+ margin-bottom: 1px;
}
.invest-card p {
- font-size: 20px;
+ font-size: 20px;
}
.invest-card .disc img {
- width: 35px;
- height: 35px;
- margin-right: 18px;
+ width: 35px;
+ height: 35px;
+ margin-right: 18px;
}
.invest-card .disc {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
}
.invest-card .disc h5 {
- font-size: 16px;
- margin-bottom: 0px;
+ font-size: 16px;
+ margin-bottom: 0px;
}
.invest-card .disc p {
- margin-bottom: 0;
- font-size: 16px;
+ margin-bottom: 0;
+ font-size: 16px;
}
.investment .invest-card {
- background-color: #E8C69F;
- border-radius: 18px;
- margin: 0 10px;
+ background-color: #e8c69f;
+ border-radius: 18px;
+ margin: 0 10px;
}
.invest-card .disc p.per {
- background-color: #00BF63;
- text-align: center;
- display: inline;
- padding: 3px 30px;
- border-radius: 5px;
+ background-color: #00bf63;
+ text-align: center;
+ display: inline;
+ padding: 3px 30px;
+ border-radius: 5px;
}
.lifecircle img {
- width: 100%;
+ width: 100%;
}
.growth img {
- width: 68%;
+ width: 68%;
}
.your-investment .growth {
- padding: 4rem 0 2rem 0;
+ padding: 4rem 0 2rem 0;
}
.venturecapital img {
- width: 100%;
+ width: 100%;
}
.annual img {
- width: 100%;
+ width: 100%;
}
.your-investment .annual {
- background-color: #E8C69F;
- padding: 15px;
- border-radius: 10px;
+ background-color: #e8c69f;
+ padding: 15px;
+ border-radius: 10px;
}
.annual li {
- font-size: 14px;
+ font-size: 14px;
}
.your-investment .dist-fund img {
- width: 100%;
+ width: 100%;
}
.dist-fund p.disclaimer {
- font-weight: 600;
+ font-weight: 600;
}
p.fw-two {
- font-weight: 500;
+ font-weight: 500;
}
.banifit-tabs .tab-content ul strong {
- font-weight: 600;
+ font-weight: 600;
}
p.brown-text {
- color: #D19D60;
- font-size: 18px;
- font-weight: 500;
+ color: #d19d60;
+ font-size: 18px;
+ font-weight: 500;
}
.drivers .dri-label {
- display: flex;
- align-items: center;
+ display: flex;
+ align-items: center;
}
.drivers .dri-label h4 {
- font-size: 14px;
- color: #D19D60;
- margin-bottom: 0;
+ font-size: 14px;
+ color: #d19d60;
+ margin-bottom: 0;
}
.drivers .blue-boxx {
- background-color: #1B243D;
- width: 115px;
- min-width: 115px;
- display: flex;
- align-items: center;
- height: 82px;
- text-align: center;
- justify-content: center;
- border-radius: 6px;
+ background-color: #1b243d;
+ width: 115px;
+ min-width: 115px;
+ display: flex;
+ align-items: center;
+ height: 82px;
+ text-align: center;
+ justify-content: center;
+ border-radius: 6px;
}
.drivers .drive-label li {
- font-size: 12px;
+ font-size: 12px;
}
.drivers .drive-label ul {
- background-color: #d3d6e7;
- border-top-right-radius: 6px;
- border-bottom-right-radius: 6px;
- padding: 4px;
- height: 65px;
- display: flex;
- align-items: center;
+ background-color: #d3d6e7;
+ border-top-right-radius: 6px;
+ border-bottom-right-radius: 6px;
+ padding: 4px;
+ height: 65px;
+ display: flex;
+ align-items: center;
}
.drivers p.brown-text {
- margin-bottom: 4px;
+ margin-bottom: 4px;
}
.amount-tabs {
- background-color: #E8C69F;
- padding: 15px;
- border-radius: 10px;
+ background-color: #e8c69f;
+ padding: 15px;
+ border-radius: 10px;
}
.amount-table img {
- width: 570px;
+ width: 570px;
}
-
.menubar .dropdown-menu {
- width: 100vw;
- left: 0;
- /* / display: none;/ / visibility: hidden;/ padding: 0; */
- margin: 0;
- z-index: 9999;
- border: none;
- border-radius: 0;
- background-color: #c18948f7;
- box-shadow: none;
- padding: 58px 0 38px 0;
- top: 24px !important;
+ width: 100vw;
+ left: -1px !important;
+ /* / display: none;/ / visibility: hidden;/ padding: 0; */
+ margin: 0;
+ z-index: 9999;
+ border: none;
+ border-radius: 0;
+ background-color: #c18948f7;
+ box-shadow: none;
+ padding: 58px 0 38px 0;
+ top: 24px !important;
}
/* .menubar .dropdown:hover .dropdown-menu {
@@ -1529,696 +1523,694 @@ p.brown-text {
} */
.menubar .dropdown-menu .dropdown-item {
- width: 100%;
- padding: 10px;
- color: #333;
+ width: 100%;
+ padding: 10px;
+ color: #333;
}
.menubar .dropdown button.btns {
- color: #C18948;
- font-size: 20px;
- font-family: cambria;
- background-color: transparent;
- border: none;
- box-shadow: none;
+ color: #c18948;
+ font-size: 20px;
+ font-family: cambria;
+ background-color: transparent;
+ border: none;
+ box-shadow: none;
}
.menubar .dropdown button.btns:active {
- border: none;
+ border: none;
}
.menubar button.btns.show {
- border: none;
+ border: none;
}
.dropdown .product h3 {
- font-size: 20px;
- font-family: 'Cambria';
- font-weight: 600;
- margin-bottom: 18px;
+ font-size: 20px;
+ font-family: "Cambria";
+ font-weight: 600;
+ margin-bottom: 18px;
}
.dropdown .drop-page {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
}
.product .drop-page h4 {
- font-size: 19px;
- font-family: 'Cambria';
- font-weight: 600;
- margin-bottom: 2px;
- color: #000;
+ font-size: 19px;
+ font-family: "Cambria";
+ font-weight: 600;
+ margin-bottom: 2px;
+ color: #000;
}
.product .drop-page p {
- font-family: 'Cambria';
- font-size: 17px;
- margin-bottom: 0;
- line-height: 20px;
- color: #000;
+ font-family: "Cambria";
+ font-size: 17px;
+ margin-bottom: 0;
+ line-height: 20px;
+ color: #000;
}
.header-menu .product .drop-page img {
- width: 48px;
+ width: 48px;
}
.product .drop-page .drop-img {
- margin-right: 18px;
+ margin-right: 18px;
}
.amount-tab table td {
- border: 1px solid #0009;
- padding: 10px;
+ border: 1px solid #0009;
+ padding: 10px;
}
.amount-tab table th {
- border: 1px solid #0009;
- padding: 10px;
- background-color: #333b52;
- color: #fff;
- font-weight: 400;
+ border: 1px solid #0009;
+ padding: 10px;
+ background-color: #333b52;
+ color: #fff;
+ font-weight: 400;
}
.header-menu .topbar {
- display: flex;
- background: #C18948;
- height: 40px;
- align-items: center;
- line-height: 2;
+ display: flex;
+ background: #c18948;
+ height: 40px;
+ align-items: center;
+ line-height: 2;
}
.tobr {
- display: flex;
- justify-content: space-between;
- align-items: center;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
}
.topbar .tobr a {
- color: #fff;
- text-decoration: none;
- font-size: 17px;
+ color: #fff;
+ text-decoration: none;
+ font-size: 17px;
}
.tobr img {
- height: 20px;
- width: 20px;
- filter: brightness(0.1) invert(1);
+ height: 20px;
+ width: 20px;
+ filter: brightness(0.1) invert(1);
}
.ctn-btn img {
- filter: brightness(0.5) invert(1);
- height: 19px;
+ filter: brightness(0.5) invert(1);
+ height: 19px;
}
.social_icon {
- display: flex;
- align-items: center;
+ display: flex;
+ align-items: center;
}
.ctn-btn a.nav-link {
- padding: 1px 11px;
- margin: 0;
+ padding: 1px 11px;
+ margin: 0;
}
.ctn-btn li.nav-item {
- list-style: none;
+ list-style: none;
}
.nav-link img {
- width: 20px;
+ width: 20px;
}
.social-head a {
- margin: 0px 10px;
+ margin: 0px 10px;
}
.social-head a:nth-child(2) img {
- width: 35px;
- height: 35px;
+ width: 35px;
+ height: 35px;
}
.dropdown a.btn.dropdown-toggle:active {
- border: none;
- outline: none;
+ border: none;
+ outline: none;
}
.ctn-btn .dropdown-toggle img {
- filter: brightness(1) invert(0);
- height: 30px;
- border: 1px solid #fff;
- border-radius: 50px;
- width: 30px;
+ filter: brightness(1) invert(0);
+ height: 30px;
+ border: 1px solid #fff;
+ border-radius: 50px;
+ width: 30px;
}
.topbar a.btn.dropdown-toggle {
- display: flex;
- align-items: center;
- border: none;
+ display: flex;
+ align-items: center;
+ border: none;
}
.admin-profile .dropdown img {
- filter: brightness(1) invert(0);
- height: 34px;
- border:1px solid #1b243d;
- border-radius: 50px;
- width: 34px;
+ filter: brightness(1) invert(0);
+ height: 34px;
+ border: 1px solid #1b243d;
+ border-radius: 50px;
+ width: 34px;
}
.topbar .tobr a.cont {
- margin: 0px 14px;
+ margin: 0px 14px;
}
.topbar .tobr .profile-hd a {
- color: #000;
+ color: #000;
}
.tobr .dropdown-toggle::after {
- color: #fff;
+ color: #fff;
}
.security-form h2 {
- text-align: center;
- font-weight: bolder;
- margin-bottom: 26px;
+ text-align: center;
+ font-weight: bolder;
+ margin-bottom: 26px;
}
.security-text {
- margin-bottom: 22px;
+ margin-bottom: 22px;
}
.security-text p {
- color: #6A6A6A;
+ color: #6a6a6a;
}
.security-form label {
- font-size: 16px;
- color: #000;
- margin-bottom: 6px;
+ font-size: 16px;
+ color: #000;
+ margin-bottom: 6px;
}
.security-form .pwd-input {
- padding: 10px;
- width: 100%;
- border: 1px solid #D5D5D5;
- background-color: #fff;
- margin-bottom: 35px;
+ padding: 10px;
+ width: 100%;
+ border: 1px solid #d5d5d5;
+ background-color: #fff;
+ margin-bottom: 35px;
}
.security-pages {
- background-color:#EFEAE5;
+ background-color: #efeae5;
}
.security-form button.u-pwd {
- background: #1B243D;
- color: #fff;
- font-size: 18px;
- height: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- border: none;
- cursor: pointer;
- width: 100%;
- font-weight: 500;
+ background: #1b243d;
+ color: #fff;
+ font-size: 18px;
+ height: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: none;
+ cursor: pointer;
+ width: 100%;
+ font-weight: 500;
}
.portfolio .investor-image {
- width: 46%;
- margin: 0 auto;
+ width: 46%;
+ margin: 0 auto;
}
.security-form h4 {
- margin-bottom: 4px;
+ margin-bottom: 4px;
}
.security-form {
- width: 490px;
- box-shadow: 0px 1px 5px #00000024;
- padding: 20px 20px 40px 20px;
- margin-top: 3rem;
- margin-bottom: 3rem;
- background-color: #fff;
+ width: 490px;
+ box-shadow: 0px 1px 5px #00000024;
+ padding: 20px 20px 40px 20px;
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+ background-color: #fff;
}
-
.notification-drop .item-noti {
- padding: 2px;
- font-size: 18px;
- position: relative;
+ padding: 2px;
+ font-size: 18px;
+ position: relative;
}
.notification-drop .item-noti .notification {
- position: absolute;
- top: 100%;
- left: -190px;
- right: 0;
- z-index: 1;
- width: 420px;
- background-color: #F8F8F8;
- border: 1px solid #D5D5D5;
- border-radius: 0.25rem;
- box-shadow: 1px 1px 6px 0px #9f9696;
- display: none;
+ position: absolute;
+ top: 100%;
+ left: -190px;
+ right: 0;
+ z-index: 1;
+ width: 420px;
+ background-color: #f8f8f8;
+ border: 1px solid #d5d5d5;
+ border-radius: 0.25rem;
+ box-shadow: 1px 1px 6px 0px #9f9696;
+ display: none;
}
li.item.list-item:nth-child(odd) {
- background-color: #fff;
- /* border-top: 1px solid #DEDEDE; */
- border-bottom: 1px solid #DEDEDE;
+ background-color: #fff;
+ /* border-top: 1px solid #DEDEDE; */
+ border-bottom: 1px solid #dedede;
}
li.item.list-item:nth-child(even) {
- background-color: #F8F8F8;
- /* border-top: 1px solid #DEDEDE; */
- border-bottom: 1px solid #DEDEDE;
+ background-color: #f8f8f8;
+ /* border-top: 1px solid #DEDEDE; */
+ border-bottom: 1px solid #dedede;
}
.admin-profile .notification ul {
- list-style: none;
- padding-left: 0;
+ list-style: none;
+ padding-left: 0;
}
.admin-profile .notification-drop li.item {
- padding: 14px;
- font-size: 16px;
- line-height: 28px;
+ padding: 14px;
+ font-size: 16px;
+ line-height: 28px;
}
.notification-drop .notify-header h5 {
- text-align: center;
- padding-top: 30px;
- padding-bottom: 16px;
+ text-align: center;
+ padding-top: 30px;
+ padding-bottom: 16px;
}
.admin-profile .notification-drop a {
- font-weight: 500;
- font-size: 18px;
+ font-weight: 500;
+ font-size: 18px;
}
.notification-drop .item-noti span.circle {
- background-color: #da0808;
- padding: 4px;
- border-radius: 50px;
- font-size: 8px;
- font-family: monospace;
- position: relative;
- bottom: 8px;
- right: 3px;
- font-weight: 800;
- color: #fff;
+ background-color: #da0808;
+ padding: 4px;
+ border-radius: 50px;
+ font-size: 8px;
+ font-family: monospace;
+ position: relative;
+ bottom: 8px;
+ right: 3px;
+ font-weight: 800;
+ color: #fff;
}
.chat-sec .receive {
- margin-top: 30px;
- max-width: 410px;
- width: 410px;
- background-color: #143C6D;
- color: #fff;
- padding: 12px 20px;
- border-top-left-radius: 10px;
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
+ margin-top: 30px;
+ max-width: 410px;
+ width: 410px;
+ background-color: #143c6d;
+ color: #fff;
+ padding: 12px 20px;
+ border-top-left-radius: 10px;
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
}
.chat-sec .sent-chat {
- margin-left: 20px;
- background-color: #F5F7FB;
- padding: 12px;
- border-top-right-radius: 10px;
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- width: 300px;
+ margin-left: 20px;
+ background-color: #f5f7fb;
+ padding: 12px;
+ border-top-right-radius: 10px;
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
+ width: 300px;
}
.chat-sec .sent {
- display: flex;
- justify-content: left;
- align-items: center;
- margin-top: 40px;
+ display: flex;
+ justify-content: left;
+ align-items: center;
+ margin-top: 40px;
}
.chat-sec .send-msg {
- padding: 20px 20px 30px 25px;
- position: relative;
+ padding: 20px 20px 30px 25px;
+ position: relative;
}
.send-msg i#down_btn {
- background-color: #c18948;
- border-radius: 50px;
- width: 36px;
- height: 36px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 18px;
- color: #fff;
- position: absolute;
- right: 23px;
- top: -55px;
- padding-top: 2px;
+ background-color: #c18948;
+ border-radius: 50px;
+ width: 36px;
+ height: 36px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 18px;
+ color: #fff;
+ position: absolute;
+ right: 23px;
+ top: -55px;
+ padding-top: 2px;
}
.receive p {
- margin-bottom: 0px;
- font-size: 14px;
+ margin-bottom: 0px;
+ font-size: 14px;
}
.chat-content {
- background-color: #fff;
- border-radius: 5px;
- width: 75%;
- margin: auto;
- box-shadow: 0px 0px 7px #0000004d;
+ background-color: #fff;
+ border-radius: 5px;
+ width: 75%;
+ margin: auto;
+ box-shadow: 0px 0px 7px #0000004d;
}
.chat-sec {
- background-color:#EFEAE5;
- padding: 4rem 0;
+ background-color: #efeae5;
+ padding: 4rem 0;
}
.chat-sec .chat-box h2 {
- font-size: 34px;
- text-align: center;
- margin-bottom: 26px;
+ font-size: 34px;
+ text-align: center;
+ margin-bottom: 26px;
}
.user-chat::-webkit-scrollbar-thumb {
- background: #dedcd6;
- border-radius: 5px;
+ background: #dedcd6;
+ border-radius: 5px;
}
.user-chat::-webkit-scrollbar-track {
- border-radius: 5px;
+ border-radius: 5px;
}
.user-chat::-webkit-scrollbar {
- width: 4px;
- height: 50px;
+ width: 4px;
+ height: 50px;
}
.chat-content .send-right {
- display: flex;
- justify-content: flex-end;
+ display: flex;
+ justify-content: flex-end;
}
.chat-sec .sent-chat p {
- margin-bottom: 0;
- font-size: 14px;
+ margin-bottom: 0;
+ font-size: 14px;
}
.sent-chat .sent-time {
- display: flex;
- justify-content: end;
+ display: flex;
+ justify-content: end;
}
.sent .sent-time span {
- font-size: 10px;
+ font-size: 10px;
}
.send-msg button#chat-send {
- color: #fff;
- border: none;
- background-color: #c18948;
- padding: 10px 30px;
- border-radius: 3px;
- font-size: 16px;
- margin-left: 10px;
- margin-right: 10px;
- cursor: pointer;
+ color: #fff;
+ border: none;
+ background-color: #c18948;
+ padding: 10px 30px;
+ border-radius: 3px;
+ font-size: 16px;
+ margin-left: 10px;
+ margin-right: 10px;
+ cursor: pointer;
}
.send-msg button.dropdown-toggle {
- color: #000;
- border: none;
- background-color: #D9D9D9;
- padding: 10px 30px;
- border-radius: 3px;
- font-size: 16px;
- margin-left: 10px;
+ color: #000;
+ border: none;
+ background-color: #d9d9d9;
+ padding: 10px 30px;
+ border-radius: 3px;
+ font-size: 16px;
+ margin-left: 10px;
}
.sentchat-icon .contact-details img {
- width: 40px;
- height: 40px;
- border-radius: 50px;
-}
+ width: 40px;
+ height: 40px;
+ border-radius: 50px;
+}
.sentchat-icon .contact-details img {
- width: 40px;
- height: 40px;
- border-radius: 50px;
+ width: 40px;
+ height: 40px;
+ border-radius: 50px;
}
.primary-investment button.active img {
- width: 22px;
+ width: 22px;
}
.accordion-header button.accordion-button {
- padding-bottom: 18px;
+ padding-bottom: 18px;
}
.logout-modal p.log-ctn {
- font-size: 18px;
- text-align: center;
+ font-size: 18px;
+ text-align: center;
}
.logout-modal .log-btn {
- display: flex;
- justify-content: center;
- align-items: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
.logout-modal .modal-body a {
- border-radius: 5px;
- padding: 5px 40px;
- height: 43px;
- font-weight: 400;
- border: 1px solid #C18948;
- align-items: center;
- display: flex;
- color: #000;
- font-size: 18px;
+ border-radius: 5px;
+ padding: 5px 40px;
+ height: 43px;
+ font-weight: 400;
+ border: 1px solid #c18948;
+ align-items: center;
+ display: flex;
+ color: #000;
+ font-size: 18px;
}
.logout-modal .modal-body h2 {
- font-size: 36px;
- text-align: center;
- margin-bottom: 17px;
+ font-size: 36px;
+ text-align: center;
+ margin-bottom: 17px;
}
.dropdown a:active {
- background-color: inherit !important;
+ background-color: inherit !important;
}
-.menubar .dropdown .border-left:before {
- content: '';
- position: absolute;
- top: -9px;
- left: -6px;
- border: 3px solid;
- width: 10px;
- height: 10px;
- border-radius: 20px;
+.menubar .dropdown .border-left:before {
+ content: "";
+ position: absolute;
+ top: -9px;
+ left: -6px;
+ border: 3px solid;
+ width: 10px;
+ height: 10px;
+ border-radius: 20px;
}
-.menubar .dropdown .border-left:after {
- content: '';
- position: absolute;
- bottom: -9px;
- left: -6px;
- border: 3px solid;
- width: 10px;
- height: 10px;
- border-radius: 20px;
+.menubar .dropdown .border-left:after {
+ content: "";
+ position: absolute;
+ bottom: -9px;
+ left: -6px;
+ border: 3px solid;
+ width: 10px;
+ height: 10px;
+ border-radius: 20px;
}
-.menubar .left-prdt .product{
- padding-left: 30px;
+.menubar .left-prdt .product {
+ padding-left: 30px;
}
.border-left {
- border: 1px solid #000;
- position: relative;
+ border: 1px solid #000;
+ position: relative;
}
.product-banner {
- background: linear-gradient(59deg,#ffffff, #c18948);
- height: 300px;
- display: flex;
- align-items: center;
- justify-content: center;
+ background: linear-gradient(59deg, #ffffff, #c18948);
+ height: 300px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.product-banner p {
- font-size: 22px;
+ font-size: 22px;
}
.product-banner .yellow-btn {
- background: #C18948;
- color: #000;
- font-weight: 500;
- font-size: 18px;
- height: 46px;
- display: flex;
- align-items: center;
- justify-content: center;
- width: max-content;
- padding: 7px 34px;
- border-radius: 6px;
- border: 1px solid;
- margin-top: 28px;
- cursor: pointer;
+ background: #c18948;
+ color: #000;
+ font-weight: 500;
+ font-size: 18px;
+ height: 46px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: max-content;
+ padding: 7px 34px;
+ border-radius: 6px;
+ border: 1px solid;
+ margin-top: 28px;
+ cursor: pointer;
}
.inner-disc .crds img {
- border-radius: 50%;
- width: 40px;
- height: 40px;
- border: 1px solid #143c6d;
- padding: 4px;
- object-fit: contain;
+ border-radius: 50%;
+ width: 40px;
+ height: 40px;
+ border: 1px solid #143c6d;
+ padding: 4px;
+ object-fit: contain;
}
.inner-disc .crds-inner h2 {
- font-size: 19px;
- font-weight: bold;
+ font-size: 19px;
+ font-weight: bold;
}
.inner-disc .crds {
- display: flex;
- align-items: center;
- margin-bottom: 26px;
+ display: flex;
+ align-items: center;
+ margin-bottom: 26px;
}
.inner-disc .overlay-box {
- background: #fff;
- box-shadow: 0px 12px 20px #00000029;
- padding: 28px 19px;
- border-radius: 10px;
+ background: #fff;
+ box-shadow: 0px 12px 20px #00000029;
+ padding: 28px 19px;
+ border-radius: 10px;
}
.inner-disc {
- padding: 3rem 0;
+ padding: 3rem 0;
}
.inner-disc .crds-inner {
- margin-left: 18px;
+ margin-left: 18px;
}
.inner-text-content {
- background-color: #FFF3E4;
+ background-color: #fff3e4;
}
.table-invest .details p {
- font-size: 17px;
- margin-bottom: 0px;
- color: #585858;
+ font-size: 18px;
+ margin-bottom: 0px;
+ color: #585858cc;
}
.table-invest .details span {
- font-size: 20px;
+ font-size: 16px;
}
.table-invest .details h4 {
- margin-bottom: 0;
- font-size: 18px;
+ margin-bottom: 0;
+ font-size: 16px;
}
.categeory .btm-txt {
- margin-top: 15px;
+ margin-top: 15px;
}
.table-invest .categeory .details {
- box-shadow: 0px 12px 20px #00000029;
- padding: 22px;
- border-radius: 10px;
- background-color: #fff;
+ box-shadow: 0px 12px 20px #00000029;
+ padding: 22px;
+ border-radius: 10px;
+ background-color: #fff;
}
.table-invest .categeory {
- padding-bottom: 38px;
+ padding-bottom: 38px;
}
.venture-capital {
- padding: 2rem 0 5rem 0;
- background-color: #EFEAE5;
+ padding: 2rem 0 5rem 0;
+ background-color: #efeae5;
}
.venture-capital .employee-image {
- background-color: #fff;
- height: 480px;
- transition: 0.5s;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
+ background-color: #fff;
+ height: 480px;
+ transition: 0.5s;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
}
.employee-image img {
- height: auto;
- width: 170px;
+ height: auto;
+ width: 170px;
}
.venture-capital h2 {
- font-size: 35px;
- margin-bottom: 40px;
+ font-size: 35px;
+ margin-bottom: 40px;
}
.venture-capital h2:after {
- position: absolute;
- content: '';
- border-bottom: 2px solid #143C6D;
- width: 18%;
- bottom: -10px;
- left: 0;
- right: 0;
+ position: absolute;
+ content: "";
+ border-bottom: 2px solid #143c6d;
+ width: 18%;
+ bottom: -10px;
+ left: 0;
+ right: 0;
}
.invest-modal-pop .invest-modal img {
- width: 140px;
+ width: 140px;
}
.invest-modal-pop .invest-modal h2 {
- font-size: 28px;
- font-weight: 600;
- margin-top: 24px;
- margin-bottom: 24px;
+ font-size: 28px;
+ font-weight: 600;
+ margin-top: 24px;
+ margin-bottom: 24px;
}
.invest-modal-pop .invest-modal p {
- margin-bottom: 42px;
+ margin-bottom: 42px;
}
.invest-modal-pop .invest-modal a {
- background-color:#C18948;
- padding: 11px 30px;
- color: #fff;
- border-radius: 7px;
+ background-color: #c18948;
+ padding: 11px 30px;
+ color: #fff;
+ border-radius: 7px;
}
.invest-modal-pop .invest-modal {
- text-align: center;
+ text-align: center;
}
.categories-card .btn {
- border: none;
- padding: 0;
- margin-top: 20px;
+ border: none;
+ padding: 0;
+ margin-top: 20px;
}
.buy-assets a {
- background-color: #c18948;
- color: #fff;
- width: 150px;
- display: flex;
- height: 42px;
- align-items: center;
- justify-content: center;
- border-radius: 8px;
- font-size: 20px;
+ background-color: #c18948;
+ color: #fff;
+ width: 150px;
+ display: flex;
+ height: 42px;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8px;
+ font-size: 20px;
}
.sell-assets a {
- background-color: #1b243d;
- color: #fff;
- width: 150px;
- display: flex;
- height: 42px;
- align-items: center;
- justify-content: center;
- border-radius: 8px;
- font-size: 20px;
+ background-color: #1b243d;
+ color: #fff;
+ width: 150px;
+ display: flex;
+ height: 42px;
+ align-items: center;
+ justify-content: center;
+ border-radius: 8px;
+ font-size: 20px;
}
-.assets-btn{
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 12px;
+.assets-btn {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 12px;
}
.inner-assets-btn {
- display: flex;
- gap: 10px;
+ display: flex;
+ gap: 10px;
}
.home-banner-btn .buy-assets {
- margin-bottom: 10px;
+ margin-bottom: 10px;
}
/* css added by abhishek */
.login {
- /* background-image: url('../login-img/login-bg-banner.png'); */
- background-color: #fff3e4;
- padding: 50px 0;
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
-
+ /* background-image: url('../login-img/login-bg-banner.png'); */
+ background-color: #fff3e4;
+ padding: 50px 0;
+ background-size: cover;
+ background-position: center;
+ background-repeat: no-repeat;
}
.login-form,
.login-form-otp {
- box-shadow: 1px 1px 20px #C4C4C429;
- border-radius: 10px;
- background: #1B243D;
- padding: 30px;
- margin: 0 30px;
+ box-shadow: 1px 1px 20px #c4c4c429;
+ border-radius: 10px;
+ background: #1b243d;
+ padding: 30px;
+ margin: 0 30px;
}
/*.custom-height-form {*/
@@ -2227,429 +2219,427 @@ li.item.list-item:nth-child(even) {
.login-form h1,
.login-form-otp h1 {
- margin-bottom: 15px;
- font-size: 22px;
- font-weight: bold;
- text-align: center;
- font-family: system-ui, 'Open sans';
- color: #fff;
+ margin-bottom: 15px;
+ font-size: 22px;
+ font-weight: bold;
+ text-align: center;
+ font-family: system-ui, "Open sans";
+ color: #fff;
}
.login-form h2,
.login-form-otp h2 {
- color: #fff;
- font-size: 18px;
- text-align: center;
- margin-bottom: 25px;
+ color: #fff;
+ font-size: 18px;
+ text-align: center;
+ margin-bottom: 25px;
}
.login ul#myTabs {
- display: flex;
- justify-content: space-around;
- align-items: center;
- /* border-bottom: 1px solid #e3dfdf; */
- margin: 0 10px 20px;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ /* border-bottom: 1px solid #e3dfdf; */
+ margin: 0 10px 20px;
}
.nav {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- padding-left: 0;
- margin-bottom: 0;
- list-style: none;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none;
}
.login .nav-pills li a.active {
- color: #C18948;
+ color: #c18948;
}
.login li a.active {
- border-bottom: 2px solid #c18948;
+ border-bottom: 2px solid #c18948;
}
.login .nav-pills a {
- color: #e8c69f;
- font-size: 18px;
- border-bottom: 2px solid transparent;
+ color: #e8c69f;
+ font-size: 18px;
+ border-bottom: 2px solid transparent;
}
.login li a {
- justify-content: center;
- display: flex;
- width: 200px;
- text-align: center;
- padding-bottom: 5px;
- background-color: transparent;
+ justify-content: center;
+ display: flex;
+ width: 200px;
+ text-align: center;
+ padding-bottom: 5px;
+ background-color: transparent;
}
.login li a {
- justify-content: center;
- display: flex;
- width: 200px;
- text-align: center;
- padding-bottom: 5px;
+ justify-content: center;
+ display: flex;
+ width: 200px;
+ text-align: center;
+ padding-bottom: 5px;
}
-
-
-.tab-content>.tab-pane {
- display: none;
+.tab-content > .tab-pane {
+ display: none;
}
.login .fade {
- opacity: 0;
- transition: opacity .15s linear;
+ opacity: 0;
+ transition: opacity 0.15s linear;
}
.login-form .form-group {
- margin-bottom: 5px;
+ margin-bottom: 5px;
}
.login-form label,
.login-form-otp label {
- font-size: 15px;
- color: #e8c69f;
- margin-bottom: 10px;
+ font-size: 15px;
+ color: #e8c69f;
+ margin-bottom: 10px;
}
.login-form input.form-control {
- border: 1px solid #333B52 !important;
- border-radius: 10px;
- height: 40px;
- background: #333B52;
- color: #fff !important;
+ border: 1px solid #333b52 !important;
+ border-radius: 10px;
+ height: 40px;
+ background: #333b52;
+ color: #fff !important;
}
.login-form a.password {
- font-size: 14px;
- color: #e8c69f;
- display: flex;
- width: fit-content;
- margin-right: 0;
- margin-left: auto;
- text-decoration: none;
+ font-size: 14px;
+ color: #e8c69f;
+ display: flex;
+ width: fit-content;
+ margin-right: 0;
+ margin-left: auto;
+ text-decoration: none;
}
.login-form .g-recaptcha {
- margin-bottom: 20px;
- position: relative;
- display: flex;
- -ms-transform: scale(0.9) !important;
- transform: scale(0.9) !important;
- -webkit-transform: scale(0.9) !important;
- left: -22px;
+ margin-bottom: 20px;
+ position: relative;
+ display: flex;
+ -ms-transform: scale(0.9) !important;
+ transform: scale(0.9) !important;
+ -webkit-transform: scale(0.9) !important;
+ left: -22px;
}
.login-form .signin,
.login-form-otp .signin {
- margin-bottom: 20px;
- width: 100%;
- height: 40px;
- font-size: 15px;
- color: #fff;
- border: none;
+ margin-bottom: 20px;
+ width: 100%;
+ height: 40px;
+ font-size: 15px;
+ color: #fff;
+ border: none;
}
.yellow-btn {
- background: #C18948;
- color: #000;
- /*font-weight: bold;*/
- font-size: 18px;
- height: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
- width: max-content;
- padding: 10px 30px;
- text-decoration: none;
- position: relative;
- transition: all 1s ease 0s;
- /* font-family: 'Poppins'; */
+ background: #c18948;
+ color: #000;
+ /*font-weight: bold;*/
+ font-size: 18px;
+ height: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ width: max-content;
+ padding: 10px 30px;
+ text-decoration: none;
+ position: relative;
+ transition: all 1s ease 0s;
+ /* font-family: 'Poppins'; */
}
.login-form a.regist {
- text-align: center !important;
- color: #fff;
- font-size: 13px;
- display: block;
- text-decoration: none;
+ text-align: center !important;
+ color: #fff;
+ font-size: 13px;
+ display: block;
+ text-decoration: none;
}
.login-form a.regist span {
- color: #c18948;
+ color: #c18948;
}
-.tab-content>.active {
- display: block;
- opacity: 1 !important;
+.tab-content > .active {
+ display: block;
+ opacity: 1 !important;
}
.login-form-otp h3 {
- font-size: 18px;
- /* font-weight: bold; */
- margin-bottom: 20px;
- color: #c18948;
+ font-size: 18px;
+ /* font-weight: bold; */
+ margin-bottom: 20px;
+ color: #c18948;
}
.login-form-otp .otp-field input[type="text"] {
- height: 54px;
- text-align: center;
- width: 95px;
- margin: 0 auto 20px;
- border: 0;
- border-bottom: 1px solid #fff;
- font-size: 20px;
- padding: 10px;
- font-weight: bold;
- transition: all 0.1s;
- background-color: transparent;
- outline: none;
- color: #fff;
+ height: 54px;
+ text-align: center;
+ width: 95px;
+ margin: 0 auto 20px;
+ border: 0;
+ border-bottom: 1px solid #fff;
+ font-size: 20px;
+ padding: 10px;
+ font-weight: bold;
+ transition: all 0.1s;
+ background-color: transparent;
+ outline: none;
+ color: #fff;
}
.login-form-otp p {
- margin-bottom: 30px;
- font-size: 13px;
- color: #e8c69f;
+ margin-bottom: 30px;
+ font-size: 13px;
+ color: #e8c69f;
}
.login-form-otp a.regist {
- text-align: left;
- margin-bottom: 30px;
- color: #000;
- font-size: 13px;
- display: block;
- text-decoration: none;
+ text-align: left;
+ margin-bottom: 30px;
+ color: #000;
+ font-size: 13px;
+ display: block;
+ text-decoration: none;
}
.login-form-otp a.regist span {
- color: #143C6D;
+ color: #143c6d;
}
.banner {
- padding: 50px 0;
- background:#FFF3E4;
- display: flex;
- align-items: center;
- justify-content: center;
+ padding: 50px 0;
+ background: #fff3e4;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.contact img {
- width: 35%;
- margin: 0 auto;
- display: flex;
- height: 100%;
+ width: 35%;
+ margin: 0 auto;
+ display: flex;
+ height: 100%;
}
.privacy-content {
- padding: 25px 0;
- background-color: #EFEAE5;
+ padding: 25px 0;
+ background-color: #efeae5;
}
.privacy-content h1 {
- text-align: center;
- font-size: 35px;
- font-weight: 700;
- margin-bottom: 30px;
+ text-align: center;
+ font-size: 35px;
+ font-weight: 700;
+ margin-bottom: 30px;
}
.privacy-content h2 {
- font-size: 21px;
- font-weight: 500;
- margin: 30px 0 20px;
- font-weight: bold;
+ font-size: 21px;
+ font-weight: 500;
+ margin: 30px 0 20px;
+ font-weight: bold;
}
.privacy-content p {
- font-weight: 400;
- line-height: 1.5;
- color: #212529;
- text-align: left;
- font-size: 16px;
- font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: left;
+ font-size: 16px;
+ font-style: normal;
}
.privacy-content ul {
- font-size: 1rem;
- font-weight: 400;
- line-height: 1.5;
- color: #212529;
- text-align: left;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: left;
}
.contact-sec .row {
- display: flex;
- justify-content: center;
- align-items: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
.contact-sec h2 {
- text-align: center;
- font-size: 35px;
- font-family: system-ui, 'Open sans';
- font-weight: bold;
- margin-bottom: 40px;
+ text-align: center;
+ font-size: 35px;
+ font-family: system-ui, "Open sans";
+ font-weight: bold;
+ margin-bottom: 40px;
}
.crd23 {
- padding: 30px 20px;
- box-shadow: 0px 12px 20px #00000029;
- border-radius: 20px;
- background: #fff;
+ padding: 30px 20px;
+ box-shadow: 0px 12px 20px #00000029;
+ border-radius: 20px;
+ background: #fff;
}
.cdr-img {
- padding: 10px;
- background: #c18948;
- border-radius: 50%;
- width: 70px;
- height: 70px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 auto 20px;
+ padding: 10px;
+ background: #c18948;
+ border-radius: 50%;
+ width: 70px;
+ height: 70px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 20px;
}
.crd23 h2 {
- font-size: 18px;
- font-weight: normal;
- margin: 0;
+ font-size: 18px;
+ font-weight: normal;
+ margin: 0;
}
.crd23 hr {
- background: #143C6D;
+ background: #143c6d;
}
.cdr-img img {
- height: 35px;
- width: 40px;
+ height: 35px;
+ width: 40px;
}
.blue-box {
- box-shadow: 0px 12px 20px #00000029;
- border-radius: 20px;
- margin-top: 50px;
- background: #1b243d;
- padding: 35px 35px;
- color: #fff;
+ box-shadow: 0px 12px 20px #00000029;
+ border-radius: 20px;
+ margin-top: 50px;
+ background: #1b243d;
+ padding: 35px 35px;
+ color: #fff;
}
.blue-box .right h3 {
- font-size: 33px;
- margin-bottom: 30px;
+ font-size: 33px;
+ margin-bottom: 30px;
}
.blue-box .right h4 {
- font-size: 20px;
- margin-bottom: 25px;
- font-weight: normal;
+ font-size: 20px;
+ margin-bottom: 25px;
+ font-weight: normal;
}
.blue-box .right p {
- font-size: 15px;
+ font-size: 15px;
}
.blue-box .form-tab {
- background: #EFEAE5;
- padding: 20px;
- border-radius: 12px;
+ background: #efeae5;
+ padding: 20px;
+ border-radius: 12px;
}
.blue-box form label {
- font-size: 15px;
- color: #000;
- margin-bottom: 10px;
+ font-size: 15px;
+ color: #000;
+ margin-bottom: 10px;
}
.blue-box form .form-control {
- margin-bottom: 1rem;
+ margin-bottom: 1rem;
}
.blue-box .left input.form-control {
- border: 0;
- background: transparent;
- border-bottom: 1px solid #c3c1c1;
- border-radius: 0;
- padding: 2px 10px;
+ border: 0;
+ background: transparent;
+ border-bottom: 1px solid #c3c1c1;
+ border-radius: 0;
+ padding: 2px 10px;
}
.blue-box .left textArea.form-control {
- border: 0;
- background: transparent;
- border-bottom: 1px solid #c3c1c1;
- border-radius: 0;
- padding: 2px 10px;
+ border: 0;
+ background: transparent;
+ border-bottom: 1px solid #c3c1c1;
+ border-radius: 0;
+ padding: 2px 10px;
}
.blue-box .left a.yellow-btn {
- width: 140px !important;
- height: 35px !important;
- margin: 0 auto;
- font-size: 16px !important;
- background: #FFB600;
- color: #000;
- /* font-weight: bold; */
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
- padding: 10px 30px;
- text-decoration: none;
- position: relative;
- transition: all 1s ease 0s;
+ width: 140px !important;
+ height: 35px !important;
+ margin: 0 auto;
+ font-size: 16px !important;
+ background: #ffb600;
+ color: #000;
+ /* font-weight: bold; */
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ padding: 10px 30px;
+ text-decoration: none;
+ position: relative;
+ transition: all 1s ease 0s;
}
.contact-sec {
- padding: 50px 0;
- background: #EFEAE5;
+ padding: 50px 0;
+ background: #efeae5;
}
.Faqs img {
- width: 45%;
- margin: 0 auto;
- display: flex;
- height: 100%;
+ width: 45%;
+ margin: 0 auto;
+ display: flex;
+ height: 100%;
}
.faqs-content h1 {
- text-align: center;
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 30px;
- font-family: system-ui, 'Open Sans';
+ text-align: center;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 30px;
+ font-family: system-ui, "Open Sans";
}
.faqs-content p {
- text-align: center;
- font-size: 18px;
- margin-bottom: 30px;
+ text-align: center;
+ font-size: 18px;
+ margin-bottom: 30px;
}
.contact-form li.active {
- color: #C18948 !important;
+ color: #c18948 !important;
}
.contact-form li {
- width: fit-content;
- justify-content: center;
- display: flex;
- text-align: center;
- padding-bottom: 5px;
+ width: fit-content;
+ justify-content: center;
+ display: flex;
+ text-align: center;
+ padding-bottom: 5px;
}
.contact-form .nav-pills a {
- color: #C18948;
- font-size: 16px;
- width: 100%;
+ color: #c18948;
+ font-size: 16px;
+ width: 100%;
}
.contact-form .nav-pills li a.active {
- border-bottom: 2px solid #c18948;
- color: #C18948;
- font-weight: 700;
+ border-bottom: 2px solid #c18948;
+ color: #c18948;
+ font-weight: 700;
}
/* .contact-form .tab-content .tab-pane {
@@ -2658,816 +2648,813 @@ li.item.list-item:nth-child(even) {
} */
.contact-form a.submit-btn {
- width: 140px !important;
- height: 35px !important;
- margin: 10px auto 0 auto;
- font-size: 16px !important;
- background: #C18948;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
- padding: 10px 30px;
- text-decoration: none;
- position: relative;
- transition: all 1s ease 0s;
+ width: 140px !important;
+ height: 35px !important;
+ margin: 10px auto 0 auto;
+ font-size: 16px !important;
+ background: #c18948;
+ color: #fff;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ padding: 10px 30px;
+ text-decoration: none;
+ position: relative;
+ transition: all 1s ease 0s;
}
.contact-form label {
- margin-bottom: 5px !important;
+ margin-bottom: 5px !important;
}
.contact-form textarea {
- border: 0;
- background: transparent;
- border-bottom: 1px solid #c3c1c1;
- border-radius: 0;
- width: 100%;
- resize: none;
+ border: 0;
+ background: transparent;
+ border-bottom: 1px solid #c3c1c1;
+ border-radius: 0;
+ width: 100%;
+ resize: none;
}
-
.works-section .heading-logo {
- background-color: #1B243D;
- padding: 10px;
- margin-right: 10px;
+ background-color: #1b243d;
+ padding: 10px;
+ margin-right: 10px;
}
.works-section .cards-info {
- background-color: #E8C69F;
- padding: 13px;
- border-radius: 10px;
- height:120px
+ background-color: #e8c69f;
+ padding: 13px;
+ border-radius: 10px;
+ height: 120px;
}
.works-section .cards-info h4 {
- font-size: 20px;
- font-family: Cambria;
- font-weight: 600;
+ font-size: 20px;
+ font-family: Cambria;
+ font-weight: 600;
}
.works-section .cards-info p {
- font-size: 15px;
- margin: 0;
+ font-size: 15px;
+ margin: 0;
}
.works-section .arrow {
- text-align: center;
- margin-top: -9px;
+ text-align: center;
+ margin-top: -9px;
}
.page-title {
- font-size: 22px;
- font-family: Cambria;
- font-weight: 600;
+ font-size: 22px;
+ font-family: Cambria;
+ font-weight: 600;
}
input:focus {
- outline: none;
+ outline: none;
}
.works-section .arrow img {
- width: 25px;
+ width: 25px;
}
/* new css */
.why-jericho .banner {
- padding: 50px 0;
- background: #efeae5;
+ padding: 50px 0;
+ background: #efeae5;
}
.why-jericho .banner .content h1 {
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 30px;
- color: #000;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 30px;
+ color: #000;
}
.why-jericho .banner .content h2 {
- font-size: 20px;
- margin-bottom: 30px;
- color: #C18948;
- line-height: 30px;
- font-weight: 500;
- /* font-family: 'Poppins'; */
+ font-size: 20px;
+ margin-bottom: 30px;
+ color: #c18948;
+ line-height: 30px;
+ font-weight: 500;
+ /* font-family: 'Poppins'; */
}
.why-jericho .banner .bgn-image {
- display: flex;
- justify-content: center;
- align-items: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
.why-jericho .banner .bgn-image img {
- width: 80%;
- margin: 0 auto;
- height: auto;
+ width: 80%;
+ margin: 0 auto;
+ height: auto;
}
.why-jericho .about-content {
- padding: 50px 0;
- background-color: #fff;
+ padding: 50px 0;
+ background-color: #fff;
}
.why-jericho .about-content .about-left {
- text-align: center;
+ text-align: center;
}
.why-jericho .about-content .about-left img {
- width: 80%;
+ width: 80%;
}
.why-jericho .about-right p {
- color: #6A6A6A;
+ color: #6a6a6a;
}
.why-jericho .why_about {
- margin-top: 4rem;
+ margin-top: 4rem;
}
.why-jericho .about-circle {
- min-width: 80px;
- max-height: 80px;
- border-radius: 50%;
- border: 2px solid #143C6D;
- margin-right: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
+ min-width: 80px;
+ max-height: 80px;
+ border-radius: 50%;
+ border: 2px solid #143c6d;
+ margin-right: 10px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
.why-jericho .ex-content {
- display: flex;
+ display: flex;
}
.why-jericho .about-circle img {
- object-fit: scale-down;
+ object-fit: scale-down;
}
.why-jericho .ex {
- font-weight: bold;
- color: #000 !important;
+ font-weight: bold;
+ color: #000 !important;
}
.why-jericho .about-right p {
- color: #6A6A6A;
+ color: #6a6a6a;
}
.why-jericho .ex-text {
- font-size: 12px;
+ font-size: 12px;
}
.why-jericho .blue-bar {
- background: #143C6D;
- height: 180px;
- display: flex;
- align-items: center;
- justify-content: center;
+ background: #143c6d;
+ height: 180px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.why-jericho .blue-bar .container {
- display: flex;
- justify-content: space-around;
+ display: flex;
+ justify-content: space-around;
}
.why-jericho .bluebr-circle {
- background: #EFEAE5;
- width: 90px;
- height: 90px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 50%;
- color: #464646;
+ background: #efeae5;
+ width: 90px;
+ height: 90px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 50%;
+ color: #464646;
}
.why-jericho .bluebr-circle h2 {
- font-size: 22px;
- margin: 0;
- font-weight: 500;
- text-align: center;
+ font-size: 22px;
+ margin: 0;
+ font-weight: 500;
+ text-align: center;
}
.why-jericho .bluebr-txt h3 {
- margin: auto;
- color: #000;
- font-size: 18px;
- font-weight: normal;
- line-height: 21px;
+ margin: auto;
+ color: #000;
+ font-size: 18px;
+ font-weight: normal;
+ line-height: 21px;
}
.why-jericho .bluebr .row {
- display: flex;
- align-items: center;
- justify-content: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.why-jericho .best-invest {
- background: #F9FBFF;
- padding: 50px 0;
+ background: #f9fbff;
+ padding: 50px 0;
}
.why-jericho .best-invest h2 {
- text-align: center;
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 20px;
+ text-align: center;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 20px;
}
.why-jericho .best-invest p {
- font-size: 18px;
+ font-size: 18px;
}
.why-jericho .team-img img {
- width: 85%;
+ width: 85%;
}
.why-jericho .team-content {
- margin-top: 45px;
- margin-bottom: 45px;
+ margin-top: 45px;
+ margin-bottom: 45px;
}
.why-jericho .team-text {
- background-color: #1b243d;
- padding: 36px;
- border-radius: 15px;
- width: 60%;
- margin: auto;
- color: #fff !important;
+ background-color: #1b243d;
+ padding: 36px;
+ border-radius: 15px;
+ width: 60%;
+ margin: auto;
+ color: #fff !important;
}
.why-jericho .team-quote h5 {
- font-size: 22px;
+ font-size: 22px;
}
.why-jericho .team-quote h5::before {
- background-color: #FFF;
- content: "";
- display: inline-block;
- height: 2px;
- position: relative;
- vertical-align: middle;
- width: 4%;
- margin-right: 10px;
- border-radius: 10px;
+ background-color: #fff;
+ content: "";
+ display: inline-block;
+ height: 2px;
+ position: relative;
+ vertical-align: middle;
+ width: 4%;
+ margin-right: 10px;
+ border-radius: 10px;
}
.why-jericho .team-quote p {
- margin-left: 34px;
+ margin-left: 34px;
}
-
.why-jericho .best-invest hr {
- background-color: #153a6b;
- height: 2px;
- border: none;
+ background-color: #153a6b;
+ height: 2px;
+ border: none;
}
.why-jericho .partners {
- padding: 50px 0px;
- background-color: #F3F3F3;
+ padding: 50px 0px;
+ background-color: #f3f3f3;
}
.why-jericho .divider {
- margin-bottom: 45px;
+ margin-bottom: 45px;
}
.why-jericho .partners h2 {
- text-align: center;
- font-weight: bold;
- margin-bottom: 35px;
+ text-align: center;
+ font-weight: bold;
+ margin-bottom: 35px;
}
.why-jericho .b-logo {
- text-align: center;
+ text-align: center;
}
.why-jericho .b-logo img {
- width: 80%;
+ width: 80%;
}
.why-jericho .blue-bar {
- background: #C18948;
- height: 175px;
- display: flex;
- align-items: center;
- justify-content: center;
+ background: #c18948;
+ height: 175px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.why-jericho .blue-bar .container {
- display: flex;
- justify-content: space-around;
+ display: flex;
+ justify-content: space-around;
}
.why-jericho .bluebr {
- display: flex;
- align-items: center;
- justify-content: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.why-jericho .rate-img {
- width: 110px !important;
- height: 110px !important;
+ width: 110px !important;
+ height: 110px !important;
}
.why-jericho .rate-img img {
- object-fit: contain;
- width: 100%;
- height: 100%;
+ object-fit: contain;
+ width: 100%;
+ height: 100%;
}
.why-jericho .rate-txt h2 {
- color: #000;
- font-size: 30px;
- font-weight: 400;
+ color: #000;
+ font-size: 30px;
+ font-weight: 400;
}
.why-jericho .rate-txt h3 {
- font-size: 15px;
- color: #000;
- font-weight: normal;
+ font-size: 15px;
+ color: #000;
+ font-weight: normal;
}
.why-jericho .bluebr .row {
- display: contents;
+ display: contents;
}
.why-jericho .starts i {
- font-size: 17px;
- color: #ffb600;
+ font-size: 17px;
+ color: #ffb600;
}
.why-jericho .fa-star::before {
- content: "\f005";
+ content: "\f005";
}
.why-jericho .Latest_news {
- padding: 50px 0;
- background: #F3F3F3;
+ padding: 50px 0;
+ background: #f3f3f3;
}
.why-jericho h2.news-txt {
- font-size: 35px;
- font-weight: bolder;
- margin-bottom: 50px;
- position: relative;
+ font-size: 35px;
+ font-weight: bolder;
+ margin-bottom: 50px;
+ position: relative;
}
.why-jericho h2.news-txt::after {
- position: absolute;
- content: '';
- border-bottom: 2px solid #143C6D;
- width: 35%;
- bottom: -10px;
- left: 0;
- margin: 0 auto;
+ position: absolute;
+ content: "";
+ border-bottom: 2px solid #143c6d;
+ width: 35%;
+ bottom: -10px;
+ left: 0;
+ margin: 0 auto;
}
.why-jericho .insight-card {
- padding: 15px;
- box-shadow: 0px 3px 6px #00000029;
- border-radius: 10px;
- margin-bottom: 25px;
- text-align: left;
- background: white;
+ padding: 15px;
+ box-shadow: 0px 3px 6px #00000029;
+ border-radius: 10px;
+ margin-bottom: 25px;
+ text-align: left;
+ background: white;
}
.why-jericho .insight-card img {
- margin-bottom: 10px;
- width: 100%;
- height: 160px;
- object-fit: contain;
- object-position: center;
+ margin-bottom: 10px;
+ width: 100%;
+ height: 160px;
+ object-fit: contain;
+ object-position: center;
}
.why-jericho .insight-card h2 {
- font-size: 17px !important;
- font-weight: bold;
+ font-size: 17px !important;
+ font-weight: bold;
}
.why-jericho .insight-card span {
- font-size: 15px;
- margin-bottom: 10px !important;
+ font-size: 15px;
+ margin-bottom: 10px !important;
}
.why-jericho .col-md-4 .insight-card p {
- height: 90px;
- text-overflow: ellipsis;
+ height: 90px;
+ text-overflow: ellipsis;
}
.why-jericho .insight-card p {
- font-size: 14px !important;
- margin-top: 5px;
+ font-size: 14px !important;
+ margin-top: 5px;
}
.why-jericho .insights p:empty {
- display: none;
+ display: none;
}
.why-jericho .insight-card a {
- background: #143C6D;
- padding: 5px 10px;
- font-size: 13px;
- border-radius: 5px;
- color: #fff;
- text-decoration: none;
+ background: #143c6d;
+ padding: 5px 10px;
+ font-size: 13px;
+ border-radius: 5px;
+ color: #fff;
+ text-decoration: none;
}
.why-jericho .download_mobapp {
- background: #fff;
- padding: 50px 0;
+ background: #fff;
+ padding: 50px 0;
}
.why-jericho .download_mobapp h2 {
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 25px;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 25px;
}
.why-jericho .download_mobapp ul {
- list-style: none;
- line-height: 3;
- padding-left: 0;
- margin-bottom: 30px;
+ list-style: none;
+ line-height: 3;
+ padding-left: 0;
+ margin-bottom: 30px;
}
.why-jericho .download_mobapp ul li {
- font-size: 20px;
+ font-size: 20px;
}
.why-jericho .download_mobapp ul li::before {
- background-position: center;
- content: '';
- /*background-image: url("https://jerichoalternatives.in/public/assets/css/FrontendCss/../../media/FrontendImages/1517.png");*/
- background-image: url(../../media/FrontendImages/1517.png);
- width: 100%;
- height: 100%;
- padding: 10px 27px;
- background-size: 37px;
- background-repeat: no-repeat;
+ background-position: center;
+ content: "";
+ /*background-image: url("https://jerichoalternatives.in/public/assets/css/FrontendCss/../../media/FrontendImages/1517.png");*/
+ background-image: url(../../media/FrontendImages/1517.png);
+ width: 100%;
+ height: 100%;
+ padding: 10px 27px;
+ background-size: 37px;
+ background-repeat: no-repeat;
}
.why-jericho .store-app {
- display: flex;
- align-items: center;
+ display: flex;
+ align-items: center;
}
.why-jericho .store-app img {
- width: 150px;
- height: 50px;
- margin-right: 16px;
+ width: 150px;
+ height: 50px;
+ margin-right: 16px;
}
.why-jericho .request_back .left img {
- width: 100%;
- height: 350px;
+ width: 100%;
+ height: 350px;
}
.why-jericho .request_back {
- background: #F3F3F3;
- padding: 60px 0;
+ background: #f3f3f3;
+ padding: 60px 0;
}
.why-jericho .request_back h2 {
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 20px;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 20px;
}
.why-jericho .request_back h3 {
- font-size: 24px;
- margin-bottom: 20px;
- line-height: 30px;
+ font-size: 24px;
+ margin-bottom: 20px;
+ line-height: 30px;
}
.why-jericho .request_back form {
- background: #fff;
- box-shadow: 0px 1px 20px 1px #00000029;
- padding: 30px;
- border-radius: 10px;
- max-width: 500px;
+ background: #fff;
+ box-shadow: 0px 1px 20px 1px #00000029;
+ padding: 30px;
+ border-radius: 10px;
+ max-width: 500px;
}
.why-jericho .request_back form label {
- font-size: 17px;
- width: 100%;
- color: #000;
- margin-bottom: 10px;
+ font-size: 17px;
+ width: 100%;
+ color: #000;
+ margin-bottom: 10px;
}
.why-jericho .request_back input {
- width: 100%;
- border-radius: 8px;
- height: 35px;
- border: 1px solid #143c6d;
- padding: 10px;
- font-size: 14px;
+ width: 100%;
+ border-radius: 8px;
+ height: 35px;
+ border: 1px solid #143c6d;
+ padding: 10px;
+ font-size: 14px;
}
.why-jericho .form-group {
- margin-bottom: 1rem;
+ margin-bottom: 1rem;
}
.why-jericho .request_back textarea {
- width: 100%;
- border-radius: 8px;
- height: 70px;
- border: 1px solid #143c6d;
- padding: 10px;
- font-size: 14px;
+ width: 100%;
+ border-radius: 8px;
+ height: 70px;
+ border: 1px solid #143c6d;
+ padding: 10px;
+ font-size: 14px;
}
.why-jericho button#request_callback_btn {
- margin-left: 15px !important;
- margin-top: 15px;
- background: #113268;
- border-radius: 10px;
- text-align: center;
- color: #fff;
- text-decoration: none;
- padding: 10px 40px;
- width: 25%;
- display: flex;
- justify-content: center;
- align-items: center;
+ margin-left: 15px !important;
+ margin-top: 15px;
+ background: #113268;
+ border-radius: 10px;
+ text-align: center;
+ color: #fff;
+ text-decoration: none;
+ padding: 10px 40px;
+ width: 25%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
}
.why-jericho .client {
- padding: 50px 0;
- background-color: #efeae5;
+ padding: 50px 0;
+ background-color: #efeae5;
}
.why-jericho .client .heading {
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 50px;
- text-align: center;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 50px;
+ text-align: center;
}
.why-jericho .client h2.client-txt::after {
- position: absolute;
- content: '';
- border-bottom: 2px solid #143C6D;
- width: 26%;
- bottom: -13px;
- left: 0;
- right: 0;
- margin: 0 auto;
+ position: absolute;
+ content: "";
+ border-bottom: 2px solid #143c6d;
+ width: 26%;
+ bottom: -13px;
+ left: 0;
+ right: 0;
+ margin: 0 auto;
}
.why-jericho .client_says .slick-list.draggable {
- height: 420px;
- padding: 20px 0;
+ height: 420px;
+ padding: 20px 0;
}
.why-jericho .client_says .custom-card {
- position: relative;
- border: 0;
- width: 333px !important;
- background: #fff;
- box-shadow: 0px 1px 20px 1px #00000029;
- padding: 20px 25px;
- margin: 0 20px;
- height: 300px;
- border-radius: 15px;
+ position: relative;
+ border: 0;
+ width: 333px !important;
+ background: #fff;
+ box-shadow: 0px 1px 20px 1px #00000029;
+ padding: 20px 25px;
+ margin: 0 20px;
+ height: 300px;
+ border-radius: 15px;
}
.why-jericho .custom-card .star i {
- font-size: 22px;
- letter-spacing: 10px;
- margin: 20px 0;
- color: #143c6d;
+ font-size: 22px;
+ letter-spacing: 10px;
+ margin: 20px 0;
+ color: #143c6d;
}
.why-jericho .custom-card p {
- font-size: 16px;
+ font-size: 16px;
}
.why-jericho .custom-card .profile img {
- width: 60px;
- height: 60px;
+ width: 60px;
+ height: 60px;
}
.why-jericho .custom-card .profile {
- bottom: -84px;
- position: absolute;
+ bottom: -84px;
+ position: absolute;
}
.why-jericho .custom-card .profile h2 {
- font-size: 20px !important;
- margin: 5px 0 !important;
- font-weight: bold;
+ font-size: 20px !important;
+ margin: 5px 0 !important;
+ font-weight: bold;
}
.why-jericho .custom-card .profile h3 {
- font-size: 17px;
+ font-size: 17px;
}
.explore-assets .btn-group {
- margin-bottom: 15px;
+ margin-bottom: 15px;
}
.explore-assets .sub-heading {
- margin-bottom: 10px;
- font-family: cambria;
+ margin-bottom: 10px;
+ font-family: cambria;
}
.explore-assets .active,
.primary-investment .active {
- background: #C18948 !important;
- border: navajowhite;
- padding: 7px 18px;
- border-radius: 5px;
- color: #fff;
- font-size: 18px;
- line-height: 1.2;
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 5px;
- font-family: cambria;
+ background: #c18948 !important;
+ border: navajowhite;
+ padding: 7px 18px;
+ border-radius: 5px;
+ color: #fff;
+ font-size: 18px;
+ line-height: 1.2;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 5px;
+ font-family: cambria;
}
.explore-assets .inactive,
.primary-investment .inactive {
- background: #E8C69F;
- border: navajowhite;
- padding: 7px 20px;
- border-radius: 5px;
- color: #000;
- font-size: 18px;
- line-height: 1.2;
- display: flex;
- justify-content: center;
- align-items: center;
- gap: 5px;
- font-family: 'Cambria';
+ background: #e8c69f;
+ border: navajowhite;
+ padding: 7px 20px;
+ border-radius: 5px;
+ color: #000;
+ font-size: 18px;
+ line-height: 1.2;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ gap: 5px;
+ font-family: "Cambria";
}
.explore-assets .active img,
.explore-assets .inactive img {
- height: 22px;
- width: 22px;
+ height: 22px;
+ width: 22px;
}
.card-container {
- background: #1B243D;
- padding: 25px;
- color: #C18948;
- border-radius: 20px;
+ background: #1b243d;
+ padding: 25px;
+ color: #c18948;
+ border-radius: 20px;
}
.card-container .card-info {
- background: #333B52;
- padding: 11px;
- gap: 15px;
- border-radius: 40px;
- margin-bottom: 10px;
- display: flex;
- align-items: center;
+ background: #333b52;
+ padding: 11px;
+ gap: 15px;
+ border-radius: 40px;
+ margin-bottom: 10px;
+ display: flex;
+ align-items: center;
}
.card-container a {
- color: #C18948 !important;
+ color: #c18948 !important;
}
.card-container .card-info p {
- font-size: 16px;
- line-height: 1.3;
- text-align: left;
+ font-size: 16px;
+ line-height: 1.3;
+ text-align: left;
}
.card-container .card-info img {
- height: 40px;
- width: 40px;
+ height: 40px;
+ width: 40px;
}
.card-container .card-desc {
- line-height: 1.3;
- margin-bottom: 10px;
+ line-height: 1.3;
+ margin-bottom: 10px;
}
.primary-investment {
- background: #efeae5;
- padding: 40px 0;
+ background: #efeae5;
+ padding: 40px 0;
}
.primary-investment .page-heading {
- text-align: center;
- font-weight: bold;
- font-size: 40px;
+ text-align: center;
+ font-weight: bold;
+ font-size: 40px;
}
.primary-investment .page-desc {
- text-align: center;
- color: #1B243D;
- font-size: 24px;
- line-height: 1.2;
- margin-bottom: 32px;
+ text-align: center;
+ color: #1b243d;
+ font-size: 24px;
+ line-height: 1.2;
+ margin-bottom: 32px;
}
.dashboard .heading {
- display: flex;
- align-items: center;
- justify-content: center;
- background:#FFF3E4;
- padding: 50px 0;
- gap: 20px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: #fff3e4;
+ padding: 50px 0;
+ gap: 20px;
}
.dashboard .heading h1 {
- font-weight: 600;
- font-family: 'IM FELL English';
- font-size: 37px;
+ font-weight: 600;
+ font-family: "IM FELL English";
+ font-size: 37px;
}
.dashboard .heading p {
- text-align: center;
- font-family: "Cambria";
- font-size: 18px;
- color: #000;
- line-height: 1.4;
+ text-align: center;
+ font-family: "Cambria";
+ font-size: 18px;
+ color: #000;
+ line-height: 1.4;
}
.dashboard .heading img {
- height: 200px;
- width: 100%;
+ height: 200px;
+ width: 100%;
}
.dashboard .dashboard-form ul#dashboard-tab {
- background-color: #c18948;
- padding: 15px 0;
- align-items: center;
- justify-content: center;
- gap: 15%;
+ background-color: #c18948;
+ padding: 15px 0;
+ align-items: center;
+ justify-content: center;
+ gap: 15%;
}
-
.dashboard .dashboard-form .nav-pills a {
- color: #fff;
- font-size: 22px;
- width: 100%;
+ color: #fff;
+ font-size: 22px;
+ width: 100%;
}
.dashboard .dashboard-form li.active {
- color: #1b243d !important;
+ color: #1b243d !important;
}
.dashboard .dashboard-form .nav-pills li a.active {
- border-bottom: 2px solid #1b243d;
- color: #1b243d;
- font-weight: 600;
+ border-bottom: 2px solid #1b243d;
+ color: #1b243d;
+ font-weight: 600;
}
.dashboard .dashboard-form .personal-details {
- background: #edd9c2;
- border-radius: 12px;
- padding: 30px;
- margin: 20px 0;
+ background: #edd9c2;
+ border-radius: 12px;
+ padding: 30px;
+ margin: 20px 0;
}
.dashboard .dashboard-form .personal-details h3 {
- font-weight: 600;
- margin-bottom: 15px;
+ font-weight: 600;
+ margin-bottom: 15px;
}
.dashboard .dashboard-form .personal-details .details {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- gap: 15px;
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ gap: 15px;
}
.dashboard .dashboard-form .personal-details .details i {
- font-size: 25px;
+ font-size: 25px;
}
.dashboard .dashboard-form .personal-details .details p {
- margin: 0;
- font-weight: 500;
- font-size: 20px;
- font-family: "Cambria";
+ margin: 0;
+ font-weight: 500;
+ font-size: 20px;
+ font-family: "Cambria";
}
.dashboard .dashboard-form .invest-card {
- background: #edd9c2;
- border-radius: 12px;
- padding: 20px 30px;
- margin-bottom: 20px;
+ background: #edd9c2;
+ border-radius: 12px;
+ padding: 20px 30px;
+ margin-bottom: 20px;
}
.dashboard .dashboard-form p {
- margin: 0;
- font-family: "Cambria";
+ margin: 0;
+ font-family: "Cambria";
}
.dashboard .dashboard-form .invest-card .title {
- font-weight: 600;
+ font-weight: 600;
}
.dashboard .dashboard-form .table-heading {
- font-weight: 600;
- font-size: 21px;
+ font-weight: 600;
+ font-size: 21px;
}
/* .dashboard .dashboard-form #current-investment,
@@ -3476,574 +3463,572 @@ input:focus {
} */
.dashboard .dashboard-form .custom-table thead tr th {
- background: #1b243d;
- color: #fff;
- text-align: center;
- font-weight: 500;
- outline: 1px solid #fff;
- font-size: 12px;
- padding: 10px 10px;
+ background: #1b243d;
+ color: #fff;
+ text-align: center;
+ font-weight: 500;
+ outline: 1px solid #fff;
+ font-size: 12px;
+ padding: 10px 10px;
}
.dashboard .dashboard-form .custom-table tbody tr td {
- text-align: center;
- line-height: 1.2;
- font-size: 12px;
- padding: 15px 10px;
- border: 1px solid #00000024;
+ text-align: center;
+ line-height: 1.2;
+ font-size: 12px;
+ padding: 15px 10px;
+ border: 1px solid #00000024;
}
.dashboard .dashboard-form .custom-table tbody tr td a {
- color: #fff;
- background: #1b243d;
- padding: 5px 12px;
- border-radius: 14px;
+ color: #fff;
+ background: #1b243d;
+ padding: 5px 12px;
+ border-radius: 14px;
}
.investment-details .investment-details-bg {
- padding: 50px 0;
- background: #c18948;
- /* font-family: "Cambria" !important; */
+ padding: 50px 0;
+ background: #c18948;
+ /* font-family: "Cambria" !important; */
}
.investment-details .investment-details-banner {
- padding: 50px 0;
- display: flex;
- align-items: center;
+ padding: 50px 0;
+ display: flex;
+ align-items: center;
}
.investment-details .investment-details-banner .image {
- background-color: #e8c69f;
- height: 110px;
- width: 110px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 35px;
- border-radius: 8px;
- border: 2px solid #1b243d;
+ background-color: #e8c69f;
+ height: 110px;
+ width: 110px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 35px;
+ border-radius: 8px;
+ border: 2px solid #1b243d;
}
.investment-details .investment-details-banner .image img {
- width: 73px;
- height: 21px;
+ width: 73px;
+ height: 21px;
}
.investment-details .investment-details-banner .content {
- margin-left: 36px;
+ margin-left: 36px;
}
.investment-details .investment-details-banner .content h2 {
- font-size: 28px;
- font-weight: 600;
- margin-bottom: 2px;
+ font-size: 28px;
+ font-weight: 600;
+ margin-bottom: 2px;
}
.investment-details .investment-details-banner .content p {
- margin-bottom: 8px;
- font-size: 16px;
- /* font-family: "Cambria"; */
+ margin-bottom: 8px;
+ font-size: 16px;
+ /* font-family: "Cambria"; */
}
.investment-details .investment-details-banner .content p span {
- margin-right: 10px;
+ margin-right: 10px;
}
.investment-details .investment-details-banner .content img {
- width: 84px;
- background-color: #e8c69f;
- padding: 11px 9px;
- height: 34px;
- border-radius: 5px;
- box-shadow: 1px 1px 4px #0000006e;
- margin-right: 10px;
+ width: 84px;
+ background-color: #e8c69f;
+ padding: 11px 9px;
+ height: 34px;
+ border-radius: 5px;
+ box-shadow: 1px 1px 4px #0000006e;
+ margin-right: 10px;
}
.investment-details .table-details {
- background-color: #f9fafc;
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- padding: 5rem 0;
+ background-color: #f9fafc;
+ background-size: cover;
+ background-position: center;
+ background-repeat: no-repeat;
+ padding: 5rem 0;
}
.investment-details .table-details .table-content {
- width: 75%;
- margin: auto;
- padding: 50px 100px;
- box-shadow: 0px 1px 9px 2px #6d6d6d47;
- border-radius: 7px;
- border-right: 5px solid #1b243d;
- background-color: #f9fafcc4;
+ width: 75%;
+ margin: auto;
+ padding: 50px 100px;
+ box-shadow: 0px 1px 9px 2px #6d6d6d47;
+ border-radius: 7px;
+ border-right: 5px solid #1b243d;
+ background-color: #f9fafcc4;
}
.investment-details .table-details .table-content tr {
- display: flex;
- justify-content: space-between;
- margin-bottom: 38px;
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 38px;
}
-
.market-list .banner {
- padding: 45px 0;
- background: #D9D9D9;
- display: flex;
- align-items: center;
- justify-content: center;
+ padding: 45px 0;
+ background: #d9d9d9;
+ display: flex;
+ align-items: center;
+ justify-content: center;
}
.market-list .banner .content h1 {
- font-size: 35px;
- font-weight: bold;
- margin-bottom: 30px;
- color: #000;
+ font-size: 35px;
+ font-weight: bold;
+ margin-bottom: 30px;
+ color: #000;
}
.market-list .banner ul {
- padding-left: 34px;
+ padding-left: 34px;
}
.market-list .banner ul li {
- list-style-type: none;
- margin-bottom: 15px;
- font-size: 18px;
+ list-style-type: none;
+ margin-bottom: 15px;
+ font-size: 18px;
}
.market-list .banner .bgn-image img {
- width: 80%;
- margin: 0 auto;
- height: auto;
+ width: 80%;
+ margin: 0 auto;
+ height: auto;
}
.market-list .form {
- padding: 50px 0;
+ padding: 50px 0;
}
.market-list .form .row {
- width: 80%;
- margin: 0 auto;
+ width: 80%;
+ margin: 0 auto;
}
.market-list .form .form-group {
- margin-bottom: 20px;
+ margin-bottom: 20px;
}
.market-list .form label {
- font-size: 16px;
- margin-bottom: 5px;
- font-weight: 600;
+ font-size: 16px;
+ margin-bottom: 5px;
+ font-weight: 600;
}
.market-list .form .form-group input {
- font-size: 14px;
- width: 100%;
- height: 48px;
- background: #F5F6F9;
- border: 1px solid #D2D2D2;
- color: #000;
- padding: 5px 8px;
- border-radius: 10px;
+ font-size: 14px;
+ width: 100%;
+ height: 48px;
+ background: #f5f6f9;
+ border: 1px solid #d2d2d2;
+ color: #000;
+ padding: 5px 8px;
+ border-radius: 10px;
}
.market-list .form .form-group input[type="number"] {
- -moz-appearance: textfield;
+ -moz-appearance: textfield;
}
.market-list .form .form-group select {
- font-size: 14px;
- width: 100%;
- height: 48px;
- background: #F5F6F9;
- border: 1px solid #D2D2D2;
- color: #000;
- padding: 5px 8px;
- border-radius: 10px;
+ font-size: 14px;
+ width: 100%;
+ height: 48px;
+ background: #f5f6f9;
+ border: 1px solid #d2d2d2;
+ color: #000;
+ padding: 5px 8px;
+ border-radius: 10px;
}
.market-list .form .declaration h5 {
- font-weight: 600;
+ font-weight: 600;
}
.market-list .form .declaration label {
- font-size: 16px;
- margin-bottom: 5px;
+ font-size: 16px;
+ margin-bottom: 5px;
}
.market-list .form button.blue-btn {
- background: #113268;
- padding: 10px;
- border-radius: 10px;
- text-align: center;
- color: #fff;
- text-decoration: none;
+ background: #113268;
+ padding: 10px;
+ border-radius: 10px;
+ text-align: center;
+ color: #fff;
+ text-decoration: none;
}
.dashboard .dashboard-form #market-block {
- margin-top: 10px;
- padding: 15px 0;
- align-items: center;
- justify-content: flex-start;
- gap: 5%;
+ margin-top: 10px;
+ padding: 15px 0;
+ align-items: center;
+ justify-content: flex-start;
+ gap: 5%;
}
.dashboard .dashboard-form #market-block a {
- color: #8b8989;
- font-size: 17px;
- font-weight: 500;
+ color: #8b8989;
+ font-size: 17px;
+ font-weight: 500;
}
.dashboard .dashboard-form #market-block li a.active {
- border-bottom: 2px solid #1b243d;
- color: #1b243d;
+ border-bottom: 2px solid #1b243d;
+ color: #1b243d;
}
.dashboard .Latest_news {
- padding: 50px 0;
+ padding: 50px 0;
}
.dashboard .Latest_news h2.news-txt {
- font-size: 30px;
- font-weight: bolder;
- margin-bottom: 50px;
- position: relative;
+ font-size: 30px;
+ font-weight: bolder;
+ margin-bottom: 50px;
+ position: relative;
}
.dashboard .Latest_news h2.news-txt::after {
- position: absolute;
- content: '';
- border-bottom: 2px solid #000;
- width: 31%;
- bottom: -10px;
- left: 0;
- margin: 0 auto;
+ position: absolute;
+ content: "";
+ border-bottom: 2px solid #000;
+ width: 31%;
+ bottom: -10px;
+ left: 0;
+ margin: 0 auto;
}
-
.investor-profile .investor-image {
- width: 46%;
- margin: 0 auto;
+ width: 46%;
+ margin: 0 auto;
}
.investor-profile .invest-form h2 {
- font-weight: bold;
+ font-weight: bold;
}
.investor-profile .invest-form a {
- padding: 10px 20px;
- border-radius:5px;
- background-color: #c18948;
+ padding: 10px 20px;
+ border-radius: 5px;
+ background-color: #c18948;
}
.investor-profile .invest-form a i {
- color: #000;
- margin-right: 5px;
+ color: #000;
+ margin-right: 5px;
}
.investor-profile .invest-form a span {
- color: #000;
+ color: #000;
}
.investor-profile .invest-form .ip-header.container {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 35px 0px;
- border-bottom: 1px solid #D5D5D5;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 35px 0px;
+ border-bottom: 1px solid #d5d5d5;
}
.investor-profile .invest-form form {
- padding: 35px 0;
+ padding: 35px 0;
}
.investor-profile .invest-form .iv-form {
- display: flex;
- flex-direction: column;
+ display: flex;
+ flex-direction: column;
}
.investor-profile .invest-form .form-sec input {
- padding: 7px;
- border-radius: 7px;
- border: 1px solid #bdbdbd;
- letter-spacing: 1px;
- height: 50px !important;
- background-color: #fff;
- color: #000;
- width: 100%;
- font-size: 18px;
+ padding: 7px;
+ border-radius: 7px;
+ border: 1px solid #bdbdbd;
+ letter-spacing: 1px;
+ height: 50px !important;
+ background-color: #fff;
+ color: #000;
+ width: 100%;
+ font-size: 18px;
}
.investor-profile .iv-form p {
- margin-bottom: 8px;
+ margin-bottom: 8px;
}
.investor-profile .invest-form textarea {
- width: 100%;
- height: 150px;
- padding: 12px 12px;
- box-sizing: border-box;
- border: 1px solid #D2D2D2;
- border-radius: 4px;
- font-size: 18px;
- resize: none;
- background-color: #fff;
- color: #000;
+ width: 100%;
+ height: 150px;
+ padding: 12px 12px;
+ box-sizing: border-box;
+ border: 1px solid #d2d2d2;
+ border-radius: 4px;
+ font-size: 18px;
+ resize: none;
+ background-color: #fff;
+ color: #000;
}
.investor-profile .invest-form .save {
- background:#fff;
- color: #000;
- /*font-weight: bold;*/
- font-size: 18px;
- height: 46px;
- border-radius: 6px;
- /*padding: 10px 30px;*/
- border: none;
- cursor: pointer;
- width: 25%;
- transition: 0.5s;
+ background: #fff;
+ color: #000;
+ /*font-weight: bold;*/
+ font-size: 18px;
+ height: 46px;
+ border-radius: 6px;
+ /*padding: 10px 30px;*/
+ border: none;
+ cursor: pointer;
+ width: 25%;
+ transition: 0.5s;
}
.investor-profile .invest-form .save:hover {
- background-color: #C18948;
+ background-color: #c18948;
}
.kyc .investor-image {
- margin: 0 auto;
+ margin: 0 auto;
}
.kyc .investor-image img {
- width: 35%;
- height: 100%;
- margin: 0 auto;
- display: flex;
+ width: 35%;
+ height: 100%;
+ margin: 0 auto;
+ display: flex;
}
.kyc .acc-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 35px 45px;
- border-bottom: 1px solid #D5D5D5;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 35px 45px;
+ border-bottom: 1px solid #d5d5d5;
}
.kyc .acc-header h2 {
- font-weight: bold;
+ font-weight: bold;
}
.kyc .acc-header p {
- color: #737373;
+ color: #737373;
}
.kyc .add-acc {
- border: none;
- padding: 10px 28px;
- border-radius: 4px;
- background-color: #c18948;
- color: #fff;
+ border: none;
+ padding: 10px 28px;
+ border-radius: 4px;
+ background-color: #c18948;
+ color: #fff;
}
.kyc .add-acc:focus,
.add-acc:active {
- background-color: #c18948 !important;
- box-shadow: none !important;
- color: #fff;
+ background-color: #c18948 !important;
+ box-shadow: none !important;
+ color: #fff;
}
.kyc .tab-form {
- padding: 55px 30px;
+ padding: 55px 30px;
}
.kyc .pi-details h2 {
- color: #143C6D;
- font-weight: 600;
- font-size: 35px;
+ color: #143c6d;
+ font-weight: 600;
+ font-size: 35px;
}
.kyc .pi-details h4 {
- font-weight: 600;
+ font-weight: 600;
}
.kyc .pi-details p {
- font-weight: 500;
- font-size: 18px;
+ font-weight: 500;
+ font-size: 18px;
}
.kyc .form-sec label {
- font-size: 17px;
- color: #000;
- margin-bottom: 5px;
+ font-size: 17px;
+ color: #000;
+ margin-bottom: 5px;
}
.kyc .form-sec input {
- border-radius: 0px;
- box-sizing: border-box;
- color: #9e9e9e;
- border: 1px solid #bdbdbd;
- font-size: 16px;
- letter-spacing: 1px;
- height: 50px !important;
- background-color: #F5F6F9;
- margin-bottom: 0px;
+ border-radius: 0px;
+ box-sizing: border-box;
+ color: #9e9e9e;
+ border: 1px solid #bdbdbd;
+ font-size: 16px;
+ letter-spacing: 1px;
+ height: 50px !important;
+ background-color: #f5f6f9;
+ margin-bottom: 0px;
}
.kyc h5.info {
- font-weight: 600;
- font-size: 21px;
+ font-weight: 600;
+ font-size: 21px;
}
.kyc button.next-button {
- background: #c18948;
- color: #000;
- font-weight: bold;
- font-size: 18px;
- height: 50px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
- min-width: 335px;
- padding: 10px 30px;
- border: none;
- cursor: pointer;
- width: fit-content;
- margin-left: auto !important;
- margin-right: auto;
+ background: #c18948;
+ color: #000;
+ font-weight: bold;
+ font-size: 18px;
+ height: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ min-width: 335px;
+ padding: 10px 30px;
+ border: none;
+ cursor: pointer;
+ width: fit-content;
+ margin-left: auto !important;
+ margin-right: auto;
}
.explore-cate .tab-content a {
- color: #c18948 !important;
+ color: #c18948 !important;
}
-.your-investment .investment .col-md-4 a{
- color: #000 !important;
+.your-investment .investment .col-md-4 a {
+ color: #000 !important;
}
.dropdown-menu .prd-sec {
- display: flex;
+ display: flex;
}
.menubar .menu-logo img {
- width: 85px;
+ width: 85px;
}
.dashboard-form .tab-content {
- padding: 2rem 0 3rem 0;
+ padding: 2rem 0 3rem 0;
}
.dashboard-form .tab-content a.current {
- padding: 2px 10px !important;
- background-color: transparent !important;
+ padding: 2px 10px !important;
+ background-color: transparent !important;
}
/*.works-section .Primary-tran {*/
/* margin-bottom: 30px;*/
/* margin-top: 13px;*/
/*}*/
.works-section .Primary-tran p {
- height: 48px;
+ height: 48px;
}
.banner-left-content .main-head {
- display: flex;
- justify-content: space-between;
+ display: flex;
+ justify-content: space-between;
}
.popular-assets .assets-card {
- cursor: pointer;
+ cursor: pointer;
}
a.btn.btn-secondary.dropdown-toggle:active {
- background-color: inherit;
+ background-color: inherit;
}
.parimay-card .dropdown-tooltip a.btn {
- margin-right: 0;
+ margin-right: 0;
}
.assets-card .middle-sec .dropdown-tooltip {
- display: flex;
- align-items: center;
- color: #000;
+ display: flex;
+ align-items: center;
+ color: #000;
}
.home-banner-sell .home-banner-btn {
- display: none;
+ display: none;
}
.checkbox-sec {
- display: grid;
- grid-template-columns: repeat(3, 3fr);
- grid-gap: 22px;
- justify-content: center;
+ display: grid;
+ grid-template-columns: repeat(3, 3fr);
+ grid-gap: 22px;
+ justify-content: center;
}
.Secondary .sec-btn {
- margin-top: 30px;
- display: flex;
+ margin-top: 30px;
+ display: flex;
}
.works-section-inner {
- display: grid;
- grid-template-columns: repeat(4, 4fr);
- grid-gap: 38px;
+ display: grid;
+ grid-template-columns: repeat(4, 4fr);
+ grid-gap: 38px;
}
.works-section-inner img {
- width: 88px;
- height: 88px;
+ width: 88px;
+ height: 88px;
}
.platform-card .work-images {
- text-align: center;
- background-color:#FFF3E4;
- padding: 30px 20px;
- margin-bottom: 20px;
- border-radius: 8px;
+ text-align: center;
+ background-color: #fff3e4;
+ padding: 30px 20px;
+ margin-bottom: 20px;
+ border-radius: 8px;
}
.platform-card {
- background-color: #fff;
- border-radius: 11px;
- padding: 20px;
+ background-color: #fff;
+ border-radius: 11px;
+ padding: 20px;
}
.platform-card .work-content h4 {
- font-size: 18px;
- margin-bottom: 25px;
- text-align: center;
- height: 60px;
+ font-size: 18px;
+ margin-bottom: 25px;
+ text-align: center;
+ height: 60px;
}
.works-section {
- padding: 2rem 0;
+ padding: 2rem 0;
}
.works-section .platform-head {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 32px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-bottom: 32px;
}
.primary-investment .opportunities {
- display: flex;
+ display: flex;
}
.opportunities .primary-cards {
- width: 70%;
+ width: 70%;
}
.opportunities .primary-tabs {
- width: 30%;
+ width: 30%;
}
.opportunities .parimay-card {
- grid-gap: 22px;
+ grid-gap: 22px;
}
.asked-faq {
- background-color:#EFEAE5;
+ background-color: #efeae5;
}
.faqs-content .accordion-item {
- margin-top: 20px;
- padding: 8px 8px;
- box-shadow: 0px 1px 5px #0003;
+ margin-top: 20px;
+ padding: 8px 8px;
+ box-shadow: 0px 1px 5px #0003;
}
-.faqs-content .dropdown button {
- background-color: #1B243D;
- color: #fff;
+.faqs-content .dropdown button {
+ background-color: #1b243d;
+ color: #fff;
}
.faqs-content {
- padding: 4rem 0;
- width: 65%;
- margin: 0 auto;
+ padding: 4rem 0;
+ width: 65%;
+ margin: 0 auto;
}
-.faqs-content .dropdown .dropdown-menu {
- height: 240px;
- overflow-y: scroll;
+.faqs-content .dropdown .dropdown-menu {
+ height: 240px;
+ overflow-y: scroll;
}
-.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
- background: #aba9a3;
- border-radius: 5px;
+.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
+ background: #aba9a3;
+ border-radius: 5px;
}
-.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar-track {
- border-radius: 5px;
+.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar-track {
+ border-radius: 5px;
}
-.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar {
- width: 5px;
- height: 50px;
+.faqs-content .dropdown .dropdown-menu::-webkit-scrollbar {
+ width: 5px;
+ height: 50px;
}
.recent-post-card h2 {
margin-bottom: 16px;
@@ -4051,38 +4036,38 @@ a.btn.btn-secondary.dropdown-toggle:active {
font-weight: bold;
}
.posts-cards {
- display: grid;
- grid-template-columns: repeat(4, 4fr);
- grid-gap: 28px;
+ display: grid;
+ grid-template-columns: repeat(4, 4fr);
+ grid-gap: 28px;
}
.cards .insight-cards {
- display: grid;
- grid-template-columns: repeat(3, 3fr);
- grid-gap: 42px;
+ display: grid;
+ grid-template-columns: repeat(3, 3fr);
+ grid-gap: 42px;
}
.login-form input.form-control::placeholder {
- color: #ffffff6b;
+ color: #ffffff6b;
}
.error {
- color: #ff0d0d !important;
+ color: #ff0d0d !important;
}
.contact-form button.submit-btn {
- background-color: #c18948;
- border: none;
- margin-top: 17px;
- padding: 9px 28px;
- border-radius: 5px;
- font-weight: 600;
+ background-color: #c18948;
+ border: none;
+ margin-top: 17px;
+ padding: 9px 28px;
+ border-radius: 5px;
+ font-weight: 600;
}
.investor-profile .invest-form {
- background-color: #EFEAE5;
- padding: 2rem 0;
+ background-color: #efeae5;
+ padding: 2rem 0;
}
.kyc .accounts {
- background-color: #EFEAE5;
+ background-color: #efeae5;
}
.form-tab.dashboard-form {
- background-color:#EFEAE5;
+ background-color: #efeae5;
}
.faqs-content select {
background: #fff;
@@ -4091,97 +4076,101 @@ a.btn.btn-secondary.dropdown-toggle:active {
border-radius: 5px;
}
.parimay-card .assets-card a {
- color: #000;
+ color: #000;
}
.parimay-card .card-logo.bg-green {
- background-color: #0b363c;
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
+ background-color: #0b363c;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
}
.parimay-card .card-logo.bg-green img {
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
}
.investment .dropdown-tooltip .dropdown-menu.show {
- width: 290px;
+ width: 290px;
}
.assets-card .card-logo.bg-darkblue {
- background-color: #1a042f;
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
+ background-color: #1a042f;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
}
.assets-card .card-logo.bg-plp {
- background-color: #48104a;
- border-top-left-radius: 14px;
- border-top-right-radius: 20px;
+ background-color: #48104a;
+ border-top-left-radius: 14px;
+ border-top-right-radius: 20px;
}
.assets-card .bg-images img {
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
- max-width: 100%;
+ border-top-left-radius: 20px;
+ border-top-right-radius: 20px;
+ max-width: 100%;
}
.dummy-card {
- background-color: #D9D9D9;
- padding: 30px 20px;
- border-radius: 12px;
- margin-top: 3rem;
+ background-color: #d9d9d9;
+ padding: 30px 20px;
+ border-radius: 12px;
+ margin-top: 3rem;
}
.dummy-card h4 {
- font-size: 20px;
- line-height: 30px;
+ font-size: 20px;
+ line-height: 30px;
}
.menubar .admin-profile .dropdown-menu {
- background-color: #fff;
- width: inherit;
- padding: 6px 0;
- border-radius: 5px;
- box-shadow: -1px 0px 8px #0000004f;
- top: 7px !important;
+ background-color: #fff;
+ width: inherit;
+ padding: 6px 0;
+ border-radius: 5px;
+ box-shadow: -1px 0px 8px #0000004f;
+ top: 7px !important;
}
.menubar .admin-profile .dropdown-menu .dropdown-item {
- padding: 7px 20px 7px 12px;
- font-size: 16px;
+ padding: 7px 20px 7px 12px;
+ font-size: 16px;
}
.admin-profile .dropdown .dropdown-item img {
- margin-right: 5px;
+ margin-right: 5px;
}
.notification-drop .item-noti img {
- filter: brightness(0.5) invert(1);
- height: 22px;
- width: 22px;
+ filter: brightness(0.5) invert(1);
+ height: 22px;
+ width: 22px;
}
.menubar li.admin-profile {
- display: flex;
+ display: flex;
}
.admin-profile .dropdown .dropdown-toggle::after {
- margin: 2px;
- top: 6px !important;
- color: #fff;
- position: relative;
+ margin: 2px;
+ top: 6px !important;
+ color: #fff;
+ position: relative;
}
-.primary-offer-one .sec-img img,.primary-offer-two .sec-img img {
- width: 100%;
+.primary-offer-one .sec-img img,
+.primary-offer-two .sec-img img {
+ width: 100%;
}
-.primary-offer-one h2,.primary-offer-two h2 {
- font-size: 30px;
- font-weight: 600;
- margin-bottom: 20px;
+.primary-offer-one h2,
+.primary-offer-two h2 {
+ font-size: 30px;
+ font-weight: 600;
+ margin-bottom: 20px;
}
-.primary-offer-one ul li,.primary-offer-two ul li {
- color: #C18948;
- line-height: 32px;
+.primary-offer-one ul li,
+.primary-offer-two ul li {
+ color: #c18948;
+ line-height: 32px;
}
-.primary-offer-one ul,.primary-offer-two ul {
- margin-bottom: 35px;
- margin-top: 20px;
+.primary-offer-one ul,
+.primary-offer-two ul {
+ margin-bottom: 35px;
+ margin-top: 20px;
}
.primary-offer-one {
- background-color: #edd9c2;
- padding: 3rem 0;
+ background-color: #edd9c2;
+ padding: 3rem 0;
}
.primary-offer-two {
- background-color: #EEE9E4;
- padding: 3rem 0;
+ background-color: #eee9e4;
+ padding: 3rem 0;
}
/*#masthead.back {*/
/* position: fixed;*/
@@ -4189,12 +4178,11 @@ a.btn.btn-secondary.dropdown-toggle:active {
/* width: 100%;*/
/* top: 0px;*/
/* left: 0px;*/
- /*background: #fff;*/
+/*background: #fff;*/
/* box-shadow: 0px 0px 10px #ccc;*/
/* animation: animate forwards 1s;*/
/*}*/
-
/*@keyframes animate{*/
/* 0%{*/
/* top:-100px; */
@@ -4204,1282 +4192,1273 @@ a.btn.btn-secondary.dropdown-toggle:active {
/* }*/
/*}*/
-
.insights-card .platform-head {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 32px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-bottom: 32px;
}
.insights-card .heading-logo {
- background-color: #1B243D;
- padding: 10px;
- margin-right: 10px;
+ background-color: #1b243d;
+ padding: 10px;
+ margin-right: 10px;
}
.dics.before_login {
- filter: blur(4px);
- opacity: 0.5;
+ filter: blur(4px);
+ opacity: 0.5;
}
.your-investment p br {
- display: none;
+ display: none;
}
.your-investment p {
- text-align: justify;
+ text-align: justify;
}
.your-investment .assets-card .dics p {
- text-align: inherit;
+ text-align: inherit;
}
.your-investment .explore-cate .real-fund p {
- text-align: inherit;
+ text-align: inherit;
}
.menubar .active_page button.btns {
- border-bottom: 1px solid #C18948;
+ border-bottom: 1px solid #c18948;
}
.header-menu .menubar .active_page a {
- border-bottom: 1px solid #C18948;
- padding-bottom: 5px;
+ border-bottom: 1px solid #c18948;
+ padding-bottom: 5px;
}
.blog-container .detail .details-ctn {
- margin-bottom: 14px;
- margin-top: 15px;
+ margin-bottom: 14px;
+ margin-top: 15px;
}
.blog-container .detail img {
- object-fit: inherit;
+ object-fit: inherit;
}
.chat-sec .user-chat.chat-msgs {
- position: relative;
+ position: relative;
}
.chat-sec .user-chat .spinner-border {
- position: absolute;
- top: 48%;
- left: 49%;
- width: 45px;
- height: 45px;
+ position: absolute;
+ top: 48%;
+ left: 49%;
+ width: 45px;
+ height: 45px;
}
.investor-profile .invest-view-form .form-sec {
- width: 600px;
- background-color: #fff;
- padding: 30px;
- box-shadow: 1px 2px 9px #0000003b;
- border-radius: 8px;
+ width: 600px;
+ background-color: #fff;
+ padding: 30px;
+ box-shadow: 1px 2px 9px #0000003b;
+ border-radius: 8px;
}
.investor-profile .invest-view-form form {
- display: flex;
- justify-content: center;
+ display: flex;
+ justify-content: center;
}
.investor-profile .invest-view-form .form-sec input {
- background-color: #efeae5;
- border: none;
- padding-left: 15px;
+ background-color: #efeae5;
+ border: none;
+ padding-left: 15px;
}
.investor-profile .invest-view-form textarea {
- background-color: #efeae5;
- border: none;
- padding-left: 15px;
+ background-color: #efeae5;
+ border: none;
+ padding-left: 15px;
}
.investor-profile .profile-img {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
}
.investor-profile .profile-img img {
- width: 100px;
- border-radius: 50px;
+ width: 100px;
+ border-radius: 50px;
}
.investor-profile .form-sec p {
- font-size: 20px;
+ font-size: 20px;
}
.accounts .kyc-card {
- background-color: #fff;
- width: 390px;
- padding: 25px;
- border-radius: 7px;
- box-shadow: 2px 1px 5px #00000029;
+ background-color: #fff;
+ width: 390px;
+ padding: 25px;
+ border-radius: 7px;
+ box-shadow: 2px 1px 5px #00000029;
}
.kyc .acc-grid {
- display: flex;
- justify-content: center;
+ display: flex;
+ justify-content: center;
}
.insights-card .bi-search input#search {
- padding: 7px 12px;
- border: 1px solid #00000052;
- border-radius: 7px;
- margin-bottom: 30px;
+ padding: 7px 12px;
+ border: 1px solid #00000052;
+ border-radius: 7px;
+ margin-bottom: 30px;
}
.primary-investment .accordion-item .accordion-body {
- padding-left: 0;
+ padding-left: 0;
}
.Secondary .crds-ctn h2 {
- text-align: inherit;
- margin-bottom: 25px;
+ text-align: inherit;
+ margin-bottom: 25px;
}
.Secondary .crds-inner h2 {
- text-align: inherit;
- margin-bottom: 3px;
+ text-align: inherit;
+ margin-bottom: 3px;
}
.Secondary .crds-inner h3 {
- margin-bottom: 20px;
- font-size: 24px;
+ margin-bottom: 20px;
+ font-size: 24px;
}
.Secondary .card .crds-ctn {
- display: flex;
- flex-direction: column;
- justify-content: center;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
}
.Secondary .add-card {
- background-color: #fff;
- padding: 22px 31px;
- border-radius: 5px;
- box-shadow: 0px 1px 8px #00000057;
+ background-color: #fff;
+ padding: 22px 31px;
+ border-radius: 5px;
+ box-shadow: 0px 1px 8px #00000057;
}
.add-card .crds-ctn img {
- width: 130px;
- margin-bottom: 18px;
+ width: 130px;
+ margin-bottom: 18px;
}
.Secondary .crds-ctn img {
- width: 120px;
+ width: 120px;
}
.primary-investment .opportunities input {
- width: 20px;
- height: 18px;
- margin-right: 7px;
+ width: 20px;
+ height: 18px;
+ margin-right: 7px;
}
.primary-investment .inp-oppt {
- display: flex;
- align-items: center;
- margin-bottom: 5px;
+ display: flex;
+ align-items: center;
+ margin-bottom: 5px;
}
.pagination li.page-item.active {
- background-color: inherit !important;
- padding: 0;
- line-height: inherit;
+ background-color: inherit !important;
+ padding: 0;
+ line-height: inherit;
}
-.primary-investment .opportunities input[type=checkbox]:checked {
- background-color: #1B243D;
- opacity: 1;
+.primary-investment .opportunities input[type="checkbox"]:checked {
+ background-color: #1b243d;
+ opacity: 1;
}
-.primary-investment .opportunities input[type=checkbox] {
- position: relative;
- border: 2px solid #1B243D;
- border-radius: 2px;
- background: none;
- cursor: pointer;
- line-height: 0;
- margin: 0 0.6em 0 0;
- outline: 0;
- padding: 0 !important;
- vertical-align: text-top;
- height: 20px;
- width: 20px;
- -webkit-appearance: none;
- opacity: .5;
- display: flex;
+.primary-investment .opportunities input[type="checkbox"] {
+ position: relative;
+ border: 2px solid #1b243d;
+ border-radius: 2px;
+ background: none;
+ cursor: pointer;
+ line-height: 0;
+ margin: 0 0.6em 0 0;
+ outline: 0;
+ padding: 0 !important;
+ vertical-align: text-top;
+ height: 20px;
+ width: 20px;
+ -webkit-appearance: none;
+ opacity: 0.5;
+ display: flex;
}
-.primary-investment .opportunities input[type=checkbox]:checked:before {
- content: '';
- opacity: 1;
+.primary-investment .opportunities input[type="checkbox"]:checked:before {
+ content: "";
+ opacity: 1;
}
-.primary-investment .opportunities input[type=checkbox]:before {
- content: '';
- position: absolute;
- right: 55%;
- top: 50%;
- width: 4px;
- height: 10px;
- border: solid #FFF;
- border-width: 0 2px 2px 0;
- margin: -1px -1px 0 -1px;
- transform: rotate(45deg) translate(-50%, -50%);
- z-index: 2;
- opacity: 0;
+.primary-investment .opportunities input[type="checkbox"]:before {
+ content: "";
+ position: absolute;
+ right: 55%;
+ top: 50%;
+ width: 4px;
+ height: 10px;
+ border: solid #fff;
+ border-width: 0 2px 2px 0;
+ margin: -1px -1px 0 -1px;
+ transform: rotate(45deg) translate(-50%, -50%);
+ z-index: 2;
+ opacity: 0;
}
.categeory .tables i {
- margin-right: 8px;
+ margin-right: 8px;
}
.categeory .tables i {
- margin-right: 8px;
+ margin-right: 8px;
}
.swal2-center button.swal2-confirm.yellow-btn {
- border: none;
+ border: none;
}
.contact-form textarea:focus {
- outline: none;
-}
+ outline: none;
+}
.fractional-tabl .real-estate-table td {
- border: 1px solid #0000005e;
+ border: 1px solid #0000005e;
}
.fractional-tabl .real-estate-table th {
- border: 1px solid #0000005e;
+ border: 1px solid #0000005e;
}
-.founder{
- display: flex !important;
- background: rgb(255, 243, 228);
- padding: 10px;
- margin-top: -13px;
+.founder {
+ display: flex !important;
+ background: rgb(255, 243, 228);
+ padding: 10px;
+ margin-top: -13px;
}
-.founder-info{
- line-height: 1.7;
- font-size: 16.3px;
+.founder-info {
+ line-height: 1.7;
+ font-size: 16.3px;
}
-.founder h4{
- font-weight: 700;
- font-style: normal;
- color: rgb(193, 137, 72);
- text-decoration: none;
+.founder h4 {
+ font-weight: 700;
+ font-style: normal;
+ color: rgb(193, 137, 72);
+ text-decoration: none;
}
-.team p{
- font-weight: 400;
- font-style: normal;
- color: rgb(168, 135, 88);
- text-decoration: none;
- text-align: right;
+.team p {
+ font-weight: 400;
+ font-style: normal;
+ color: rgb(168, 135, 88);
+ text-decoration: none;
+ text-align: right;
}
/*.accordion-header .accordion-button:not(.collapsed)::after {*/
/* transform: inherit;*/
/*}*/
-.admin-profile .dropdown-item:focus, .admin-profile .dropdown-item:hover {
- background-color: #C18948;
- color: #fff;
+.admin-profile .dropdown-item:focus,
+.admin-profile .dropdown-item:hover {
+ background-color: #c18948;
+ color: #fff;
}
span.start {
- color: #ef0000;
+ color: #ef0000;
+}
+.table-invest .categeory .tables {
+ margin-bottom: 20px;
}
-
/*======responsive=====*/
-
-@media (max-width:2560px){
-
+@media (max-width: 2560px) {
}
-@media (max-width:1920px){
-
+@media (max-width: 1920px) {
}
-@media (max-width:1800px){
-
+@media (max-width: 1800px) {
}
-@media (max-width:1600px){
-
-}
-@media (max-width:1440px){
-
+@media (max-width: 1600px) {
}
-@media (max-width:1366px){
-
+@media (max-width: 1440px) {
}
-@media (max-width:1280px){
- .main-banner .investor h6{
- height: 44px;
- display: flex;
- align-items: center;
- }
+@media (max-width: 1366px) {
+}
+@media (max-width: 1280px) {
+ .main-banner .investor h6 {
+ height: 44px;
+ display: flex;
+ align-items: center;
+ }
}
-@media (max-width:1229px){
- .platform-card .work-content h4 {
- height: 72px;
- }
- .opportunities .parimay-card {
- grid-gap: 50px;
- grid-template-columns: repeat(2, 2fr);
- }
+@media (max-width: 1229px) {
+ .platform-card .work-content h4 {
+ height: 72px;
+ }
+ .opportunities .parimay-card {
+ grid-gap: 50px;
+ grid-template-columns: repeat(2, 2fr);
+ }
}
-@media (max-width:1200px){
- .platform-card .work-content h4 {
- height: 72px;
- }
- .opportunities .parimay-card {
- grid-gap: 50px;
- grid-template-columns: repeat(2, 2fr);
- }
+@media (max-width: 1200px) {
+ .platform-card .work-content h4 {
+ height: 72px;
+ }
+ .opportunities .parimay-card {
+ grid-gap: 50px;
+ grid-template-columns: repeat(2, 2fr);
+ }
}
-@media (max-width:1080px){
- .opportunities .parimay-card {
- grid-template-columns: repeat(2, 2fr);
- grid-gap: 28px;
- }
- .works-section-inner {
- grid-gap: 28px;
- }
- .opportunities .primary-tabs {
- width: 35%;
- }
- .opportunities .primary-cards {
- width: 65%;
- }
- .banner-text-contain button{
- margin-bottom: 8px;
- margin-top: 0px;
- }
- .Distressed-Funds{
- height: 400px;
- }
- .banner-text-contain p br {
- display: none;
- }
- .investor-profile .invest-view-form .form-sec{
- width: 500px;
- }
+@media (max-width: 1080px) {
+ .opportunities .parimay-card {
+ grid-template-columns: repeat(2, 2fr);
+ grid-gap: 28px;
+ }
+ .works-section-inner {
+ grid-gap: 28px;
+ }
+ .opportunities .primary-tabs {
+ width: 35%;
+ }
+ .opportunities .primary-cards {
+ width: 65%;
+ }
+ .banner-text-contain button {
+ margin-bottom: 8px;
+ margin-top: 0px;
+ }
+ .Distressed-Funds {
+ height: 400px;
+ }
+ .banner-text-contain p br {
+ display: none;
+ }
+ .investor-profile .invest-view-form .form-sec {
+ width: 500px;
+ }
}
-@media (max-width:1024px){
- .notification-drop .item-noti .notification{
- left: -268px;
- }
- .parimay-card{
- grid-gap: 45px;
- }
- .main-banner .banner-left-content{
- width: 100%;
- }
- .works-section .cards-info{
- height: 142px;
- }
- .faqs-content {
- width: 90%;
- }
- .your-investment div p br {
- display: none;
- }
- .drivers .drive-label ul{
- height: 80px;
- }
- .banner-text-contain h4 br {
- display: none;
- }
- .inner-contain .create-account .col-md-5 {
- width: 100%;
- }
- .inner-contain .create-account .col-md-7 {
- width: 100%;
- }
- .create-account button{
- margin-bottom: 20px;
- height: 44px;
- }
- .create-account h3 {
- text-align: center;
- }
- .create-account p {
- margin-bottom: 8px;
- text-align: center;
- }
+@media (max-width: 1024px) {
+ .notification-drop .item-noti .notification {
+ left: -268px;
+ }
+ .parimay-card {
+ grid-gap: 45px;
+ }
+ .main-banner .banner-left-content {
+ width: 100%;
+ }
+ .works-section .cards-info {
+ height: 142px;
+ }
+ .faqs-content {
+ width: 90%;
+ }
+ .your-investment div p br {
+ display: none;
+ }
+ .drivers .drive-label ul {
+ height: 80px;
+ }
+ .banner-text-contain h4 br {
+ display: none;
+ }
+ .inner-contain .create-account .col-md-5 {
+ width: 100%;
+ }
+ .inner-contain .create-account .col-md-7 {
+ width: 100%;
+ }
+ .create-account button {
+ margin-bottom: 20px;
+ height: 44px;
+ }
+ .create-account h3 {
+ text-align: center;
+ }
+ .create-account p {
+ margin-bottom: 8px;
+ text-align: center;
+ }
}
-@media (max-width:990px){
- .header-menu .page .navbar-toggler-icon img {
- width: 35px;
- background-color: #c18948;
- border-radius: 2px;
- border: none;
- padding: 3px;
- }
- .page button.navbar-toggler {
- position: absolute;
- right: 70px;
- top: 32px;
- }
- div#navbarNavDarkDropdown {
- position: absolute;
- width: 100vw;
- left: 0;
- background-color: #ffff;
- height: 100vh;
- z-index: 9;
- top: 98px;
- padding: 30px;
- }
- .header-menu .page ul.navbar-nav {
- display: block;
- }
- .menubar .dropdown button.btns {
- padding: 0;
- }
- .page .navbar-nav li {
- margin-bottom: 18px;
- }
- .page .navbar-nav li.login-btn {
- margin-top: 25px;
- }
- .navbar-nav .dropdown .dropdown-menu .row {
- display: block;
- }
- .navbar-nav .dropdown .dropdown-menu .col-md-4{
- width: 100%;
- }
- .navbar-nav .dropdown .border-left {
- width: 100%;
- height: 0;
- margin: 30px 0;
- border: 1px solid #00000094;
- }
- .dropdown-menu .prd-sec {
- display: block;
- }
- .menubar .left-prdt .product {
- padding-left: 0;
- }
- .menubar .dropdown-menu {
- top: 3px !important;
- padding: 20px 0 20px 0;
- }
- .menubar .dropdown .border-left:after {
- bottom: -5px;
- right: -11px;
- border: 2px solid #00000094;
- left: inherit;
- }
- .menubar .dropdown .border-left:before {
- top: -5px;
- left: -9px;
- border: 2px solid #00000094;
- }
- .why-jericho .bluebr-circle h2{
- font-size: 18px;
- }
- .why-jericho .bluebr-circle{
- width: 75px;
- height: 75px;
- }
- .why-jericho .bluebr-txt h3{
- font-size: 16px;
- }
- .alternative p br {
- display: none;
- }
- .parimay-card{
- grid-gap: 45px;
- grid-template-columns: repeat(2, 3fr);
- }
- .explore-assets .card-container .col-md-6 {
- width: 100%;
- }
- .banner-text-contain h2{
- font-size: 32px;
- }
- .banner-text-contain h4 {
- font-size: 16px;
- }
- .banner-text-contain br {
- display: none;
- }
- .banner-profile p{
- font-size: 14px;
- }
- .banner-profile{
- width: 100%;
- }
- .banner-profile .profile img {
- width: 64px;
- margin-right: 10px;
- }
- .banner-text-contain p {
- font-size: 16px;
- }
- .your-investment .structure img{
- height: auto;
- width: 100%;
- }
- .your-investment h3 {
- font-size: 20px;
- }
- h2.inner-heading {
- font-size: 22px;
- }
- .categories-card{
- grid-template-columns: repeat(2, 2fr);
- }
- .checkbox-sec{
- grid-template-columns: repeat(2, 2fr);
- }
- .checkbox-sec {
- grid-template-columns: repeat(2, 2fr);
- }
- .Secondary .sec-btn {
- margin-top: 17px;
- display: block;
- margin-bottom: 24px;
- }
- .Secondary .sec-btn p {
- margin-bottom: 22px;
- }
- .active-investment p br {
- display: none;
- }
- .faqs-content{
- width: 100%;
- padding: 3rem 0;
- }
- .main-footer .col-md-4 {
- width: 50%;
- }
- .your-investment .explore-cate .tab-content .col-md-6 {
- width: 100%;
- }
- .invest-card h4{
- font-size: 20px;
- }
- .invest-card .card-img img{
- height: 110px;
- }
- .invest-card p {
- font-size: 16px;
- }
- .investment h2{
- font-size: 28px;
- }
- .private-credit-banner{
- height: auto;
- padding: 2rem 0;
- }
- .posts-cards {
- grid-template-columns: repeat(2, 4fr);
- }
- .cards .insight-cards{
- grid-template-columns: repeat(2, 3fr);
- }
- .Long-Equity-Funds-banner{
- height: 428px;
- }
- .drivers .blue-boxx{
- height: 150px;
- }
- .drivers .drive-label ul{
- height: 128px;
- }
- .invest-card .disc p.per{
- padding: 0px 15px;
- }
- .login-form{
- margin: 30px 0 0 0 !important;
- }
- .custom-height-form {
- height: auto;
- }
- .login .nav-pills a{
- font-size: 15px;
- }
- .login li a{
- width: 100px;
- }
- .login-form-otp {
- margin: 30px 0 0 0;
- }
-
- .login-form-otp .otp-field input[type="text"]{
- height: 25px;
- width: 53px;
- }
-
- .login-form-otp h2{
- margin-bottom: 15px;
- }
-
- .login-form-otp h3{
- margin-bottom: 8px;
- }
-
- .login-form-otp p{
- margin-bottom: 15px;
- }
- .pip-fund img {
- width: 100%;
- }
- .pipe-funds {
- height: auto;
- padding: 2rem 0;
- }
- .contact-sec .blue-box .col-md-5 {
- width: 100%;
- }
- .contact-sec .blue-box .col-md-7 {
- width: 100%;
- }
- .inner-banner-about{
- height: auto;
- padding: 3rem 0;
- }
+@media (max-width: 990px) {
+ .header-menu .page .navbar-toggler-icon img {
+ width: 35px;
+ background-color: #c18948;
+ border-radius: 2px;
+ border: none;
+ padding: 3px;
+ }
+ .page button.navbar-toggler {
+ position: absolute;
+ right: 70px;
+ top: 32px;
+ }
+ div#navbarNavDarkDropdown {
+ position: absolute;
+ width: 100vw;
+ left: 0;
+ background-color: #ffff;
+ height: 100vh;
+ z-index: 9;
+ top: 98px;
+ padding: 30px;
+ }
+ .header-menu .page ul.navbar-nav {
+ display: block;
+ }
+ .menubar .dropdown button.btns {
+ padding: 0;
+ }
+ .page .navbar-nav li {
+ margin-bottom: 18px;
+ }
+ .page .navbar-nav li.login-btn {
+ margin-top: 25px;
+ }
+ .navbar-nav .dropdown .dropdown-menu .row {
+ display: block;
+ }
+ .navbar-nav .dropdown .dropdown-menu .col-md-4 {
+ width: 100%;
+ }
+ .navbar-nav .dropdown .border-left {
+ width: 100%;
+ height: 0;
+ margin: 30px 0;
+ border: 1px solid #00000094;
+ }
+ .dropdown-menu .prd-sec {
+ display: block;
+ }
+ .menubar .left-prdt .product {
+ padding-left: 0;
+ }
+ .menubar .dropdown-menu {
+ top: 3px !important;
+ padding: 20px 0 20px 0;
+ }
+ .menubar .dropdown .border-left:after {
+ bottom: -5px;
+ right: -11px;
+ border: 2px solid #00000094;
+ left: inherit;
+ }
+ .menubar .dropdown .border-left:before {
+ top: -5px;
+ left: -9px;
+ border: 2px solid #00000094;
+ }
+ .why-jericho .bluebr-circle h2 {
+ font-size: 18px;
+ }
+ .why-jericho .bluebr-circle {
+ width: 75px;
+ height: 75px;
+ }
+ .why-jericho .bluebr-txt h3 {
+ font-size: 16px;
+ }
+ .alternative p br {
+ display: none;
+ }
+ .parimay-card {
+ grid-gap: 45px;
+ grid-template-columns: repeat(2, 3fr);
+ }
+ .explore-assets .card-container .col-md-6 {
+ width: 100%;
+ }
+ .banner-text-contain h2 {
+ font-size: 32px;
+ }
+ .banner-text-contain h4 {
+ font-size: 16px;
+ }
+ .banner-text-contain br {
+ display: none;
+ }
+ .banner-profile p {
+ font-size: 14px;
+ }
+ .banner-profile {
+ width: 100%;
+ }
+ .banner-profile .profile img {
+ width: 64px;
+ margin-right: 10px;
+ }
+ .banner-text-contain p {
+ font-size: 16px;
+ }
+ .your-investment .structure img {
+ height: auto;
+ width: 100%;
+ }
+ .your-investment h3 {
+ font-size: 20px;
+ }
+ h2.inner-heading {
+ font-size: 22px;
+ }
+ .categories-card {
+ grid-template-columns: repeat(2, 2fr);
+ }
+ .checkbox-sec {
+ grid-template-columns: repeat(2, 2fr);
+ }
+ .checkbox-sec {
+ grid-template-columns: repeat(2, 2fr);
+ }
+ .Secondary .sec-btn {
+ margin-top: 17px;
+ display: block;
+ margin-bottom: 24px;
+ }
+ .Secondary .sec-btn p {
+ margin-bottom: 22px;
+ }
+ .active-investment p br {
+ display: none;
+ }
+ .faqs-content {
+ width: 100%;
+ padding: 3rem 0;
+ }
+ .main-footer .col-md-4 {
+ width: 50%;
+ }
+ .your-investment .explore-cate .tab-content .col-md-6 {
+ width: 100%;
+ }
+ .invest-card h4 {
+ font-size: 20px;
+ }
+ .invest-card .card-img img {
+ height: 110px;
+ }
+ .invest-card p {
+ font-size: 16px;
+ }
+ .investment h2 {
+ font-size: 28px;
+ }
+ .private-credit-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .posts-cards {
+ grid-template-columns: repeat(2, 4fr);
+ }
+ .cards .insight-cards {
+ grid-template-columns: repeat(2, 3fr);
+ }
+ .Long-Equity-Funds-banner {
+ height: 428px;
+ }
+ .drivers .blue-boxx {
+ height: 150px;
+ }
+ .drivers .drive-label ul {
+ height: 128px;
+ }
+ .invest-card .disc p.per {
+ padding: 0px 15px;
+ }
+ .login-form {
+ margin: 30px 0 0 0 !important;
+ }
+ .custom-height-form {
+ height: auto;
+ }
+ .login .nav-pills a {
+ font-size: 15px;
+ }
+ .login li a {
+ width: 100px;
+ }
+ .login-form-otp {
+ margin: 30px 0 0 0;
+ }
+
+ .login-form-otp .otp-field input[type="text"] {
+ height: 25px;
+ width: 53px;
+ }
+
+ .login-form-otp h2 {
+ margin-bottom: 15px;
+ }
+
+ .login-form-otp h3 {
+ margin-bottom: 8px;
+ }
+
+ .login-form-otp p {
+ margin-bottom: 15px;
+ }
+ .pip-fund img {
+ width: 100%;
+ }
+ .pipe-funds {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .contact-sec .blue-box .col-md-5 {
+ width: 100%;
+ }
+ .contact-sec .blue-box .col-md-7 {
+ width: 100%;
+ }
+ .inner-banner-about {
+ height: auto;
+ padding: 3rem 0;
+ }
}
-@media (max-width:768px){
- .main-banner .investor h6{
- font-size: 16px;
- }
- .main-banner .banner-card p {
- font-size: 14px;
- margin-bottom: 0;
- }
- .main-banner .banner-card{
- padding: 13px 13px;
- }
- .main-banner .wealth li{
- font-size: 16px;
- }
- .home-banner-sell .home-banner-btn {
- display: block;
- }
- .home-banner-sell .home-banner-btn {
- display: flex;
- gap: 9px;
- margin-top: 30px;
- }
- .main-head .home-banner-btn {
- display: none;
- }
- .alter-assets h2{
- padding: 12px;
- margin-bottom: 30px;
- }
- .buy-assets a{
- font-size: 18px;
- }
- .sell-assets a{
- font-size: 18px;
- }
- .works-section-inner{
- grid-template-columns: repeat(3, 3fr);
- }
- .opportunities .primary-cards {
- width: 50%;
- }
- .opportunities .primary-tabs {
- width: 50%;
- }
- .opportunities .parimay-card {
- grid-template-columns: repeat(1, 1fr);
- }
- .private-funds-banner {
- height: auto;
- padding: 2rem 0;
- }
- .angel-funds-banner {
- height: auto;
- padding: 2rem 0;
- }
- .hedge-funds-banner {
- height: auto;
- padding: 2rem 0;
- }
- .industrial-estate-banner {
- height: auto;
- padding: 2rem 0;
- }
- .residential-estate-banner {
- height: auto;
- padding: 2rem 0;
- }
- .commercial-estate-banner {
- height: auto;
- padding: 2rem 0;
- }
- .global-hedge-funds {
- height: auto;
- padding: 2rem 0;
- }
- .your-investment h2.invest-fund{
- font-size: 32px;
- }
- .global-reits-banner {
- height: auto;
- padding: 2rem 0;
- }
- .exotic-etfs-banner {
- height: auto;
- padding: 2rem 0;
- }
-}
-@media (max-width:767px){
- .investor-profile .profile-img img{
- width: 70px;
- }
- .investor-profile .invest-view-form .form-sec{
- width: 100%;
- }
- .main-banner .investor h6 {
- height: auto;
- }
- .topbar .tobr a{
- font-size: 16px;
- }
- .tobr img{
- height: 20px;
- width: 20px;
- }
- .social-head a:nth-child(2) img {
- width: 28px;
- height: 27px;
- }
- .admin-profile .dropdown img{
- height: 24px;
- width: 24px;
- }
- .page button.navbar-toggler {
- right: 30px;
- top: 23px;
- }
- .header-menu .menubar{
- height: 82px;
- }
- .header-menu .menubar img {
- width: 65px;
- }
- .header-menu .topbar {
- height: 70px;
- }
- .topbar .social-head {
- display: flex;
- justify-content: space-between;
- }
- .social_icon {
- justify-content: space-around;
- }
- .main-banner h2{
- font-size: 32px;
- }
- .main-banner .wealth li {
- font-size: 14px;
- }
- .assets-btn {
- display: flex;
- flex-direction: inherit;
- gap: 12px;
- margin-bottom: 20px;
- }
- .main-banner .bridge-img {
- padding: 0;
- }
- .main-banner .bridge-img img {
- height: 400px;
- object-fit: cover;
- }
- .why-jericho .blue-bar {
- height: auto;
- padding: 25px;
- }
- .why-jericho .bluebr {
- margin-bottom: 12px;
- }
- .why-jericho .bluebr-txt h3 {
- font-size: 14px;
- }
- .why-jericho .bluebr-circle h2 {
- font-size: 16px;
- }
- .alternative h2{
- font-size: 18px;
- }
- .alternative p {
- font-size: 22px;
- }
- .alternative li {
- line-height: 29px;
- font-size: 16px;
- }
- .alternative img {
- width: 100%;
- height: auto;
- }
- .alternative .dropdown-tooltip {
- margin-top: 38px;
- }
- .alter-assets h2{
- font-size: 18px;
- padding: 11px;
- margin-bottom: 12px;
- }
- .popular-assets{
- padding: 3rem 0;
- }
- .parimay-card {
- grid-gap: 26px;
- grid-template-columns: repeat(1, 1fr);
- }
- h4.inner-title {
- font-size: 20px;
- }
- .bg-brown-head h3{
- font-size: 28px;
- }
- .explore-assets h4{
- font-size: 22px;
- }
- .explore-assets .active, .primary-investment .active{
- font-size: 16px;
- }
- .explore-assets .inactive, .primary-investment .inactive{
- font-size: 16px;
- }
- .card-container .card-info{
- padding:6px 17px;
- margin-bottom: 14px;
- }
- .card-container p {
- font-size: 14px;
- }
- .explore-assets{
- padding: 3rem 0;
- }
- div#navbarNavDarkDropdown{
- top: 80px;
- }
- .main-footer .icons {
- margin-bottom: 40px;
- }
- .main-footer h2 {
- margin-bottom: 16px;
- }
- .header-menu .page .dropdown button img {
- width: 12px;
- }
- .about-inner-contain img {
- margin-bottom: 25px;
- }
- .inner-banner .banner-content img {
- width: 110px;
- margin-left: 30px;
- }
- .inner-banner .banner-content p br {
- display: none;
- }
- .about-inner-contain{
- padding-top: 3rem;
- }
- .faqs-content {
- padding: 3rem 0;
- width: 100%;
- }
- .faq-ctn2 .blue-card {
- margin-bottom: 20px;
- }
- .privacy-content p {
- font-size: 14px;
- }
- .privacy-content h2 {
- font-size: 18px;
- margin: 27px 0 12px;
- }
- .insights-banner h2 {
- font-size: 34px;
- }
- .insights-banner p {
- font-size: 18px;
- }
- .insight-card p {
- font-size: 14px;
- }
- .insight-card {
- padding: 0px;
- }
- .insights-card h3 {
- margin-bottom: 12px;
- font-size: 24px;
- }
- .recent-post .detail {
- justify-content: inherit;
- }
- .works-section .primary-trans {
- margin-bottom: 25px;
- }
- .works-section p {
- font-size: 14px;
- }
- .works-section .cards-info p {
- font-size: 14px;
- }
- .privacy-content h1 {
- font-size: 28px;
- margin-bottom: 20px;
- }
- .privacy-content ul li {
- font-size: 14px;
- }
- .contact-sec .crd23 {
- margin-bottom: 20px;
- }
- .blue-box{
- padding: 30px 18px;
- }
- .blue-box .right h3 {
- font-size: 28px;
- margin-bottom: 20px;
- }
- .blue-box .right h4{
- font-size: 20px;
- margin-bottom: 18px;
- }
- .chat-content{
- width: 100%;
- }
- .notification-drop .item-noti .notification {
- left: -145px;
- width: 368px;
- }
- .banner-text-contain h2{
- font-size: 28px;
- }
- .banner-text-contain p{
- font-size: 15px;
- }
- .banner-profile .profile img {
- width: 55px;
- margin-right: 9px;
- }
- .banner-text-contain {
- margin-bottom: 22px;
- }
- .banner-text-contain p br {
- display: none;
- }
- .inner-banner-funds{
- height: 435px;
- }
- .your-investment h2.invest-fund {
- font-size: 30px;
- margin-bottom: 22px;
- }
- .your-investment p {
- font-size: 14px;
- }
- .your-investment h3 {
- font-size: 20px;
- }
- .your-investment .structure img {
- height: auto;
- width: 100%;
- }
- .your-investment h3 {
- font-size: 18px;
- }
- .your-investment li {
- font-size: 14px;
- }
- h2.inner-heading {
- font-size: 20px;
- font-weight: 500;
- }
- .categories h2{
- font-size: 22px;
- }
- .your-investment {
- padding: 2rem 0;
- }
- .categories-card {
- grid-template-columns: repeat(1, 1fr);
- }
- .cate-card img {
- width: 102px;
- }
- .categories-card .cate-card h4{
- font-size: 18px;
- }
- .cate-card .btn a{
- padding: 10px 22px;
- font-size: 14px;
- }
- .taxation tbody tr th{
- font-size: 14px;
- }
- .taxation tbody tr td{
- font-size: 14px;
- }
- .table-cate {
- overflow-x: scroll;
- }
- .inner-banner h2 {
- font-size: 30px;
- }
- .inner-banner .banner-content h4{
- font-size: 16px;
- }
- .inner-banner p{
- font-size: 16px;
- }
- .inner-contain .empanel-cont li {
- font-size: 14px;
- }
- .inner-contain .create-account{
- margin-top: 30px;
- }
- .create-account button {
- height: 44px;
- margin-top: 4px;
- margin-bottom: 24px;
- }
- .inner-contain .empanel-cont{
- padding-right: 0px;
- list-style: none;
- margin-bottom: 0;
- }
- .banner-left-content .home-banner-btn{
- position: inherit;
- margin-bottom: 24px;
- }
- .privacy-content {
- padding: 15px 0;
- }
- .works-section .Primary-tran {
- margin-bottom: 20px;
- }
- .works-section .Primary-tran p{
- height: inherit;
- }
- .works-section .cards-info {
- height: inherit;
- }
- .divider:before{
- content:inherit;
- }
- .works-section-inner hr {
- border: none;
- margin: 0;
- }
- .checkbox-sec {
- grid-gap: 27px;
- }
- .Secondary .sec-btn{
- display: flex;
- }
- .sec-btn a.blue-btn {
- padding: 10px 10px;
- margin: 0 2px;
- font-size: 15px;
- }
- .Secondary .sec-btn p {
- margin-bottom: 0;
- }
- .chksb p {
- font-size: 16px;
- }
- .investor-profile .invest-form a {
- padding: 8px 16px;
- border-radius: 5px;
- }
- .investor-profile .invest-form .ip-header.container {
- padding: 30px 0px;
- }
- .investor-profile .invest-form form {
- padding: 30px 0;
- }
- .security-form {
- width: 100%;
- }
- .security-form h2{
- margin-bottom: 15px;
- }
- .security-form .security-text{
- margin-bottom: 20px;
- }
- .works-section-inner {
- grid-template-columns: repeat(1, 1fr);
- }
- .platform-card .work-images{
- padding: 22px 15px;
- }
- .platform-card .work-content h4 {
- margin-bottom: 14px;
- }
- .primary-investment .opportunities {
- display: block;
- }
- .opportunities .primary-cards {
- width: 100%;
- }
- .opportunities .primary-tabs {
- width: 100%;
- }
- .opportunities .parimay-card {
- grid-gap: 26px;
- }
- .primary-investment .page-heading{
- font-size: 28px;
- }
- .page-desc br {
- display: none;
- }
- .primary-investment .page-desc {
- font-size: 18px;
- margin-bottom: 20px;
- }
- .main-footer .col-md-4 {
- width: 100%;
- }
- .main-footer .logo img {
- width: 100px;
- }
- .categories-card{
- grid-gap: 30px;
- }
- .Distressed-Funds {
- height: auto;
- padding: 2rem 0;
- }
- .investment .invest-card{
- margin-bottom: 20px;
- }
- .invest-card .card-img img {
- height: 150px;
- }
- .your-investment .dist-fund img {
- margin-bottom: 20px;
- }
- .cards .insight-cards{
- grid-template-columns: repeat(1, 3fr);
- }
- .posts-cards {
- grid-template-columns: repeat(1, 4fr);
- }
- .insights-card h3{
- font-size: 22px;
- }
- .real-estate-table {
- overflow-x: scroll;
- }
- .realstate-graph img {
- margin-bottom: 10px;
- }
- .fractional-banner {
- height: auto;
- padding: 2rem 0;
- }
- .insights-banner{
- height: 150px;
- }
- .insights-banner h2{
- font-size: 35px;
- }
- .insights-banner p{
- font-size: 18px;
- }
- .Long-Equity-Funds-banner {
- padding: 2rem 0;
- height: auto;
- }
- .infrastructure-funds {
- height: auto;
- padding: 2rem 0;
- }
- .venture-funds {
- height: auto;
- padding: 2rem 0;
- }
- .insights-card .cards {
- margin-bottom: 2rem;
- }
+@media (max-width: 768px) {
+ .main-banner .investor h6 {
+ font-size: 16px;
+ }
+ .main-banner .banner-card p {
+ font-size: 14px;
+ margin-bottom: 0;
+ }
+ .main-banner .banner-card {
+ padding: 13px 13px;
+ }
+ .main-banner .wealth li {
+ font-size: 16px;
+ }
+ .home-banner-sell .home-banner-btn {
+ display: block;
+ }
+ .home-banner-sell .home-banner-btn {
+ display: flex;
+ gap: 9px;
+ margin-top: 30px;
+ }
+ .main-head .home-banner-btn {
+ display: none;
+ }
+ .alter-assets h2 {
+ padding: 12px;
+ margin-bottom: 30px;
+ }
+ .buy-assets a {
+ font-size: 18px;
+ }
+ .sell-assets a {
+ font-size: 18px;
+ }
+ .works-section-inner {
+ grid-template-columns: repeat(3, 3fr);
+ }
+ .opportunities .primary-cards {
+ width: 50%;
+ }
+ .opportunities .primary-tabs {
+ width: 50%;
+ }
+ .opportunities .parimay-card {
+ grid-template-columns: repeat(1, 1fr);
+ }
+ .private-funds-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .angel-funds-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .hedge-funds-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .industrial-estate-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .residential-estate-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .commercial-estate-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .global-hedge-funds {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .your-investment h2.invest-fund {
+ font-size: 32px;
+ }
+ .global-reits-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .exotic-etfs-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+}
+@media (max-width: 767px) {
+ .investor-profile .profile-img img {
+ width: 70px;
+ }
+ .investor-profile .invest-view-form .form-sec {
+ width: 100%;
+ }
+ .main-banner .investor h6 {
+ height: auto;
+ }
+ .topbar .tobr a {
+ font-size: 16px;
+ }
+ .tobr img {
+ height: 20px;
+ width: 20px;
+ }
+ .social-head a:nth-child(2) img {
+ width: 28px;
+ height: 27px;
+ }
+ .admin-profile .dropdown img {
+ height: 24px;
+ width: 24px;
+ }
+ .page button.navbar-toggler {
+ right: 30px;
+ top: 23px;
+ }
+ .header-menu .menubar {
+ height: 82px;
+ }
+ .header-menu .menubar img {
+ width: 65px;
+ }
+ .header-menu .topbar {
+ height: 70px;
+ }
+ .topbar .social-head {
+ display: flex;
+ justify-content: space-between;
+ }
+ .social_icon {
+ justify-content: space-around;
+ }
+ .main-banner h2 {
+ font-size: 32px;
+ }
+ .main-banner .wealth li {
+ font-size: 14px;
+ }
+ .assets-btn {
+ display: flex;
+ flex-direction: inherit;
+ gap: 12px;
+ margin-bottom: 20px;
+ }
+ .main-banner .bridge-img {
+ padding: 0;
+ }
+ .main-banner .bridge-img img {
+ height: 400px;
+ object-fit: cover;
+ }
+ .why-jericho .blue-bar {
+ height: auto;
+ padding: 25px;
+ }
+ .why-jericho .bluebr {
+ margin-bottom: 12px;
+ }
+ .why-jericho .bluebr-txt h3 {
+ font-size: 14px;
+ }
+ .why-jericho .bluebr-circle h2 {
+ font-size: 16px;
+ }
+ .alternative h2 {
+ font-size: 18px;
+ }
+ .alternative p {
+ font-size: 22px;
+ }
+ .alternative li {
+ line-height: 29px;
+ font-size: 16px;
+ }
+ .alternative img {
+ width: 100%;
+ height: auto;
+ }
+ .alternative .dropdown-tooltip {
+ margin-top: 38px;
+ }
+ .alter-assets h2 {
+ font-size: 18px;
+ padding: 11px;
+ margin-bottom: 12px;
+ }
+ .popular-assets {
+ padding: 3rem 0;
+ }
+ .parimay-card {
+ grid-gap: 26px;
+ grid-template-columns: repeat(1, 1fr);
+ }
+ h4.inner-title {
+ font-size: 20px;
+ }
+ .bg-brown-head h3 {
+ font-size: 28px;
+ }
+ .explore-assets h4 {
+ font-size: 22px;
+ }
+ .explore-assets .active,
+ .primary-investment .active {
+ font-size: 16px;
+ }
+ .explore-assets .inactive,
+ .primary-investment .inactive {
+ font-size: 16px;
+ }
+ .card-container .card-info {
+ padding: 6px 17px;
+ margin-bottom: 14px;
+ }
+ .card-container p {
+ font-size: 14px;
+ }
+ .explore-assets {
+ padding: 3rem 0;
+ }
+ div#navbarNavDarkDropdown {
+ top: 80px;
+ }
+ .main-footer .icons {
+ margin-bottom: 40px;
+ }
+ .main-footer h2 {
+ margin-bottom: 16px;
+ }
+ .header-menu .page .dropdown button img {
+ width: 12px;
+ }
+ .about-inner-contain img {
+ margin-bottom: 25px;
+ }
+ .inner-banner .banner-content img {
+ width: 110px;
+ margin-left: 30px;
+ }
+ .inner-banner .banner-content p br {
+ display: none;
+ }
+ .about-inner-contain {
+ padding-top: 3rem;
+ }
+ .faqs-content {
+ padding: 3rem 0;
+ width: 100%;
+ }
+ .faq-ctn2 .blue-card {
+ margin-bottom: 20px;
+ }
+ .privacy-content p {
+ font-size: 14px;
+ }
+ .privacy-content h2 {
+ font-size: 18px;
+ margin: 27px 0 12px;
+ }
+ .insights-banner h2 {
+ font-size: 34px;
+ }
+ .insights-banner p {
+ font-size: 18px;
+ }
+ .insight-card p {
+ font-size: 14px;
+ }
+ .insight-card {
+ padding: 0px;
+ }
+ .insights-card h3 {
+ margin-bottom: 12px;
+ font-size: 24px;
+ }
+ .recent-post .detail {
+ justify-content: inherit;
+ }
+ .works-section .primary-trans {
+ margin-bottom: 25px;
+ }
+ .works-section p {
+ font-size: 14px;
+ }
+ .works-section .cards-info p {
+ font-size: 14px;
+ }
+ .privacy-content h1 {
+ font-size: 28px;
+ margin-bottom: 20px;
+ }
+ .privacy-content ul li {
+ font-size: 14px;
+ }
+ .contact-sec .crd23 {
+ margin-bottom: 20px;
+ }
+ .blue-box {
+ padding: 30px 18px;
+ }
+ .blue-box .right h3 {
+ font-size: 28px;
+ margin-bottom: 20px;
+ }
+ .blue-box .right h4 {
+ font-size: 20px;
+ margin-bottom: 18px;
+ }
+ .chat-content {
+ width: 100%;
+ }
+ .notification-drop .item-noti .notification {
+ left: -145px;
+ width: 368px;
+ }
+ .banner-text-contain h2 {
+ font-size: 28px;
+ }
+ .banner-text-contain p {
+ font-size: 15px;
+ }
+ .banner-profile .profile img {
+ width: 55px;
+ margin-right: 9px;
+ }
+ .banner-text-contain {
+ margin-bottom: 22px;
+ }
+ .banner-text-contain p br {
+ display: none;
+ }
+ .inner-banner-funds {
+ height: 435px;
+ }
+ .your-investment h2.invest-fund {
+ font-size: 30px;
+ margin-bottom: 22px;
+ }
+ .your-investment p {
+ font-size: 14px;
+ }
+ .your-investment h3 {
+ font-size: 20px;
+ }
+ .your-investment .structure img {
+ height: auto;
+ width: 100%;
+ }
+ .your-investment h3 {
+ font-size: 18px;
+ }
+ .your-investment li {
+ font-size: 14px;
+ }
+ h2.inner-heading {
+ font-size: 20px;
+ font-weight: 500;
+ }
+ .categories h2 {
+ font-size: 22px;
+ }
+ .your-investment {
+ padding: 2rem 0;
+ }
+ .categories-card {
+ grid-template-columns: repeat(1, 1fr);
+ }
+ .cate-card img {
+ width: 102px;
+ }
+ .categories-card .cate-card h4 {
+ font-size: 18px;
+ }
+ .cate-card .btn a {
+ padding: 10px 22px;
+ font-size: 14px;
+ }
+ .taxation tbody tr th {
+ font-size: 14px;
+ }
+ .taxation tbody tr td {
+ font-size: 14px;
+ }
+ .table-cate {
+ overflow-x: scroll;
+ }
+ .inner-banner h2 {
+ font-size: 30px;
+ }
+ .inner-banner .banner-content h4 {
+ font-size: 16px;
+ }
+ .inner-banner p {
+ font-size: 16px;
+ }
+ .inner-contain .empanel-cont li {
+ font-size: 14px;
+ }
+ .inner-contain .create-account {
+ margin-top: 30px;
+ }
+ .create-account button {
+ height: 44px;
+ margin-top: 4px;
+ margin-bottom: 24px;
+ }
+ .inner-contain .empanel-cont {
+ padding-right: 0px;
+ list-style: none;
+ margin-bottom: 0;
+ }
+ .banner-left-content .home-banner-btn {
+ position: inherit;
+ margin-bottom: 24px;
+ }
+ .privacy-content {
+ padding: 15px 0;
+ }
+ .works-section .Primary-tran {
+ margin-bottom: 20px;
+ }
+ .works-section .Primary-tran p {
+ height: inherit;
+ }
+ .works-section .cards-info {
+ height: inherit;
+ }
+ .divider:before {
+ content: inherit;
+ }
+ .works-section-inner hr {
+ border: none;
+ margin: 0;
+ }
+ .checkbox-sec {
+ grid-gap: 27px;
+ }
+ .Secondary .sec-btn {
+ display: flex;
+ }
+ .sec-btn a.blue-btn {
+ padding: 10px 10px;
+ margin: 0 2px;
+ font-size: 15px;
+ }
+ .Secondary .sec-btn p {
+ margin-bottom: 0;
+ }
+ .chksb p {
+ font-size: 16px;
+ }
+ .investor-profile .invest-form a {
+ padding: 8px 16px;
+ border-radius: 5px;
+ }
+ .investor-profile .invest-form .ip-header.container {
+ padding: 30px 0px;
+ }
+ .investor-profile .invest-form form {
+ padding: 30px 0;
+ }
+ .security-form {
+ width: 100%;
+ }
+ .security-form h2 {
+ margin-bottom: 15px;
+ }
+ .security-form .security-text {
+ margin-bottom: 20px;
+ }
+ .works-section-inner {
+ grid-template-columns: repeat(1, 1fr);
+ }
+ .platform-card .work-images {
+ padding: 22px 15px;
+ }
+ .platform-card .work-content h4 {
+ margin-bottom: 14px;
+ }
+ .primary-investment .opportunities {
+ display: block;
+ }
+ .opportunities .primary-cards {
+ width: 100%;
+ }
+ .opportunities .primary-tabs {
+ width: 100%;
+ }
+ .opportunities .parimay-card {
+ grid-gap: 26px;
+ }
+ .primary-investment .page-heading {
+ font-size: 28px;
+ }
+ .page-desc br {
+ display: none;
+ }
+ .primary-investment .page-desc {
+ font-size: 18px;
+ margin-bottom: 20px;
+ }
+ .main-footer .col-md-4 {
+ width: 100%;
+ }
+ .main-footer .logo img {
+ width: 100px;
+ }
+ .categories-card {
+ grid-gap: 30px;
+ }
+ .Distressed-Funds {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .investment .invest-card {
+ margin-bottom: 20px;
+ }
+ .invest-card .card-img img {
+ height: 150px;
+ }
+ .your-investment .dist-fund img {
+ margin-bottom: 20px;
+ }
+ .cards .insight-cards {
+ grid-template-columns: repeat(1, 3fr);
+ }
+ .posts-cards {
+ grid-template-columns: repeat(1, 4fr);
+ }
+ .insights-card h3 {
+ font-size: 22px;
+ }
+ .real-estate-table {
+ overflow-x: scroll;
+ }
+ .realstate-graph img {
+ margin-bottom: 10px;
+ }
+ .fractional-banner {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .insights-banner {
+ height: 150px;
+ }
+ .insights-banner h2 {
+ font-size: 35px;
+ }
+ .insights-banner p {
+ font-size: 18px;
+ }
+ .Long-Equity-Funds-banner {
+ padding: 2rem 0;
+ height: auto;
+ }
+ .infrastructure-funds {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .venture-funds {
+ height: auto;
+ padding: 2rem 0;
+ }
+ .insights-card .cards {
+ margin-bottom: 2rem;
+ }
- .insights-card {
- padding: 2rem 0;
- }
- .your-investment .dist-fund .sourcing-img img {
- width: 135px;
- }
- .dist-fund .sourcing-img {
- text-align: center;
- }
- .drivers .drive-label ul {
- height: 106px;
- }
- .drivers .blue-boxx {
- height: 125px;
- }
- .amount-table img {
- width: 100%;
- }
- .amount-tabs {
- background-color: #E8C69F;
- padding: 15px;
- border-radius: 10px;
- }
- .your-investment .annual h5 {
- font-size: 18px;
- }
- .amount-tabs .amount-tab {
- overflow-x: scroll;
- }
- .recent-post-card a.text-dark {
- padding: 25px 20px;
- }
- .cards-insights {
- padding: 25px 20px;
- }
- .inner-contain {
- padding: 3rem 0;
- }
- .investor-profile .invest-form{
- padding: 1rem 0;
- }
- .tobr{
- display: block;
- }
- .primary-offer-one .sec-img {
- margin-top: 25px;
- }
- .primary-offer-two .sec-img {
- margin-bottom: 20px;
- }
- .primary-offer-one ul li, .primary-offer-two ul li {
- color: #C18948;
- line-height: 26px;
- }
- .dropdown-tooltip .dropdown-menu.show{
- width: 370px;
- }
- .inner-banner {
- height: auto;
- padding: 3rem 0;
- }
- .header-menu .menubar .dropdown .dropdown-toggle img {
- width: 35px;
- height: 35px;
- }
- .header-menu .menubar a.dropdown-toggle {
- padding-left: 0;
- }
- .admin-profile .dropdown .dropdown-toggle::after {
- color: #C18948;
- }
- .accounts .kyc-card {
- width: 95%;
- }
- .platform-card .work-content h4 {
- height: auto;
- }
- .founder {
- padding-top: 34px;
- padding-bottom: 60px;
- }
- .desktop-sbContainer{
- height: 81px;
- }
- .works-section .Primary-tran {
- margin-top: 20px;
- }
+ .insights-card {
+ padding: 2rem 0;
+ }
+ .your-investment .dist-fund .sourcing-img img {
+ width: 135px;
+ }
+ .dist-fund .sourcing-img {
+ text-align: center;
+ }
+ .drivers .drive-label ul {
+ height: 106px;
+ }
+ .drivers .blue-boxx {
+ height: 125px;
+ }
+ .amount-table img {
+ width: 100%;
+ }
+ .amount-tabs {
+ background-color: #e8c69f;
+ padding: 15px;
+ border-radius: 10px;
+ }
+ .your-investment .annual h5 {
+ font-size: 18px;
+ }
+ .amount-tabs .amount-tab {
+ overflow-x: scroll;
+ }
+ .recent-post-card a.text-dark {
+ padding: 25px 20px;
+ }
+ .cards-insights {
+ padding: 25px 20px;
+ }
+ .inner-contain {
+ padding: 3rem 0;
+ }
+ .investor-profile .invest-form {
+ padding: 1rem 0;
+ }
+ .tobr {
+ display: block;
+ }
+ .primary-offer-one .sec-img {
+ margin-top: 25px;
+ }
+ .primary-offer-two .sec-img {
+ margin-bottom: 20px;
+ }
+ .primary-offer-one ul li,
+ .primary-offer-two ul li {
+ color: #c18948;
+ line-height: 26px;
+ }
+ .dropdown-tooltip .dropdown-menu.show {
+ width: 370px;
+ }
+ .inner-banner {
+ height: auto;
+ padding: 3rem 0;
+ }
+ .header-menu .menubar .dropdown .dropdown-toggle img {
+ width: 35px;
+ height: 35px;
+ }
+ .header-menu .menubar a.dropdown-toggle {
+ padding-left: 0;
+ }
+ .admin-profile .dropdown .dropdown-toggle::after {
+ color: #c18948;
+ }
+ .accounts .kyc-card {
+ width: 95%;
+ }
+ .platform-card .work-content h4 {
+ height: auto;
+ }
+ .founder {
+ padding-top: 34px;
+ padding-bottom: 60px;
+ }
+ .desktop-sbContainer {
+ height: 81px;
+ }
+ .works-section .Primary-tran {
+ margin-top: 20px;
+ }
}
-@media (max-width:600px){
-
+@media (max-width: 600px) {
}
-@media (max-width:580px){
-
+@media (max-width: 580px) {
}
-@media (max-width:480px){
-
+@media (max-width: 480px) {
}
-@media (max-width:420px){
-
+@media (max-width: 420px) {
}
-@media (max-width:380px){
-
+@media (max-width: 380px) {
}
-@media (max-width:360px){
-
+@media (max-width: 360px) {
}
-@media (max-width:320px){
-
+@media (max-width: 320px) {
}
diff --git a/public/assets/css/style.css b/public/assets/css/style.css
index e22b9a7..b1a4449 100644
--- a/public/assets/css/style.css
+++ b/public/assets/css/style.css
@@ -1,196 +1,219 @@
-*{
- padding: 0;
- margin: 0;
+* {
+ padding: 0;
+ margin: 0;
}
-.index-box .card{
- /* background: #1a8ecb6e; */
- background: #C18948;
+.index-box .card {
+ /* background: #1a8ecb6e; */
+ background: #c18948;
}
-.title_icon_area{
- width: 40px;
- height: 40px;
- /* background: purple; */
- box-shadow: 0px 0px 4px 1px #0003;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 10px;
+.title_icon_area {
+ width: 40px;
+ height: 40px;
+ /* background: purple; */
+ box-shadow: 0px 0px 4px 1px #0003;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
}
-.index-box .progress_custom_color{
- opacity: 0.5;
+.index-box .progress_custom_color {
+ opacity: 0.5;
}
-.chart_tabs{
- border: 1px solid #000;
- border-radius: 10px;
- height: 30px;
- align-items: center;
- padding: 10px;
- cursor: pointer;
+.chart_tabs {
+ border: 1px solid #000;
+ border-radius: 10px;
+ height: 30px;
+ align-items: center;
+ padding: 10px;
+ cursor: pointer;
}
-.chart_tabs span{
- padding-right: 10px;
- border-right: 1px solid #000;
+.chart_tabs span {
+ padding-right: 10px;
+ border-right: 1px solid #000;
}
-.chart_tabs span:last-child{
- padding-left: 10px;
- border:none;
+.chart_tabs span:last-child {
+ padding-left: 10px;
+ border: none;
}
-.top_circle_area{
- width: 200px;
- height: 200px;
- border-radius: 50%;
- background: #EFEAE5;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #000;
- margin-bottom: 30px;
+.top_circle_area {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ background: #efeae5;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: #000;
+ margin-bottom: 30px;
}
-.index_table button{
- /*background-color:#fff!important;*/
- box-shadow:0px 0px 0px 0px #0003;
+.index_table button {
+ /*background-color:#fff!important;*/
+ box-shadow: 0px 0px 0px 0px #0003;
}
/* global-css-start */
-[data-kt-app-layout=dark-sidebar] .app-sidebar{
- /* background-color: #1c3b67; */
- background-color: #fff;
+[data-kt-app-layout="dark-sidebar"] .app-sidebar {
+ /* background-color: #1c3b67; */
+ background-color: #fff;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-bullet .bullet{
- background-color: #1B243D;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item
+ .menu-link.active
+ .menu-bullet
+ .bullet {
+ background-color: #1b243d;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet{
- background-color: #1b8dc9;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item:not(.here)
+ .menu-link:hover:not(.disabled):not(.active):not(.here)
+ .menu-bullet
+ .bullet {
+ background-color: #1b8dc9;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title{
- color:#C18948 !important;
- font-weight: 600;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item.hover:not(.here)
+ > .menu-link:not(.disabled):not(.active):not(.here)
+ .menu-title {
+ color: #c18948 !important;
+ font-weight: 600;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active{
- background-color: transparent;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item
+ .menu-link.active {
+ background-color: transparent;
}
.menu-link:hover .menu-icon .svg-icon.svg-icon-2,
-.menu-link:hover .menu-icon{
- color: #C18948 !important;
+.menu-link:hover .menu-icon {
+ color: #c18948 !important;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after{
- background-color: #000;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item:not(.here)
+ .menu-link:hover:not(.disabled):not(.active):not(.here)
+ .menu-arrow:after {
+ background-color: #000;
}
-table.dataTable>thead .sorting_asc:after,
-table.dataTable thead>tr>th.sorting_desc:after{
- display: none!important;
+table.dataTable > thead .sorting_asc:after,
+table.dataTable thead > tr > th.sorting_desc:after {
+ display: none !important;
}
-.import_btn svg{
- transform: rotate(180deg);
+.import_btn svg {
+ transform: rotate(180deg);
}
a.action_icon {
- padding: 12px 0;
+ padding: 12px 0;
}
-.h-0{
- min-height: 0!important;
+.h-0 {
+ min-height: 0 !important;
}
/* active_and_inactive_toggle-start */
.on-off-toggle {
- width: 80px;
- height: 24px;
- position: relative;
- display: inline-block;
- text-align: left;
+ width: 80px;
+ height: 24px;
+ position: relative;
+ display: inline-block;
+ text-align: left;
}
.on-off-toggle__slider {
- width: 80px;
- height: 24px;
- display: block;
- border-radius: 34px;
- background-color: #d8d8d8;
- transition: background-color 0.4s
-
+ width: 80px;
+ height: 24px;
+ display: block;
+ border-radius: 34px;
+ background-color: #d8d8d8;
+ transition: background-color 0.4s;
}
.on-off-toggle__slider:before {
- content: '';
- display: block;
- background-color: #fff;
- bottom: 4.2px;
- height: 15px;
- left: 4px;
- position: absolute;
- transition: .4s;
- width: 15px;
- z-index: 5;
- border-radius: 100%;
+ content: "";
+ display: block;
+ background-color: #fff;
+ bottom: 4.2px;
+ height: 15px;
+ left: 4px;
+ position: absolute;
+ transition: 0.4s;
+ width: 15px;
+ z-index: 5;
+ border-radius: 100%;
}
.on-off-toggle__slider:after {
- display: block;
- line-height: 24px;
- text-transform: uppercase;
- font-size: 10px;
- font-weight: bold;
- content: 'Inactive';
- color: #1c3b67;
- padding-left: 26px;
- transition: all 0.4s;
+ display: block;
+ line-height: 24px;
+ text-transform: uppercase;
+ font-size: 10px;
+ font-weight: bold;
+ content: "Inactive";
+ color: #1c3b67;
+ padding-left: 26px;
+ transition: all 0.4s;
}
.on-off-toggle__input {
-/*
+ /*
This way of hiding the default input is better
for accessibility than using display: none;
*/
-position: absolute;
-opacity: 0;
+ position: absolute;
+ opacity: 0;
}
-.on-off-toggle__input:checked +
-.on-off-toggle__slider {
-background-color: #1c3b67
+.on-off-toggle__input:checked + .on-off-toggle__slider {
+ background-color: #1c3b67;
}
-.on-off-toggle__input:checked +
-.on-off-toggle__slider:before {
- transform: translateX(56px);
+.on-off-toggle__input:checked + .on-off-toggle__slider:before {
+ transform: translateX(56px);
}
-.on-off-toggle__input:checked +
-.on-off-toggle__slider:after {
- content: 'Active';
- color: #FFFFFF;
- padding-left: 8px;
- font-size: 10px;
+.on-off-toggle__input:checked + .on-off-toggle__slider:after {
+ content: "Active";
+ color: #ffffff;
+ padding-left: 8px;
+ font-size: 10px;
}
/* active_and_inactive_toggle-end */
:focus-visible {
- outline: -webkit-focus-ring-color auto 0px;
+ outline: -webkit-focus-ring-color auto 0px;
}
a:-webkit-any-link:focus-visible {
- outline-offset: 0px;
+ outline-offset: 0px;
}
-
/* active sidebar and inactive sidebar start */
a.active .menu-title {
- /*color: #1B243D !important;*/
- font-weight: 600;
+ /*color: #1B243D !important;*/
+ font-weight: 600;
}
/* FAQ CSS */
.selection .form-select {
- background-color:var(--kt-input-solid-bg)!important;
- border: none;
+ background-color: var(--kt-input-solid-bg) !important;
+ border: none;
}
/* Investors CSS */
-.nav-line-tabs .nav-item .nav-link.active, .nav-line-tabs .nav-item .nav-link:hover:not(.disabled), .nav-line-tabs .nav-item.show .nav-link{
- font-weight: 700!important;
- color: #5E6278!important;
- border-bottom: 1px solid var(--kt-webiste_logo);
+.nav-line-tabs .nav-item .nav-link.active,
+.nav-line-tabs .nav-item .nav-link:hover:not(.disabled),
+.nav-line-tabs .nav-item.show .nav-link {
+ font-weight: 700 !important;
+ color: #5e6278 !important;
+ border-bottom: 1px solid var(--kt-webiste_logo);
}
/*.selection .form-select{
@@ -199,122 +222,124 @@ a.active .menu-title {
}*/
/* manage commission css start */
-.selection .select2-selection{
- background-color: #f5f8fa!important;
+.selection .select2-selection {
+ background-color: #f5f8fa !important;
}
/* =================Manage FreeU Investment============================ */
-ul{
- margin: 0;
+ul {
+ margin: 0;
}
.add_new_investors .selection .form-select {
- background-color: var(--kt-input-solid-bg)!important;
- border: none;
+ background-color: var(--kt-input-solid-bg) !important;
+ border: none;
}
-.add_new_investors .add_category_with_select .selection .form-select{
- border-bottom-right-radius: 0px;
- border-top-right-radius: 0px;
+.add_new_investors .add_category_with_select .selection .form-select {
+ border-bottom-right-radius: 0px;
+ border-top-right-radius: 0px;
}
-.add_new_investors .add_category_icon{
- background-color: var(--kt-input-solid-bg);
- border-bottom-right-radius: 0.475rem;
- border-top-right-radius: 0.475rem;
+.add_new_investors .add_category_icon {
+ background-color: var(--kt-input-solid-bg);
+ border-bottom-right-radius: 0.475rem;
+ border-top-right-radius: 0.475rem;
}
-.add_new_investors .add_button{
- margin:0 auto;
+.add_new_investors .add_button {
+ margin: 0 auto;
}
-.add_new_investors .add_button button{
- background-color: #1c3b67!important;
- color: #fff;
+.add_new_investors .add_button button {
+ background-color: #1c3b67 !important;
+ color: #fff;
}
-.add_btn_input{
- background-color: #f5f8fa;
- width: 43px!important;
- height: 43px;
- justify-content: center;
- border-radius: 5px;
- display: flex;
- align-items: center;
- cursor: pointer;
+.add_btn_input {
+ background-color: #f5f8fa;
+ width: 43px !important;
+ height: 43px;
+ justify-content: center;
+ border-radius: 5px;
+ display: flex;
+ align-items: center;
+ cursor: pointer;
}
-.input_with_remove_btn{
- background-color: #f5f8fa;
- width: 43px!important;
- height: 43px;
- justify-content: center;
- border-radius: 5px;
- display: flex;
- align-items: center;
- cursor: pointer;
- margin-left: 10px;
+.input_with_remove_btn {
+ background-color: #f5f8fa;
+ width: 43px !important;
+ height: 43px;
+ justify-content: center;
+ border-radius: 5px;
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ margin-left: 10px;
}
-.ck.ck-list__item .ck-button.ck-on{
- background: #f5f8fa!important;
- color: var(--kt-website_logo)!important;
- outline: none!important;
- box-shadow: none!important;
+.ck.ck-list__item .ck-button.ck-on {
+ background: #f5f8fa !important;
+ color: var(--kt-website_logo) !important;
+ outline: none !important;
+ box-shadow: none !important;
}
-.ck.ck-button.ck-on, a.ck.ck-button.ck-on{
- color: var(--kt-website_logo)!important;
- }
- .dropzone{
- /* border: 1px dashed var(--kt-website_logo); */
- border:none;
- background-color: #f5f8fa;
- }
- #add_desc{
- width: 100%!important;
- }
- .form-check-input{
- border-color:var(--kt-website_logo);
- }
- .form-check-input:checked{
- background-color:var(--kt-website_logo);
- }
- input.edit_label_title {
- border: none;
- outline: none;
- border-left: 1px solid #ccc;
+.ck.ck-button.ck-on,
+a.ck.ck-button.ck-on {
+ color: var(--kt-website_logo) !important;
}
-.veiw_detials_area,.desc_view{
- background-color: var(--kt-input-solid-bg);
- /* height: 40px; */
- padding: 15px 20px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- padding-left: 20px;
- font-size: 14px;
- font-weight: 400;
- color: #000;
+.dropzone {
+ /* border: 1px dashed var(--kt-website_logo); */
+ border: none;
+ background-color: #f5f8fa;
}
-.documents{
- width: 100%;
- background-color: var(--kt-input-solid-bg);
- padding: 15px 20px;
- border-radius: 10px;
+#add_desc {
+ width: 100% !important;
}
-.download_btn{
- background-color: var(--kt-input-solid-bg);
- padding: 15px 20px;
- border-radius: 10px;
- height: 100%;
+.form-check-input {
+ border-color: var(--kt-website_logo);
}
-.add_cat button{
- margin-top: 20px;
- background-color: var(--kt-primary)!important;
+.form-check-input:checked {
+ background-color: var(--kt-website_logo);
+}
+input.edit_label_title {
+ border: none;
+ outline: none;
+ border-left: 1px solid #ccc;
+}
+.veiw_detials_area,
+.desc_view {
+ background-color: var(--kt-input-solid-bg);
+ /* height: 40px; */
+ padding: 15px 20px;
+ border-radius: 10px;
+ display: flex;
+ align-items: center;
+ padding-left: 20px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #000;
+}
+.documents {
+ width: 100%;
+ background-color: var(--kt-input-solid-bg);
+ padding: 15px 20px;
+ border-radius: 10px;
+}
+.download_btn {
+ background-color: var(--kt-input-solid-bg);
+ padding: 15px 20px;
+ border-radius: 10px;
+ height: 100%;
+}
+.add_cat button {
+ margin-top: 20px;
+ background-color: var(--kt-primary) !important;
}
.img_upload input[type="file"].custom {
- border: 0;
- clip: rect(0, 0, 0, 0);
- height: 1px;
- overflow: hidden;
- padding: 0;
- position: absolute !important;
- white-space: nowrap;
- width: 1px;
+ border: 0;
+ clip: rect(0, 0, 0, 0);
+ height: 1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute !important;
+ white-space: nowrap;
+ width: 1px;
}
/* News CSS */
@@ -323,63 +348,63 @@ ul{
border: none;
}*/
-
/* Pre-Owned-Investment */
-.veiw_detials_area,.desc_view{
- background-color: var(--kt-input-solid-bg);
- /* height: 40px; */
- padding: 15px 20px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- padding-left: 20px;
- font-size: 14px;
- font-weight: 400;
- color: #000;
+.veiw_detials_area,
+.desc_view {
+ background-color: var(--kt-input-solid-bg);
+ /* height: 40px; */
+ padding: 15px 20px;
+ border-radius: 10px;
+ display: flex;
+ align-items: center;
+ padding-left: 20px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #000;
}
-.documents{
- width: 100%;
- background-color: var(--kt-input-solid-bg);
- padding: 15px 20px;
- border-radius: 10px;
+.documents {
+ width: 100%;
+ background-color: var(--kt-input-solid-bg);
+ padding: 15px 20px;
+ border-radius: 10px;
}
-.download_btn{
- background-color: var(--kt-input-solid-bg);
- padding: 15px 20px;
- border-radius: 10px;
- height: 100%;
+.download_btn {
+ background-color: var(--kt-input-solid-bg);
+ padding: 15px 20px;
+ border-radius: 10px;
+ height: 100%;
}
-.download{
- padding: 8px 10px;
- border: none;
- outline: none;
- border: 1px solid var(--kt-website_logo);
- color: #000;
- border-radius: 5px;
+.download {
+ padding: 8px 10px;
+ border: none;
+ outline: none;
+ border: 1px solid var(--kt-website_logo);
+ color: #000;
+ border-radius: 5px;
}
-.download .fa-download{
- color:var(--kt-website_logo) !important;
+.download .fa-download {
+ color: var(--kt-website_logo) !important;
}
-
-.veiw_detials_area,.desc_view{
- background-color: var(--kt-input-solid-bg);
- /* height: 40px; */
- padding: 15px 20px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- padding-left: 20px;
- font-size: 14px;
- font-weight: 400;
- color: #000;
+.veiw_detials_area,
+.desc_view {
+ background-color: var(--kt-input-solid-bg);
+ /* height: 40px; */
+ padding: 15px 20px;
+ border-radius: 10px;
+ display: flex;
+ align-items: center;
+ padding-left: 20px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #000;
}
-.documents{
- width: 100%;
- background-color: var(--kt-input-solid-bg);
- padding: 15px 20px;
- border-radius: 10px;
+.documents {
+ width: 100%;
+ background-color: var(--kt-input-solid-bg);
+ padding: 15px 20px;
+ border-radius: 10px;
}
/*.download_btn{
background-color: var(--kt-input-solid-bg);
@@ -390,33 +415,33 @@ ul{
/* CMS Delete Modal CSS */
.Delete_pop button#close_modal {
- margin: 0 !important;
- margin-right: 10px !important;
- padding: 12px 20px !important;
- border-radius: 5px !important;
- background-color: #d8d8d8 !important;
- color: #000 !important;
- border: none !important;
+ margin: 0 !important;
+ margin-right: 10px !important;
+ padding: 12px 20px !important;
+ border-radius: 5px !important;
+ background-color: #d8d8d8 !important;
+ color: #000 !important;
+ border: none !important;
}
.Delete_pop h2 {
- margin-bottom: 20px!important;
- text-align: center!important;
- height: 50px!important;
- line-height: 3!important;
+ margin-bottom: 20px !important;
+ text-align: center !important;
+ height: 50px !important;
+ line-height: 3 !important;
}
.Delete_pop .logout_footer {
- border: 0!important;
- display: flex!important;
- justify-content: center!important;
+ border: 0 !important;
+ display: flex !important;
+ justify-content: center !important;
}
.Delete_pop svg.bi.bi-x-circle {
- display: flex!important;
- justify-content: center!important;
- width: 100%!important;
- margin: 20px 0!important;
+ display: flex !important;
+ justify-content: center !important;
+ width: 100% !important;
+ margin: 20px 0 !important;
}
/*.add_new_investors .top_header .table_right_options {*/
@@ -424,88 +449,87 @@ ul{
/* background-color: #C18948;*/
/*}*/
.add_new_investors .top_header p.fs-2.fw-bold {
- margin: 0;
- line-height: 2;
+ margin: 0;
+ line-height: 2;
}
.add_new_investors .top_header {
- margin-bottom: 15px;
- align-items: center;
+ margin-bottom: 15px;
+ align-items: center;
}
.add_new_investors .top_header .table_right_options:hover a {
- color: #fff;
- background-color: #C18948;
+ color: #fff;
+ background-color: #c18948;
}
.add_new_investors .top_header .table_right_options a {
- color: #fff;
- background-color: #C18948;
+ color: #fff;
+ background-color: #c18948;
}
.add_new_investors .top_header p.fs-2.fw-bold {
- font-size: 22px !IMPORTANT;
+ font-size: 22px !important;
}
-
.Upload_image label#blog_image-error {
- position: absolute;
- width: max-content;
- right: 30em;
- top: 313px;
- color: #181c32;
- font-size: 13px;
- font-weight: normal;
+ position: absolute;
+ width: max-content;
+ right: 30em;
+ top: 313px;
+ color: #181c32;
+ font-size: 13px;
+ font-weight: normal;
}
.Upload_image {
- position: relative;
+ position: relative;
}
label#editor-error {
- width: max-content;
- position: absolute;
- right: 66em;
- top: 408px;
+ width: max-content;
+ position: absolute;
+ right: 66em;
+ top: 408px;
}
.download_mobapp img {
- height: auto;
+ height: auto;
}
-.blue-bar .container{
- justify-content:space-around;
+.blue-bar .container {
+ justify-content: space-around;
}
.m_rate {
- float: left;
- height: 46px;
- padding: 0 10px;
+ float: left;
+ height: 46px;
+ padding: 0 10px;
}
-.m_rate:not(:checked)>input {
- position: absolute;
- display: none;
+.m_rate:not(:checked) > input {
+ position: absolute;
+ display: none;
}
-.m_rate:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ccc;
+.m_rate:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ccc;
}
-.m_rated:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ccc;
+.m_rated:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ccc;
}
-.m_rate:not(:checked)>label:before {
- content: '★ ';
+.m_rate:not(:checked) > label:before {
+ content: "★ ";
}
-.m_rate>input:checked~label {
- color: #ffc700;
+.m_rate > input:checked ~ label {
+ color: #ffc700;
}
/* .rate:not(:checked) > label:hover,
@@ -520,521 +544,562 @@ label#editor-error {
color: #c59b08;
} */
.star-rating-complete {
- color: #c59b08;
+ color: #c59b08;
}
.rating-container .form-control:hover,
.rating-container .form-control:focus {
- background: #fff;
- border: 1px solid #ced4da;
+ background: #fff;
+ border: 1px solid #ced4da;
}
.rating-container textarea:focus,
.rating-container input:focus {
- color: #000;
+ color: #000;
}
.m_rated {
- float: left;
- height: 46px;
- padding: 0 10px;
- display: flex;
+ float: left;
+ height: 46px;
+ padding: 0 10px;
+ display: flex;
}
-.m_rated:not(:checked)>input {
- position: absolute;
- display: none;
+.m_rated:not(:checked) > input {
+ position: absolute;
+ display: none;
}
-.m_rated:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ffc700;
+.m_rated:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ffc700;
}
-.m_rated:not(:checked)>label:before {
- content: '★ ';
+.m_rated:not(:checked) > label:before {
+ content: "★ ";
}
-.m_rated>input:checked~label {
- color: #ffc700;
+.m_rated > input:checked ~ label {
+ color: #ffc700;
}
.rate {
- float: left;
- height: 46px;
- padding: 0 10px;
+ float: left;
+ height: 46px;
+ padding: 0 10px;
}
-.rate:not(:checked)>input {
- position: absolute;
- display: none;
+.rate:not(:checked) > input {
+ position: absolute;
+ display: none;
}
-.rate:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ccc;
+.rate:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ccc;
}
-.rated:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ccc;
+.rated:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ccc;
}
-.rate:not(:checked)>label:before {
- content: '★ ';
+.rate:not(:checked) > label:before {
+ content: "★ ";
}
-.rate>input:checked~label {
- color: #ffc700;
+.rate > input:checked ~ label {
+ color: #ffc700;
}
-.rate:not(:checked)>label:hover,
-.rate:not(:checked)>label:hover~label {
- color: #deb217;
+.rate:not(:checked) > label:hover,
+.rate:not(:checked) > label:hover ~ label {
+ color: #deb217;
}
-.rate>input:checked+label:hover,
-.rate>input:checked+label:hover~label,
-.rate>input:checked~label:hover,
-.rate>input:checked~label:hover~label,
-.rate>label:hover~input:checked~label {
- color: #c59b08;
+.rate > input:checked + label:hover,
+.rate > input:checked + label:hover ~ label,
+.rate > input:checked ~ label:hover,
+.rate > input:checked ~ label:hover ~ label,
+.rate > label:hover ~ input:checked ~ label {
+ color: #c59b08;
}
.star-rating-complete {
- color: #c59b08;
+ color: #c59b08;
}
.rating-container .form-control:hover,
.rating-container .form-control:focus {
- background: #fff;
- border: 1px solid #ced4da;
+ background: #fff;
+ border: 1px solid #ced4da;
}
.rating-container textarea:focus,
.rating-container input:focus {
- color: #000;
+ color: #000;
}
.rated {
- float: left;
- height: 46px;
- padding: 0 10px;
- display: flex;
+ float: left;
+ height: 46px;
+ padding: 0 10px;
+ display: flex;
}
-.rated:not(:checked)>input {
- position: absolute;
- display: none;
+.rated:not(:checked) > input {
+ position: absolute;
+ display: none;
}
-.rated:not(:checked)>label {
- float: right;
- width: 1em;
- overflow: hidden;
- white-space: nowrap;
- cursor: pointer;
- font-size: 30px;
- color: #ffc700;
+.rated:not(:checked) > label {
+ float: right;
+ width: 1em;
+ overflow: hidden;
+ white-space: nowrap;
+ cursor: pointer;
+ font-size: 30px;
+ color: #ffc700;
}
-.rated:not(:checked)>label:before {
- content: '★ ';
+.rated:not(:checked) > label:before {
+ content: "★ ";
}
-.rated>input:checked~label {
- color: #ffc700;
+.rated > input:checked ~ label {
+ color: #ffc700;
}
-.rated:not(:checked)>label:hover,
-.rated:not(:checked)>label:hover~label {
- color: #deb217;
+.rated:not(:checked) > label:hover,
+.rated:not(:checked) > label:hover ~ label {
+ color: #deb217;
}
-.rated>input:checked+label:hover,
-.rated>input:checked+label:hover~label,
-.rated>input:checked~label:hover,
-.rated>input:checked~label:hover~label,
-.rated>label:hover~input:checked~label {
- color: #c59b08;
+.rated > input:checked + label:hover,
+.rated > input:checked + label:hover ~ label,
+.rated > input:checked ~ label:hover,
+.rated > input:checked ~ label:hover ~ label,
+.rated > label:hover ~ input:checked ~ label {
+ color: #c59b08;
}
.personal-details {
- box-shadow: 5px 5px 20px #00000029;
- padding: 35px 30px 0 35px;
- border-radius: 9px;
- margin-bottom: 20px;
+ box-shadow: 5px 5px 20px #00000029;
+ padding: 35px 30px 0 35px;
+ border-radius: 9px;
+ margin-bottom: 20px;
}
.personal-details {
- box-shadow: 5px 5px 20px #00000029;
- padding: 35px 30px 0 35px;
- border-radius: 9px;
- margin-bottom: 20px;
+ box-shadow: 5px 5px 20px #00000029;
+ padding: 35px 30px 0 35px;
+ border-radius: 9px;
+ margin-bottom: 20px;
}
.personal-details .details {
- display: flex;
- margin-bottom: 18px;
+ display: flex;
+ margin-bottom: 18px;
}
.personal-details .cards img {
- width: 25px;
+ width: 25px;
}
.personal-details .details p {
- height: inherit;
- font-size: 17px;
- color: #000;
- font-weight: 500;
- margin-left: 22px;
+ height: inherit;
+ font-size: 17px;
+ color: #000;
+ font-weight: 500;
+ margin-left: 22px;
}
.investment-card {
- margin-top: 43px;
- margin-bottom: 30px;
+ margin-top: 43px;
+ margin-bottom: 30px;
}
.investment-card .invest-card {
- box-shadow: 5px 5px 20px #00000029;
- padding: 43px 26px;
- border-radius: 13px;
+ box-shadow: 5px 5px 20px #00000029;
+ padding: 43px 26px;
+ border-radius: 13px;
}
.investment-card p {
- color: #737373;
- margin-bottom: 6px;
+ color: #737373;
+ margin-bottom: 6px;
}
.investment-card h2 {
- font-size: 28px;
- font-weight: 700;
+ font-size: 28px;
+ font-weight: 700;
}
.tabs-marketplace .marketplace-dashboard .nav-tabs {
- justify-content: flex-start;
- border-bottom: 0;
+ justify-content: flex-start;
+ border-bottom: 0;
}
.tabs-marketplace .nav-tabs {
- margin-bottom: 20px;
- border-bottom: 1px solid #e5dfdf;
+ margin-bottom: 20px;
+ border-bottom: 1px solid #e5dfdf;
}
.tabs-marketplace .nav-tabs li a.active {
- border-bottom: 2px solid #113163 !important;
- border-radius: 0 !important;
- margin-bottom: 10px !IMPORTANT;
- height: auto;
- color: #113163 !important;
+ border-bottom: 2px solid #113163 !important;
+ border-radius: 0 !important;
+ margin-bottom: 10px !important;
+ height: auto;
+ color: #113163 !important;
}
.tabs-marketplace .nav-tabs li a {
- color: #000 !important;
- background: transparent !IMPORTANT;
- width: max-content;
+ color: #000 !important;
+ background: transparent !important;
+ width: max-content;
}
.marketplace-dashboard .invest-tab {
- box-shadow: 5px 5px 20px #00000029;
- padding: 37px 26px;
- border-radius: 13px;
+ box-shadow: 5px 5px 20px #00000029;
+ padding: 37px 26px;
+ border-radius: 13px;
}
.invest-tab .ranking .gray-bg {
- background-color: #e7ebf0;
- height: 36px;
- border-radius: 50px;
+ background-color: #e7ebf0;
+ height: 36px;
+ border-radius: 50px;
}
.invest-tab .ranking .blue-bg {
- background-color: #143c6d;
- width: 68%;
- height: 36px;
- border-radius: 50px;
- display: flex;
- justify-content: end;
- align-items: center;
+ background-color: #143c6d;
+ width: 68%;
+ height: 36px;
+ border-radius: 50px;
+ display: flex;
+ justify-content: end;
+ align-items: center;
}
.invest-tab .process {
- margin-top: 42px;
+ margin-top: 42px;
}
.invest-tab .process h4 {
- font-size: 18px;
- font-weight: 600;
+ font-size: 18px;
+ font-weight: 600;
}
.invest-tab .process p {
- margin-bottom: 2px;
- color: #000;
+ margin-bottom: 2px;
+ color: #000;
}
.invest-tab .process span {
- color: #808080f7;
+ color: #808080f7;
}
.product-banner.jiraaf-main-banner {
- height: auto;
+ height: auto;
}
.product-banner .bg-img {
- background-image: url(https://wordpress.betadelivery.com/freeU/assets/css/../image/img24.png);
- padding: 50px 0;
+ background-image: url(https://wordpress.betadelivery.com/freeU/assets/css/../image/img24.png);
+ padding: 50px 0;
}
.product-banner .jiraaf-banner {
- display: flex;
- align-items: center;
+ display: flex;
+ align-items: center;
}
.product-banner .jiraaf-banner {
- padding: 50px 0;
+ padding: 50px 0;
}
.jiraaf-banner .image {
- background-color: #fff;
- height: 110px;
- width: 110px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 35px;
- border-radius: 8px;
- border: 2px solid #143C6D;
+ background-color: #fff;
+ height: 110px;
+ width: 110px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 35px;
+ border-radius: 8px;
+ border: 2px solid #143c6d;
}
.jiraaf-banner .image img {
- width: 73px;
- height: 21px;
+ width: 73px;
+ height: 21px;
}
.jiraaf-banner .jiraf-content {
- margin-left: 36px;
+ margin-left: 36px;
}
.jiraf-content h2 {
- font-size: 28px;
- font-weight: 600;
- margin-bottom: 2px;
+ font-size: 28px;
+ font-weight: 600;
+ margin-bottom: 2px;
}
.jiraaf-banner .jiraf-content p {
- margin-bottom: 8px;
- font-size: 16px;
+ margin-bottom: 8px;
+ font-size: 16px;
}
.product-banner p {
- /* margin-bottom: 30px; */
- line-height: 30px;
- /* font-size: 20px; */
+ /* margin-bottom: 30px; */
+ line-height: 30px;
+ /* font-size: 20px; */
}
.our-insights p {
- height: 90px;
- text-overflow: ellipsis;
+ height: 90px;
+ text-overflow: ellipsis;
}
.our-insights p:empty {
- display: none;
+ display: none;
}
.jiraaf-banner .jiraf-content p span {
- color: #737373;
- margin-right: 16px;
+ color: #737373;
+ margin-right: 16px;
}
.jiraaf-banner .jiraf-content img {
- width: 84px;
- background-color: #fff;
- padding: 11px 9px;
- height: 34px;
- border-radius: 5px;
- box-shadow: 1px 1px 4px #0000006e;
- margin-right: 10px;
+ width: 84px;
+ background-color: #fff;
+ padding: 11px 9px;
+ height: 34px;
+ border-radius: 5px;
+ box-shadow: 1px 1px 4px #0000006e;
+ margin-right: 10px;
}
.jiraf-table {
- background-color: #f9fafc;
- background-image: url(https://wordpress.betadelivery.com/freeU/assets/css/../image/abstract.png);
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- padding: 5rem 0;
+ background-color: #f9fafc;
+ background-image: url(https://wordpress.betadelivery.com/freeU/assets/css/../image/abstract.png);
+ background-size: cover;
+ background-position: center;
+ background-repeat: no-repeat;
+ padding: 5rem 0;
}
.jiraf-table .table-content {
- width: 75%;
- margin: auto;
- padding: 50px 100px;
- box-shadow: 0px 1px 9px 2px #6d6d6d47;
- border-radius: 7px;
- border-right: 5px solid #143C6D;
- background-color: #f9fafcc4;
+ width: 75%;
+ margin: auto;
+ padding: 50px 100px;
+ box-shadow: 0px 1px 9px 2px #6d6d6d47;
+ border-radius: 7px;
+ border-right: 5px solid #143c6d;
+ background-color: #f9fafcc4;
}
.jiraf-table .table-content tr {
- display: flex;
- justify-content: space-between;
- margin-bottom: 38px;
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 38px;
}
/*table text center*/
-table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
+/* table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
text-align: center;
-}
+} */
.btn.btn-light-primary {
- color: #fff;
- background-color: #C18948;
+ color: #fff;
+ background-color: #c18948;
}
-.btn.btn-light-primary .svg-icon, .btn.btn-light-primary i {
- color:#fff;
+.btn.btn-light-primary .svg-icon,
+.btn.btn-light-primary i {
+ color: #fff;
}
.btn.btn-light-primary:hover:not(.btn-active) {
- background-color: #C18948 !important;
+ background-color: #c18948 !important;
}
td a.action_icon {
- color: #1B243D;
+ color: #1b243d;
}
td a svg {
- color: #1B243D;
+ color: #1b243d;
}
.form-check-custom.form-check-solid .form-check-input:checked {
- background-color: #c18948;
+ background-color: #c18948;
}
.btn.btn-primary {
- background-color: #C18948;
- color: #1B243D;
+ background-color: #c18948;
+ color: #1b243d;
}
.btn.btn-light-primary:active:not(.btn-active) {
- color: #1B243D !important;
- background-color: #C18948 !important;
+ color: #1b243d !important;
+ background-color: #c18948 !important;
}
.btn.btn-secondary {
- background-color: #C18948;
- color: #fff;
+ background-color: #c18948;
+ color: #fff;
}
-.btn.btn-secondary:hover:not(.btn-active){
- background-color: #C18948 !important;
- color: #fff !important;
+.btn.btn-secondary:hover:not(.btn-active) {
+ background-color: #c18948 !important;
+ color: #fff !important;
}
.btn.btn-primary:hover:not(.btn-active) {
- background-color: #1B243D !important;
+ background-color: #1b243d !important;
}
select.listing_status {
- border: 1px solid #0000004a;
- border-radius: 4px;
+ border: 1px solid #0000004a;
+ border-radius: 4px;
}
.privacy-page h1 {
- font-size: 20px;
+ font-size: 20px;
}
.privacy-page h2 {
- font-size: 18px;
- margin-top: 20px;
+ font-size: 18px;
+ margin-top: 20px;
}
.app-page .app-header .app-container {
- background-color: #1B243D;
+ background-color: #1b243d;
}
.app-navbar .symbol svg {
- color: #fff;
+ color: #fff;
}
.app-page .app-sidebar div#kt_app_sidebar_logo {
- background-color: #1B243D;
- border-right: 1px solid #ffffff73;
- border-style: dashed;
+ background-color: #1b243d;
+ border-right: 1px solid #ffffff73;
+ border-style: dashed;
}
.app-sidebar-logo .btn.btn-active-color-primary:hover:not(.btn-active) {
- color: #1B243D !important;
+ color: #1b243d !important;
}
-.app-sidebar-logo .btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon{
- color: #1B243D !important;
+.app-sidebar-logo
+ .btn.btn-active-color-primary:hover:not(.btn-active)
+ .svg-icon {
+ color: #1b243d !important;
}
.app-sidebar-logo p.app-sidebar-logo-default {
- color: #C18948;
- font-size: 15px;
- margin-bottom: 0;
+ color: #c18948;
+ font-size: 15px;
+ margin-bottom: 0;
}
.app-sidebar-logo p.app-sidebar-logo-default img {
- margin-right: 8px;
+ margin-right: 8px;
}
.app-sidebar .app-sidebar-menu {
- background-color: #1b243d;
+ background-color: #1b243d;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link.active .menu-title {
- color: #c18547;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item
+ .menu-link.active
+ .menu-title {
+ color: #c18547;
}
.app-sidebar .menu-item .menu_tabs.active .menu-link span.menu-title {
- color: #C18948;
+ color: #c18948;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-title, [data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
- color: #C18948;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item.hover:not(.here)
+ > .menu-link:not(.disabled):not(.active):not(.here)
+ .menu-title,
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item:not(.here)
+ .menu-link:hover:not(.disabled):not(.active):not(.here)
+ .menu-title {
+ color: #c18948;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon{
- color: #C18948;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item.hover:not(.here)
+ > .menu-link:not(.disabled):not(.active):not(.here)
+ .menu-icon {
+ color: #c18948;
}
.app-sidebar .menu-item .active .menu-icon span.svg-icon.svg-icon-2 {
- color: #C18948 !important;
+ color: #c18948 !important;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item.hover:not(.here)>.menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon{
- color: #C18948 !important;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item.hover:not(.here)
+ > .menu-link:not(.disabled):not(.active):not(.here)
+ .menu-icon
+ .svg-icon {
+ color: #c18948 !important;
}
-[data-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-title {
- color: #fff;
+[data-kt-app-layout="dark-sidebar"]
+ .app-sidebar
+ .menu
+ .menu-item
+ .menu-link
+ .menu-title {
+ color: #fff;
}
-kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-icon .svg-icon{
- color: #fff;
+kt-app-layout=dark-sidebar] .app-sidebar .menu .menu-item .menu-link .menu-icon .svg-icon {
+ color: #fff;
}
.btn.btn-active-color-primary:hover:not(.btn-active) {
- background-color: #c18948 !important;
+ background-color: #c18948 !important;
}
-.btn-check:active+.btn.btn-primary, .btn-check:checked+.btn.btn-primary, .btn.btn-primary.active, .btn.btn-primary.show, .btn.btn-primary:active:not(.btn-active), .btn.btn-primary:focus:not(.btn-active), .btn.btn-primary:hover:not(.btn-active), .show>.btn.btn-primary {
- background-color: #C18948 !important;
- color: #000;
+.btn-check:active + .btn.btn-primary,
+.btn-check:checked + .btn.btn-primary,
+.btn.btn-primary.active,
+.btn.btn-primary.show,
+.btn.btn-primary:active:not(.btn-active),
+.btn.btn-primary:focus:not(.btn-active),
+.btn.btn-primary:hover:not(.btn-active),
+.show > .btn.btn-primary {
+ background-color: #c18948 !important;
+ color: #000;
}
.sign-up-logo img.theme-light-show {
- width: 230px;
+ width: 230px;
}
.app-navbar-item .symbol span.symbol-badge {
- font-size: 6px;
+ font-size: 6px;
}
.card .chart input#from-date {
- border: 1px solid #0000006b;
- padding: 3px;
- border-radius: 4px;
- margin-right: 5px;
+ border: 1px solid #0000006b;
+ padding: 3px;
+ border-radius: 4px;
+ margin-right: 5px;
}
-.card .chart input#to-date{
- border: 1px solid #0000006b;
- padding: 3px;
- border-radius: 4px;
+.card .chart input#to-date {
+ border: 1px solid #0000006b;
+ padding: 3px;
+ border-radius: 4px;
}
.bgi-no-repeat .bgs {
- background-color: #EEE9E4;
+ background-color: #eee9e4;
}
#update_password #password-error br {
- display: none;
+ display: none;
}
-.founder{
- display: flex;
-
+.founder {
+ display: flex;
}
-table.dataTable tbody td {
- text-align: center;
-}
-.form-check.form-check-sm.form-check-custom {
- justify-content: center;
-}
\ No newline at end of file
+/* table.dataTable tbody td {
+ text-align: center;
+} */
+/* .form-check.form-check-sm.form-check-custom {
+ justify-content: center;
+} */
diff --git a/resources/views/Admin/Pages/contact_form_leads/contact_form_leads.blade.php b/resources/views/Admin/Pages/contact_form_leads/contact_form_leads.blade.php
index 3379ddc..b95941c 100644
--- a/resources/views/Admin/Pages/contact_form_leads/contact_form_leads.blade.php
+++ b/resources/views/Admin/Pages/contact_form_leads/contact_form_leads.blade.php
@@ -1,314 +1,351 @@
@extends('Admin.layouts.master')
@section('title', 'Contact Us Form')
@section('style')
-
+ .dt-buttons {
+ display: none;
+ }
+
@endsection
@section('content')
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
Subject : With
+ resrpect, i must disagree with Mr.Zinsser. We all know the most part of
+ important part....
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
-
+
+
@endsection
@section('scripts')
-
-@endsection
\ No newline at end of file
+ $('#reply_mail_form').validate({
+ ignore: [],
+ debug: false,
+ rules: {
+ subject: 'required',
+ reply: 'required',
+ },
+ message: {
+ subject: "Please enter subject field",
+ reply: "Please enter reply field",
+ },
+ submitHandler: function(form) {
+ var formData = new FormData(form);
+
+ $.ajax({
+ url: "{{ route('reply-mail') }}",
+ type: "POST",
+ data: formData,
+ processData: false,
+ contentType: false,
+ dataType: "json",
+ success: function(result) {
+ if (result.status == 200) {
+ $('#send_mail_reply').modal('hide');
+ toastr.success(result.message);
+ window.location.reload();
+ }
+ if (result.status == 201) {
+ toastr.warning(result.message);
+ }
+ },
+ // error: function(jqXHR) {
+ // $("#request_callback_btn").removeClass("d-none");
+ // $("#loaderContactBtn").addClass("d-none");
+ // warning(jqXHR.responseJSON);
+ // },
+ })
+ }
+ });
+ });
+ });
+
+@endsection
diff --git a/resources/views/Admin/Pages/manage_cms/manage_tag/manage_tag.blade.php b/resources/views/Admin/Pages/manage_cms/manage_tag/manage_tag.blade.php
index 3317aa1..6d52f29 100644
--- a/resources/views/Admin/Pages/manage_cms/manage_tag/manage_tag.blade.php
+++ b/resources/views/Admin/Pages/manage_cms/manage_tag/manage_tag.blade.php
@@ -1,232 +1,253 @@
@extends('Admin.layouts.master')
@section('title', 'Manage Tags')
@section('style')
-
+ .dt-buttons {
+ display: none;
+ }
+
@endsection
@section('content')
-
-
- {{-- @if(session()->has('message'))
+
+
+ {{-- @if (session()->has('message'))
{{ session()->get('message') }}
@endif --}}
-
-
-
-
-
-
-
-
-
-
-
-
-
Are you sure want to delete?
-
@endsection
@section('scripts')
-
-@endsection
\ No newline at end of file
+
+@endsection
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/component/top-pick.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/component/top-pick.blade.php
index 9b81a71..c1ce57a 100644
--- a/resources/views/Admin/Pages/manage_freeu_investment/component/top-pick.blade.php
+++ b/resources/views/Admin/Pages/manage_freeu_investment/component/top-pick.blade.php
@@ -1,11 +1,11 @@
-
+ |
|
-
{{ $product->date }} |
+
{{ $product->date }} |
diff --git a/resources/views/Admin/Pages/manage_freeu_investment/manage_freeu_investment.blade.php b/resources/views/Admin/Pages/manage_freeu_investment/manage_freeu_investment.blade.php
index 347e6c8..829ec65 100644
--- a/resources/views/Admin/Pages/manage_freeu_investment/manage_freeu_investment.blade.php
+++ b/resources/views/Admin/Pages/manage_freeu_investment/manage_freeu_investment.blade.php
@@ -211,11 +211,11 @@
- | Sr No. |
+ Sr No. |
Category |
- Product Name |
- Top Pick |
- Created At |
+ Product Name |
+ Top Pick |
+ Created At |
Actions |
diff --git a/resources/views/Admin/Pages/manage_investors/manage_user_product/manage_user.blade.php b/resources/views/Admin/Pages/manage_investors/manage_user_product/manage_user.blade.php
index 3053854..7601ccb 100644
--- a/resources/views/Admin/Pages/manage_investors/manage_user_product/manage_user.blade.php
+++ b/resources/views/Admin/Pages/manage_investors/manage_user_product/manage_user.blade.php
@@ -25,7 +25,7 @@
|