984 lines
17 KiB
CSS
984 lines
17 KiB
CSS
/* Base setup */
|
|
:root {
|
|
--font-primary: 'Open Sans', sans-serif;
|
|
/* default body font */
|
|
--font-secondary: 'Larken', serif;
|
|
/* decorative font */
|
|
--font-tertiary: 'Inter', sans-serif;
|
|
/* for headings or special text */
|
|
}
|
|
|
|
|
|
.navbar {
|
|
background-color: #033A49;
|
|
/* Dark blue shade */
|
|
padding: 20px 0;
|
|
}
|
|
|
|
/* Logo styling */
|
|
.navbar-brand img {
|
|
width: 147px;
|
|
height: 29px;
|
|
}
|
|
|
|
.navbar-expand-lg .gap-menu {
|
|
flex-direction: row;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Navbar links */
|
|
.nav-link {
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-style: Regular;
|
|
font-size: 16px;
|
|
line-height: 120%;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.nav-link:focus,
|
|
.nav-link:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.text-white {
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
line-height: 120%;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
/* Invest Now button */
|
|
.invest-btn {
|
|
background-color: #b58b4b;
|
|
color: #fff;
|
|
font-family: var(--font-primary);
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
line-height: 100%;
|
|
letter-spacing: 1.2px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
.invest-btn2 {
|
|
background-color: #b58b4b;
|
|
clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
|
|
transition: all 0.3s ease;
|
|
padding: 15px 20px;
|
|
height: 100%;
|
|
display: flex;
|
|
width: 150px;
|
|
}
|
|
|
|
.invest-btn2 a {
|
|
color: #fff;
|
|
font-family: var(--font-primary);
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
line-height: 100%;
|
|
letter-spacing: 1.2px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button-to {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
span.banner-tittle {
|
|
font-family: var(--font-secondary);
|
|
font-weight: 400;
|
|
font-style: Regular;
|
|
font-size: 40px;
|
|
line-height: 100%;
|
|
vertical-align: middle;
|
|
text-transform: capitalize;
|
|
color: #fff;
|
|
}
|
|
|
|
.desc-top {
|
|
margin-top: 17px;
|
|
}
|
|
|
|
span.banner-desc {
|
|
font-family: Open Sans;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 100%;
|
|
text-transform: capitalize;
|
|
color: #fff;
|
|
}
|
|
|
|
.leftslider-line {
|
|
border-left: 2px solid #B18C4A;
|
|
padding-left: 20px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
|
|
|
|
.invest-btn:hover {
|
|
background-color: #b58b4b;
|
|
color: #fff;
|
|
}
|
|
|
|
a.color-a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-family: var(--font-tertiary);
|
|
font-weight: 500;
|
|
font-style: Medium;
|
|
font-size: 13px;
|
|
line-height: 100%;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
.topbar-mobile {
|
|
display: none;
|
|
}
|
|
|
|
.topbar {
|
|
box-shadow: 0px -1px 0px 0px #00000014 inset;
|
|
background-color: #004A5D;
|
|
}
|
|
|
|
/* Remove default border and shadow */
|
|
.navbar-toggler {
|
|
border: none;
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.navbar-toggler:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.navbar-collapse {
|
|
display: none;
|
|
transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
|
|
overflow: hidden;
|
|
max-height: 0;
|
|
opacity: 0;
|
|
}
|
|
|
|
.navbar-collapse.show {
|
|
display: block;
|
|
max-height: 500px;
|
|
/* enough for your menu */
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
/* White close icon */
|
|
.open-icon,
|
|
.close-icon {
|
|
font-size: 22px;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer-section {
|
|
background-image: url("/assests/images/footer-back.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
.footer-section::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: -100px;
|
|
top: 0;
|
|
width: 600px;
|
|
height: 100%;
|
|
background: url('pattern-lines.png') no-repeat right center;
|
|
background-size: contain;
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.footer-desc {
|
|
color: #C4C4C4;
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 140%;
|
|
text-align: left;
|
|
}
|
|
|
|
.social-links {
|
|
text-align: left;
|
|
}
|
|
|
|
.footer-heading {
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
line-height: 120%;
|
|
text-transform: uppercase;
|
|
text-align: left;
|
|
color: #B18C4A;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
font-family: var(--font-primary);
|
|
font-weight: 500;
|
|
font-size: 10px;
|
|
line-height: 120%;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
text-align: left;
|
|
}
|
|
|
|
.footer-bottom-links {
|
|
gap: 40px;
|
|
display: flex;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.social-links a {
|
|
font-size: 1.3rem;
|
|
color: #b7c4c7;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.social-links a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-line {
|
|
border-color: #fff;
|
|
opacity: 1;
|
|
}
|
|
|
|
.text-adjust {
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 100%;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.footer-bottom-links a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
line-height: 100%;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.footer-bottom-links a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* home */
|
|
.Slider-back {
|
|
background-image: url("/assests/images/slider-back.svg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
height: 80vh;
|
|
}
|
|
|
|
.height-banner {
|
|
height: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
|
|
.carousel-indicators [data-bs-target] {
|
|
box-sizing: content-box;
|
|
flex: 0 1 auto;
|
|
width: 8px;
|
|
height: 8px;
|
|
padding: 0;
|
|
margin-right: 3px;
|
|
margin-left: 3px;
|
|
text-indent: -999px;
|
|
cursor: pointer;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 0;
|
|
border-top: 0px solid transparent;
|
|
border-bottom: 0px solid transparent;
|
|
transition: opacity .6s ease;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.ask-advantage {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.ask-advantage h2 {
|
|
font-family: var(--font-secondary);
|
|
font-weight: 400;
|
|
font-style: Regular;
|
|
font-size: 40px;
|
|
line-height: 100%;
|
|
letter-spacing: 0%;
|
|
color: #033A49;
|
|
}
|
|
|
|
.ask-advantage p.lead {
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 100%;
|
|
letter-spacing: 0%;
|
|
color: #3E3F3F;
|
|
margin-bottom: 40px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.advantage-box {
|
|
border-top: 2.4px solid #B18C4A;
|
|
padding-top: 45px;
|
|
transition: all 0.5s ease;
|
|
padding-bottom: 30px;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.advantage-box:hover {
|
|
background-color: #004A5D;
|
|
color: #fff;
|
|
border-top: 0px solid #B18C4A;
|
|
transform: translateY(2px);
|
|
}
|
|
|
|
.advantage-box:hover .advantage-title,
|
|
.advantage-box:hover .advantage-text {
|
|
color: #fff !important;
|
|
}
|
|
|
|
|
|
.advantage-icon {
|
|
color: #b18b4b;
|
|
font-size: 32px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.icone1 {
|
|
width: 53px;
|
|
height: 53.5px;
|
|
}
|
|
|
|
.icone2 {
|
|
width: 60px;
|
|
height: 42.66666793823242px;
|
|
}
|
|
|
|
.icone3 {
|
|
width: 56.5px;
|
|
height: 46.4052734375px;
|
|
}
|
|
|
|
.icone4 {
|
|
width: 50.6652946472168px;
|
|
height: 50.667842864990234px;
|
|
}
|
|
|
|
.advantage-title {
|
|
margin-bottom: 8px;
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 21px;
|
|
line-height: 30px;
|
|
vertical-align: middle;
|
|
color: #3E3F3F;
|
|
|
|
|
|
}
|
|
|
|
.advantage-text {
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 25px;
|
|
letter-spacing: 0%;
|
|
vertical-align: middle;
|
|
color: #3E3F3F;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.stats-section {
|
|
background-color: rgba(241, 223, 184, 0.25);
|
|
/* soft cream */
|
|
padding: 60px 0px;
|
|
}
|
|
|
|
.stat-box h3 {
|
|
color: #B18C4A;
|
|
margin-bottom: 0.3rem;
|
|
font-family: var(--font-secondary);
|
|
font-weight: 400;
|
|
font-size: 40px;
|
|
line-height: 60px;
|
|
}
|
|
|
|
.width-count {
|
|
width: 23%;
|
|
text-align: left;
|
|
}
|
|
|
|
.width-count2 {
|
|
width: 29%;
|
|
padding-left: 58px;
|
|
}
|
|
|
|
.width-count3 {
|
|
width: 23%;
|
|
padding-left: 60px;
|
|
}
|
|
|
|
.width-count4 {
|
|
width: 23%;
|
|
padding-left: 55px;
|
|
}
|
|
|
|
.stat-box p {
|
|
letter-spacing: 0.8px;
|
|
color: #3E3F3F;
|
|
margin: 0;
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
line-height: 28px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.stat-box {
|
|
text-align: left;
|
|
}
|
|
|
|
.stat-border {
|
|
position: relative;
|
|
}
|
|
|
|
.stat-border::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 1px;
|
|
height: 80px;
|
|
background-color: #B18C4A;
|
|
/* gold tone line */
|
|
}
|
|
|
|
/* ✅ Remove divider for first item */
|
|
.row .col-md-3:first-child::before {
|
|
display: none;
|
|
}
|
|
|
|
.as-of-date {
|
|
text-align: center;
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-style: Italic;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
color: #929197;
|
|
}
|
|
|
|
|
|
.text-primary {
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 21px;
|
|
line-height: 28px;
|
|
vertical-align: middle;
|
|
color: #004A5D !important;
|
|
}
|
|
|
|
.text-muted {
|
|
color: #3E3F3F !important;
|
|
font-family: var(--font-primary);
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.icon1 {
|
|
width: 43px;
|
|
height: 41px;
|
|
}
|
|
|
|
.icon2 {
|
|
width: 50px;
|
|
height: 41px;
|
|
}
|
|
|
|
.icon3 {
|
|
height: 41px;
|
|
width: 54px;
|
|
}
|
|
|
|
.icon4 {
|
|
height: 41px;
|
|
}
|
|
|
|
.icon5 {
|
|
height: 41px;
|
|
}
|
|
|
|
.icon6 {
|
|
height: 41px;
|
|
}
|
|
|
|
.icon7 {
|
|
height: 41px;
|
|
}
|
|
|
|
.icon8 {
|
|
height: 41px;
|
|
}
|
|
|
|
.padding-icon {
|
|
padding: 0px 80px 0px 30px;
|
|
}
|
|
|
|
.padding-icon1 {
|
|
padding: 0px 99px 0px 20px;
|
|
}
|
|
|
|
.padding-icon2 {
|
|
padding: 0px 114px 0px 0px;
|
|
}
|
|
|
|
.padding-icon3 {
|
|
padding: 0px 80px 0px 0px;
|
|
}
|
|
|
|
.padding-icon4 {
|
|
padding: 0px 93px 0px 30px;
|
|
}
|
|
|
|
.padding-icon5 {
|
|
padding: 0px 80px 0px 20px;
|
|
}
|
|
|
|
.padding-icon6 {
|
|
padding: 0px 133px 0px 0px;
|
|
}
|
|
|
|
.padding-icon7 {
|
|
padding: 0px 121px 0px 0px;
|
|
}
|
|
|
|
.gy-4 {
|
|
--bs-gutter-y: 2.5rem;
|
|
}
|
|
|
|
.mt-row {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
/* Logo styling */
|
|
.navbar-brand img {
|
|
width: 120px;
|
|
height: 24px;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 25px 0 25px;
|
|
}
|
|
|
|
.footer-line {
|
|
border-color: #fff;
|
|
margin-top: 15px !important;
|
|
|
|
}
|
|
|
|
.footer-bottom-links {
|
|
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.footer-section {
|
|
background-image: url("/assests/images/Mobile-Footer.svg");
|
|
/* your image path */
|
|
|
|
}
|
|
|
|
.Slider-back {
|
|
background-image: url(/assests/images/mobile-banner.svg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center;
|
|
height: 90vh;
|
|
}
|
|
|
|
span.banner-tittle {
|
|
font-family: var(--font-secondary);
|
|
font-weight: 400;
|
|
vertical-align: middle;
|
|
color: #fff;
|
|
font-size: 36px;
|
|
line-height: 44px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.mobile-resp-count {
|
|
flex-direction: column;
|
|
gap: 30px;
|
|
}
|
|
|
|
.stat-border::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
top: -163%;
|
|
width: 1px;
|
|
height: 210px;
|
|
background-color: #B18C4A;
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.width-count {
|
|
width: 100%;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.width-count2 {
|
|
width: 100%;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.width-count3 {
|
|
width: 100%;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.width-count4 {
|
|
width: 100%;
|
|
padding-left: 0px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.stat-box {
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.stat-box h3 {
|
|
font-size: 24px;
|
|
line-height: 42px;
|
|
}
|
|
|
|
.stat-box p {
|
|
line-height: 16px;
|
|
}
|
|
|
|
.ask-advantage h2 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.ask-advantage p.lead {
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.advantage-card {
|
|
background: #fff;
|
|
box-shadow: 0px 2px 8px 0px #0000001F;
|
|
padding: 30px 40px;
|
|
text-align: left;
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
height: 100%;
|
|
/* 👈 important for equal height inside flex container */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
height: 320px;
|
|
|
|
}
|
|
|
|
.advantage-card::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 4px;
|
|
background-color: #B18C4A;
|
|
/* gold line */
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper {
|
|
padding-left: 5px;
|
|
padding-right: 10px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.swiper-slide {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: stretch;
|
|
/* 👈 ensures equal height */
|
|
}
|
|
|
|
.advantage-title {
|
|
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.padding-icon {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 0px;
|
|
margin-right: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon1 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 0px;
|
|
margin-left: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon2 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-right: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon3 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-left: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon4 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-right: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon5 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-left: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon6 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-right: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.padding-icon7 {
|
|
padding: 30px 15px;
|
|
border: 0.5px solid #E6E7E8;
|
|
border-radius: 12px;
|
|
margin-top: 20px;
|
|
margin-left: 10px;
|
|
width: 47%;
|
|
}
|
|
|
|
.mt-row {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.topbar {
|
|
display: none;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #033a4900;
|
|
padding: 0 0;
|
|
border-bottom: 1px solid #033A49;
|
|
}
|
|
|
|
.container,
|
|
.container-md,
|
|
.container-sm {
|
|
max-width: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.navbar-brand {
|
|
padding: 0;
|
|
}
|
|
|
|
.mobile-adj {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
background: #033A49;
|
|
justify-content: space-between;
|
|
padding: 20px 25px;
|
|
}
|
|
|
|
.d-flex {
|
|
display: block !important;
|
|
}
|
|
|
|
.nav-link {
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
line-height: 120%;
|
|
text-align: left;
|
|
color: #033A49;
|
|
border-bottom: 1px solid #E6E7E8;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.navbar-expand-lg .gap-menu {
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 25px 25px 12px 25px;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #033A49 !important;
|
|
}
|
|
|
|
.ms-auto {
|
|
margin-left: auto !important;
|
|
padding: 0 25px 20px 25px;
|
|
}
|
|
|
|
.text-white {
|
|
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
line-height: 120%;
|
|
text-align: left;
|
|
color: #033A49 !important;
|
|
border-bottom: 1px solid #E6E7E8;
|
|
padding-bottom: 15px;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.invest-btn {
|
|
display: none;
|
|
}
|
|
|
|
i.bi.bi-chevron-down {
|
|
display: none;
|
|
}
|
|
|
|
.mobile-call {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 0 25px 25px 25px;
|
|
}
|
|
|
|
a.color-b {
|
|
gap: 10px;
|
|
text-decoration: none;
|
|
display: flex;
|
|
color: #3E3F3F;
|
|
font-family: var(--font-primary);
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.topbar-mobile {
|
|
display: block;
|
|
}
|
|
|
|
.footer-section {
|
|
padding: 0 25px;
|
|
|
|
}
|
|
|
|
.text-adjust {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.footer-bottom-links {
|
|
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.Slider-back {
|
|
|
|
padding-left: 25px;
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.ask-advantage {
|
|
padding: 60px 25px !important;
|
|
}
|
|
|
|
.stats-section {
|
|
|
|
padding: 40px 25px !important;
|
|
}
|
|
} |