/* ---------------------------------------

[Main Stylesheet]

Project:    	Kechvest - Investment System
Version:    	1.0
Primary Use:    Investment Website

------------------------------------------

[Table of Contents]

1. Fonts
2. Reset CSS
3. Global Settings
4. Section Styles
5. Colors
6. Margin and Padding
7. Background Overlay
8. Buttons Style
9. Preloader
10. ScrollUp Button

-------------------------------------------*/

/* Font Family: Fivo Sans Modern */
@font-face {
    font-family: "Fivo Sans Modern", sans-serif;
    src: url("../../fonts/fivo-sans-modern/FivoSansModern-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fivo Sans Modern", sans-serif;
    src: url("../../fonts/fivo-sans-modern/FivoSansModern-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fivo Sans Modern", sans-serif;
    src: url("../../fonts/fivo-sans-modern/FivoSansModern-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --kv-navy: #091126;
    --kv-navy-soft: #0d1a31;
    --kv-teal: #0f8e82;
    --kv-teal-deep: #11675e;
    --kv-teal-glow: #00b8a5;
    --kv-ink: #101827;
    --kv-muted: #596070;
    --kv-line: rgba(0, 190, 172, 0.23);
    --kv-white: #ffffff;
}

*,*::before,*::after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--kv-ink);
    background: var(--kv-navy);
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.kv-container {
    max-width: 1060px;
}

.kv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 273px;
    min-height: 53px;
    padding: 14px 34px 13px;
    border: 1px solid rgba(70, 213, 198, 0.55);
    border-radius: 999px;
    background: linear-gradient(180deg, #167b72 0%, #0e6a62 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 13px 34px rgba(0, 141, 126, 0.2);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.kv-btn:hover,
.kv-btn:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 17px 42px rgba(0, 141, 126, 0.32);
}

.kv-btn i {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 22px;
    line-height: 1;
}

.kv-mark {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 35px;
    background: #f8fbff;
    clip-path: polygon(0 8%, 68% 0, 100% 50%, 62% 100%, 0 88%);
}

.kv-mark::before {
    content: "";
    position: absolute;
    inset: 7px 11px 7px 7px;
    background: var(--kv-teal-deep);
    clip-path: polygon(0 0, 100% 0, 56% 100%, 0 76%);
}

.kv-mark::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 12px;
    height: 15px;
    background: var(--kv-navy);
    clip-path: polygon(44% 0, 100% 18%, 54% 100%, 0 77%);
    opacity: 0.95;
}

/* Top early access section */
.early-hero {
    min-height: 832px;
    padding-top: 116px;
    background:
        radial-gradient(circle at 80.5% 49%, rgba(56, 216, 198, 0.28) 0 8%, rgba(56, 216, 198, 0.13) 13%, rgba(255, 255, 255, 0) 27%),
        #fbfbfb;
}

.early-hero__row {
    min-height: 632px;
}

.early-copy {
    padding-top: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 151px;
    height: 25px;
    margin-bottom: 21px;
    border-radius: 999px;
    background: #07142a;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.early-copy h1 {
    max-width: 420px;
    margin: 0 0 15px;
    color: #102033;
    font-size: 34px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.early-copy h1 span {
    color: #126d65;
}

.lead-copy {
    max-width: 382px;
    margin: 0 0 30px;
    color: #1d2432;
    font-size: 15px;
    line-height: 1.32;
    letter-spacing: -0.012em;
}

.early-copy h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.benefit-list {
    display: grid;
    gap: 15px;
    margin: 0 0 22px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #4a5361;
    font-size: 13px;
    font-weight: 500;
}

.benefit-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: #a7dbd7;
    color: #1a8a81;
    font-size: 13px;
    font-weight: 700;
}

.priority-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    width: 315px;
    min-height: 111px;
    padding: 24px 22px 17px;
    border-radius: 12px;
    background: #08122a;
    box-shadow: 0 7px 18px rgba(7, 18, 42, 0.1);
    color: #ffffff;
}

.priority-card__icon {
    margin-top: -1px;
    font-size: 31px;
    line-height: 1;
}

.priority-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 1;
}

.priority-card span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 8px;
}

.priority-card p {
    max-width: 240px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 7px;
    line-height: 1.45;
}

.form-column {
    display: flex;
    justify-content: center;
}

.reserve-card {
    position: relative;
    width: 460px;
    min-height: 630px;
    padding: 47px 82px 56px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 29px;
    background:
        radial-gradient(circle at 21% 12%, rgba(28, 93, 104, 0.62), rgba(28, 93, 104, 0) 32%),
        radial-gradient(circle at 63% 39%, rgba(16, 104, 95, 0.18), rgba(16, 104, 95, 0) 38%),
        linear-gradient(154deg, #153e52 0%, #0b1023 67%);
    box-shadow: 0 16px 22px rgba(0, 0, 0, 0.17);
    color: #ffffff;
    overflow: hidden;
}

.reserve-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(125deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px);
    opacity: 0.18;
    pointer-events: none;
}

.reserve-card > * {
    position: relative;
    z-index: 1;
}

.reserve-card .kv-mark {
    display: block;
    width: 28px;
    height: 33px;
    margin-bottom: 62px;
}

.reserve-card img.kv-mark {
    background: transparent;
    clip-path: none;
    object-fit: contain;
}

.reserve-card img.kv-mark::before,
.reserve-card img.kv-mark::after {
    content: none;
}

.reserve-card h2 {
    margin: 0 0 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.reserve-card p {
    margin: 0 0 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 7px;
    font-weight: 500;
}

.form-stack {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}

.form-stack input {
    width: 100%;
    height: 41px;
    padding: 0 19px;
    border: 1px solid rgba(0, 164, 149, 0.28);
    border-radius: 5px;
    outline: 0;
    background: rgba(12, 104, 97, 0.38);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
}

.form-stack input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.form-stack input:focus {
    border-color: rgba(55, 225, 207, 0.7);
    box-shadow: 0 0 0 3px rgba(0, 184, 165, 0.15);
}

.interest-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px 18px;
    padding: 0;
    margin: 0 0 22px;
    border: 0;
}

.interest-group legend {
    width: 100%;
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.interest-group label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 7px;
    font-weight: 600;
    cursor: pointer;
}

.interest-group input {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: var(--kv-teal);
}

.reserve-card__btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-bottom: 26px;
    font-size: 15px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.social-row a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1;
}

/* Priority access section */
.priority-section {
    position: relative;
    min-height: 1648px;
    padding: 83px 0 107px;
    background:
        radial-gradient(ellipse at 50% 58%, rgba(0, 178, 160, 0.3) 0, rgba(0, 178, 160, 0.14) 6%, rgba(9, 17, 38, 0) 18%),
        linear-gradient(180deg, #091126 0%, #091126 100%);
    color: #ffffff;
    overflow: hidden;
}

.section-heading {
    margin-bottom: 42px;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 25px;
    margin-bottom: 27px;
    border-radius: 999px;
    background: rgba(17, 126, 115, 0.72);
    color: #c7f3ef;
    font-size: 9px;
    font-weight: 700;
}

.section-heading h2 {
    margin: 0 0 19px;
    color: #f7f8ff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.section-heading p {
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.32;
    letter-spacing: -0.01em;
}

.section-heading strong {
    color: var(--kv-teal-glow);
    font-size: 11px;
    font-weight: 700;
}

.slots-panel {
    display: grid;
    grid-template-columns: 1fr 209px;
    width: 875px;
    min-height: 429px;
    margin: 0 auto 74px;
    padding: 57px 60px 55px 65px;
    border: 1px solid rgba(71, 204, 192, 0.24);
    border-radius: 14px;
    background:
        radial-gradient(circle at 40% 29%, rgba(4, 105, 97, 0.42), transparent 49%),
        linear-gradient(135deg, rgba(13, 43, 59, 0.78), rgba(9, 17, 38, 0.54));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.slots-panel__grid {
    padding-right: 48px;
}

.slots-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 7px;
    font-weight: 600;
}

.slots-meta strong {
    color: var(--kv-teal-glow);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(10, 38px);
    gap: 10px 11px;
    margin-bottom: 22px;
}

.slot-grid span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(20, 97, 88, 0.33);
}

.slot-grid span.is-claimed {
    background: linear-gradient(90deg, #00a998, #008a7f);
    box-shadow: 0 0 10px rgba(0, 185, 166, 0.12);
}

.slot-legend {
    display: flex;
    gap: 34px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 8px;
    font-weight: 600;
}

.slot-legend i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 4px;
    border-radius: 50%;
    background: var(--kv-teal-glow);
    vertical-align: 1px;
}

.early-benefits {
    width: 257px;
    min-height: 51px;
    padding: 15px 21px;
    border: 1px solid rgba(0, 184, 165, 0.31);
    border-radius: 5px;
    background: rgba(14, 108, 101, 0.43);
}

.early-benefits strong,
.early-benefits span {
    display: block;
}

.early-benefits strong {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 8px;
}

.early-benefits span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 7px;
}

.slots-panel__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 219px;
    margin-top: 52px;
    border-left: 1px solid rgba(75, 196, 186, 0.25);
}

.slots-panel__stat strong {
    color: var(--kv-teal-glow);
    font-size: 49px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.slots-panel__stat span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 8px;
    font-weight: 700;
}

.slots-panel__stat small {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 7px;
}

.mid-cta {
    margin-bottom: 316px;
}

.mid-cta .kv-btn {
    min-width: 278px;
    min-height: 51px;
}

.mid-cta span {
    display: block;
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 7px;
}

.showcase-card {
    width: 865px;
    margin: 0 auto;
    border-radius: 13px;
    overflow: hidden;
}

.showcase-card img {
    width: 100%;
}

/* Footer section */
.site-footer {
    position: relative;
    min-height: 464px;
    padding: 66px 0 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(23, 91, 107, 0.78), rgba(23, 91, 107, 0) 36%),
        linear-gradient(154deg, #174a59 0%, #091126 70%);
    color: #ffffff;
    overflow: hidden;
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 184, 165, 0.36);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 151px;
}

.footer-logo .kv-mark {
    width: 31px;
    height: 36px;
}

.footer-logo strong,
.footer-logo small {
    display: block;
}

.footer-logo strong {
    color: #f7fbff;
    font-size: 23px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0.03em;
}

.footer-logo small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 6px;
    letter-spacing: 0.18em;
}

.footer-brand p {
    max-width: 348px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    line-height: 1.55;
}

.footer-benefits {
    margin: 0 0 15px;
}

.footer-benefits li {
    position: relative;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 9px;
    line-height: 1.55;
}

.footer-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--kv-teal-glow);
}

.footer-socials {
    display: flex;
    gap: 13px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 27px;
    color: #f5f7fb;
    font-size: 18px;
    font-weight: 700;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 10px;
}

.footer-links a {
    margin-bottom: 19px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact span {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-contact a {
    margin-bottom: 19px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.footer-bottom nav {
    display: flex;
    gap: 38px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.footer-watermark {
    position: absolute;
    left: 232px;
    bottom: -115px;
    display: flex;
    align-items: center;
    gap: 34px;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.footer-watermark .kv-mark {
    width: 190px;
    height: 222px;
    opacity: 0.18;
}

.footer-watermark strong {
    font-size: 116px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-watermark img {
    width: 888px;
    height: auto;
    opacity: 0.04;
}


/* henry-css */

.header-wrapper {
    background: linear-gradient(135deg, #224c5e -40%, #0d1b26 100%) /*url(../img/header_bg.png) no-repeat center top / cover*/;
    height: 724px;
    overflow: hidden;
}

header {
    padding: 20px 30px;
}
ul.navbar-nav li {
    padding-right: 32px;
}
ul.navbar-nav li:last-child {
    padding-right: 0;
}
ul.navbar-nav li a{
    color: rgba(234, 234, 234, 1);
    font-size: 14px;
    font-weight: 500;
}
.top-cta {
    font-size: 16px;
    background-color: rgba(21, 79, 75, 1);
    border-color: rgba(7, 138, 133, 1);
    border-radius: 100px;
    font-weight: 700;
    padding: 12px 24px;
    transition: transform 0.2s ease;
}
.top-cta:hover {
   background-color: rgba(21, 79, 75, 1);
   background-color: #000;
   transform: scale(0.95);
}
ul.navbar-nav li a:hover {
    color: rgba(255, 255, 255, 1);
}
.hero-banner{
    padding-top: 16px;
}
.hero-banner-content-left {
 padding-top: 65px;
}
.banner-subheading {
    display: flex;
    background-color: rgba(21, 79, 75, 1);
    border:0.5px solid rgba(7, 138, 133, 1);
    border-radius: 14px;
    padding: 5px 8px;
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin-bottom: 20px;
}
.banner-subheading img {
    width: 23px;
    height: 23px;
    margin-right: 10px;
}
.banner-subheading p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(234, 234, 234, 1);
}
.banner-heading {
    margin-bottom: 48px;
}
.banner-heading h1 {
    font-size: 50px;
    font-weight: 700;
    color: rgba(234, 234, 234, 1)
}
.banner-heading img {
    margin-top: -15px;
}
.banner-heading p {
    color: rgba(234, 234, 234, 1);
    font-size: 14px;
    font-weight: 400;
    width: 304px;
    margin-top: 22px;
}
.banner-heading p span {
    font-weight: 600;
}
.banner-cta {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 13px;
}
.banner-cta-wrapper-left {
    display: flex;
    background-color: rgba(234, 234, 234, 1);
    border-radius: 100px;
    border: 1px solid rgba(7, 138, 133, 1);
    width: fit-content;
    justify-content: start;
    align-items: center;
    transition: transform 0.2s ease;
}
.layout-center-cta-left {
    background: rgba(21, 79, 75, 1) !important;
    border: 1px solid rgba(7, 138, 133, 1);
    display: flex;
    border-radius: 100px;
    width: fit-content;
    justify-content: start;
    align-items: center;
    transition: transform 0.2s ease;
}
.layout-center-cta-left a {
    padding: 16px 24px !important;
}
.layout-center-cta-right {
    background: rgba(16, 26, 46, 1) !important;
    border: 1.2px solid rgba(19, 31, 56, 1) !important;
    transition: transform 0.2s ease;
}
.banner-cta-wrapper-left:hover {
    background-color: #000;
    transform: scale(0.95);
}
.layout-center-cta-left:hover {
    background-color: #000;
    transform: scale(0.95);
}
.layout-center-cta-left:hover ~ .layout-center-cta-right {
    transform: scale(0.95);
}
.banner-cta-wrapper-left:hover ~ .banner-cta-wrapper-right {
    transform: scale(0.95);
}
.banner-cta-wrapper-left a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 12px 12px;
    width: 210px;
    justify-content: center;
}
.banner-cta-wrapper-left a span {
    padding-right: 8px;
    font-weight: 700;
    color: rgba(21, 79, 75, 1);
    font-size: 16px;
}
.layout-center-cta-left a span {
    padding-right: 8px;
    font-weight: 700;
    color: #eaeaea;
    font-size: 16px;
}
.banner-cta-wrapper-left a img,
.layout-center-cta-left a img {
    flex: 0 0 auto;
}
.progress {
    background: linear-gradient(95.75deg, rgba(7, 138, 133, 0.2) 31.39%, rgba(2, 36, 35, 0) 168.28%);
    height: 7px;
    margin-top: 16px;
    margin-bottom: 16px;
}
.progress-bar {
    background: linear-gradient(96.21deg, #078A85 12.01%, #022423 216.24%);
}

.progress-bar--85 {
    width: 85%;
}

.banner-cta-wrapper-right {
    background-color: rgba(21, 79, 75, 1);
    border: 1.2px solid rgba(7, 138, 133, 1);
    border-radius: 109px;
    transition: transform 0.2s ease;
}
.banner-cta-wrapper-right a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 13px 18px;
}
.banner-cta-wrapper-right img:first-child {
    padding-right: 10px;
}
.banner-cta-wrapper-right img:nth-child(3) {
    padding-left: 10px;
    padding-right: 10px;
}
.banner-cta-wrapper-right a span {
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
}
.hero-banner-content-right {
    margin-left: -40px;
}

/*** Invest Opportunities section starts here ***/
.invest-opportunities {
    background-color: rgba(14, 22, 39, 1);
    padding-top: 154px;
    padding-bottom: 196px;
}

.tip-info-wrapper {
    background: rgba(79, 21, 21, 1);
    border: 0.5px solid rgba(222, 71, 71, 1);
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 5px 7px;
    border-radius: 14px;
    margin-bottom: 20px;
}
.tip-info-wrapper p {
    margin-bottom: 0;
    color: rgba(234, 234, 234, 1);
    font-size: 12px;
    font-weight: 500;
    margin-left: 2px;
}
.invest-opportunities-first-row {
    margin-bottom: 24px;
}
.invest-opportunities-first-row-left h2 {
    font-weight: 700;
    font-size: 30px;
    color: rgba(255, 255, 255, 1);
}
.invest-opportunities-first-row-left h2 span.not_be{
    color: rgba(7, 138, 133, 1);
}

.invest-opportunities-first-row-left h2 span.many-people{
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 1);
}
.invest-opportunities-first-row-right {
    padding-top: 70px;
    /*margin-left: -100px;*/
}
.invest-opportunities-first-row-right-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 376px;
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.2) 12.01%, rgba(2, 36, 35, 0.2) 216.24%);
    border: 1px solid rgba(7, 138, 133, 1);
    padding: 28px 46px;
    border-radius: 16px;
}

.invest-opportunities-first-row-right-inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(7, 138, 133, 1);
    margin-left: 33px;
    margin-bottom: 0;
}

.invest-opportunities-second-row {
    /*margin-bottom: 24px;*/
}

.invest-opportunities-second-row-left, .invest-opportunities-second-row-right { 
    margin-bottom: 24px;
}
.invest-opportunities-second-row-left-inner, .invest-opportunities-second-row-right-inner {
    display: flex;
    justify-content: center;
    padding: 28px 46px;
    align-items: center;
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.2) 12.01%, rgba(2, 36, 35, 0.2) 216.24%);
    border: 1px solid rgba(7, 138, 133, 1);
    border-radius: 16px;
}

.invest-opportunities-second-row-left-inner h3, .invest-opportunities-second-row-right-inner h3{
    color: rgba(7, 138, 133, 1);
    font-size: 20px;
    font-weight: 700;
    margin-left: 33px;
    margin-bottom: 0;
}

p.invest-opportunity-tips {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    font-weight: 400;
    width: 269px;
    margin-bottom: 15px;
}
.invest-opportunities-third-row-left-inner {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(7, 138, 133, 1);
    border-radius: 8px;
    padding: 14px 14px;
    width: fit-content;
}
.invest-opportunities-third-row-left-inner p {
    margin-bottom: 0;
}
.invest-opportunities-third-row-left-inner p span.kech {
    color: rgba(21, 79, 75, 1);
    font-size: 14px;
    font-weight: 700;
}
.invest-opportunities-third-row-left-inner p span.platform {
    color: rgba(14, 22, 39, 1);
    font-size: 14px;
}
#iotrr {
    width: 36%;
}
.invest-opportunities-third-row-right {
    margin-left: -70px;
}
.invest-opportunities-third-row-right-inner {
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.2) 12.01%, rgba(2, 36, 35, 0.2) 216.24%);
    border: 1px solid rgba(7, 138, 133, 1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 46px;
}
.invest-opportunities-third-row-right-inner h3 {
    color : rgba(7, 138, 133, 1);
    font-size: 20px;
    margin-left: 33px;
    width: fit-content;
    font-weight: 700;
    margin-bottom: 0;

}
/*** Invest Opportunities section end here ***/

/**** One Plaftorm ****/
.one-platform {
    background: url(../img/one-plattform-card-bg.png);
    background-repeat: repeat-y;
    height: auto;
    padding-bottom: 50px;
}
.one-platform-heading {
    margin-bottom: 127px;
}
.heading_text {
    color: rgba(234, 234, 234, 1);
    background: rgba(21, 79, 75, 1);
    border: 0.5px solid rgba(7, 138, 133, 1);
    display: inline-block;
    border-radius: 14px;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 14px;
}
.heading_text span {
    font-weight: 700;
}
.one-platform-row-1 h2 {
    font-size: 30px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
}
.one-platform-row-1 h2 span {
    color: rgba(7, 138, 133, 1);
    font-weight: 700;
}
.sub-heading-platform {
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    width: 549px;
    margin: 0 auto;
}
.invest-card {
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.2) 12.01%, rgba(2, 36, 35, 0.2) 216.24%);
    padding: 48px 48px;
    border-radius: 16px;
    margin-bottom: 78px;
    border: 1px solid #078a85;
    height: 540px;
}
.invest-icon {
    margin-bottom: 24px;
}
.invest-card-inner h3 {
    font-weight: 700;
    font-size: 24px;
    color: #eaeaea;
}
.invest-card-inner p {
    font-weight: 400;
    font-size: 13px;
    color: #eaeaea;
    margin-bottom: 24px;
    width: 333px;
}
img.card-price-line {
    margin-bottom: 24px;
}
ul.price-features {
    position: relative;
    padding-left: 0;
}
ul.price-features li {
    list-style-type: none;
    position: relative;
    padding-left: 32px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #eaeaea;
}
ul.price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    width: 28px;
    height: 28px;
    background-image: url("../img/checkmark.png"); /* Your image path */
    background-size: contain;
    background-repeat: no-repeat;
}
.price-card-button {
    text-align: center;
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.2) 12.01%, rgba(2, 36, 35, 0.2) 216.24%);
    border: 1px solid rgba(7, 138, 133, 1);
    width: 100%;
    border-radius: 100px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #078a85;
    margin-top: 24px;
}
.how-it-works-inner {
    padding-left: 50px;
}
.how-it-works-inner-right-col {
    margin-bottom: 64px;
}
.how-it-works h4, .how-it-works-right h4 {
    color: #078a85;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}
.how-it-works ul, .how-it-works-right ul {
    list-style-type: none;
    padding-left: 0;
}
.how-it-works ul li, .how-it-works-right ul li {
    color: #ffffff;
    font-size: 13px;
    position: relative;
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}
.how-it-works ul li::before, .how-it-works-right ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 71px;
    background-image: url("../img/dots.png"); /* Your image path */
    background-size: contain;
    background-repeat: no-repeat;
}
.how-it-works ul li:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background-image: url("../img/dot_only.png"); /* Your image path */
    background-size: contain;
    background-repeat: no-repeat;
}
.how-it-works-right ul li:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background-image: url("../img/dot_only.png"); /* Your image path */
    background-size: contain;
    background-repeat: no-repeat;
}
.how-it-works ul li:nth-child(3) {
    overflow: hidden;
}
.how-it-works-right ul li:nth-child(2) {
    overflow: hidden;
}

.investment-card-details {
    margin-top: 31px;
    border: 1px solid #078a85;
    border-radius: 16px;
    padding: 15px 40px;
    width: fit-content;
}
img.card-line {
    width: 100%;
}
.investment-card-details-row-1 h4 {
    color: #eaeaea;
    margin-bottom: 0;
}
.investment-card-details-row-1-left h4 {
    font-weight: 700;
}
.investment-card-details-row-1 p {
    margin-bottom: 0;
    color: #eaeaea;
    font-size: 10px;
    padding-bottom: 15px;
}
.investment-card-details-row-1-right {
    text-align: right;
    position: relative;
}
.investment-card-details-row-1-right-rightcol {
    text-align: right;
    position: relative;
}
.investment-card-details-row-1-right p {
    color: #eaeaea;
    font-size: 8px;
    font-weight: 500;
    background: #156d22;
    border: 1px solid #078a85;
    display: inline-block;
    padding: 5px 14px;
    font-size: 9px;
    border-radius: 14px;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: -10px;
}
.investment-card-details-row-1-right-rightcol p {
    color: #eaeaea;
    font-size: 8px;
    font-weight: 500;
    background: #078a85;
    /* border: 1px solid #078a85; */
    display: inline-block;
    padding: 5px 14px;
    font-size: 9px;
    border-radius: 14px;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: -10px;
}
.investment-card-details-row-2-right p {
    color: #eaeaea;
    font-size: 8px;
    font-weight: 500;
    background: #078a85;
    border: 1px solid #078a85;
    display: inline-block;
    padding: 5px 14px;
    font-size: 9px;
    border-radius: 14px;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: -10px;
}
.investment-card-details-row-2_inner p:first-child {
    color: #078a85;
    margin-bottom: 0;
    font-size: 10px;
}
.investment-card-details-row-2_inner p:last-child {
    color: #eaeaea;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
}
p.right_inner_list {
    color: #078a85 !important;
    margin-bottom: 0;
    font-size: 10px;
}
p.monthly {
    color: #717171 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}
.structure {
    display: flex;
    justify-content: start;
    align-items: center;
}
.structure p {
    margin-bottom: 0;
    margin-left: 5px;
}
.card-summary {
    display: flex;
    justify-content: start;
    align-items: center;
}
.card-summary p {
    margin-bottom: 0;
    color: #eaeaea;
    font-size: 10px;
    margin-left: 5px;
}
.one-platform-row-3 {
    margin-top: 104px;
}
/**** end one platform section ******/

/********** designed for trust ***********/
.designed_for_trust {
    background: url(../img/one-plattform-card-bg.png);
    background-repeat: repeat-y;
    height: auto;
    padding-bottom: 50px;
}
.designed_for_trust_row_1_left p {
    font-weight: 700;
    font-size: 10px;
    color: rgba(234, 234, 234, 1);
    background: rgba(21, 79, 75, 1);
    border: 0.5px solid rgba(7, 138, 133, 1);
    padding: 5px 8px;
    border-radius: 14px;
    width: max-content;
}
.designed_for_trust_row_1_left h3 {
    font-weight: 700;
    font-size: 30px;
    color: rgba(234, 234, 234, 1);
}
.designed_for_trust_row_1 {
    margin-bottom: 58px;
}
.designed_for_trust_row_1_left h3 span {
    color: rgba(21, 79, 75, 1);
}
.designed_for_trust_row_1_right p {
    font-weight: 700;
    font-size: 16px;
    color: rgba(234, 234, 234, 1);
}
.designed_for_trust_row_1_right p span {
    font-weight: 400;
    color: rgba(7, 138, 133, 1);
}
.designed_for_trust_row_2_wrapper {
    border: 1px solid rgba(7, 138, 133, 1);
    border-radius: 16px;
    padding: 24px 40px;
}
.designed_for_trust_row_2_inner_card img {
    margin-bottom: 24px;
}
.designed_for_trust_row_2_inner_card h3 {
    font-weight: 700;
    font-size: 24px;
    color: rgba(234, 234, 234, 1);
    margin-bottom: 8px;
}
.designed_for_trust_row_2_inner_card p {
    color: rgba(180, 180, 180, 1);
    font-size: 14px;
}
.card_line {
    position: relative;
    padding-left: 15px;
}
.card_line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 148px;
    height: 178px;
    background-image: url("../img/card_line.png"); /* Your image path */
    background-size: contain;
    background-repeat: no-repeat;
}
.top_space{
    margin-top: 48px;
}
/********** end designed for trust section ******/
/************* deversifield investment top section ************/
.diversified-investment {
    background: url(../img/one-plattform-card-bg.png);
    background-repeat: repeat-y;
    height: auto;
    padding-top: 79px;
    padding-bottom: 150px;
}
p.upper_text{
    color: rgba(234, 234, 234, 1);
    font-size: 10px;
    background: rgba(21, 79, 75, 1);
    padding: 5px 8px;
    border-radius: 14px;
    max-width: fit-content;
    margin: 0 auto;
    border: 0.5px solid rgba(7, 138, 133, 1)
}
.diversified-investment-top h4 {
    font-weight: 700;
    font-size: 30px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 1);
}
.diversified-investment-top h4 span {
    color: rgba(7, 138, 133, 1);
}
p.bottom_text {
    width: 467px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 36px;
}
p.bottom_text span {
    color:  rgba(7, 138, 133, 1);
    font-weight: 500;
}
.diversified-investment-bottom_inner {
    display: flex;
    justify-content: start;
    align-items: center;
    background: linear-gradient(96.21deg, rgba(7, 138, 133, 0.1) 12.01%, rgba(2, 36, 35, 0.1) 216.24%);
    border: 1px solid rgba(7, 138, 133, 1);
    border-radius: 8px;
    margin-bottom: 36px;
    padding: 10px 12px;
    width: max-content;
}
.diversified-investment-bottom_inner:nth-child(3), .diversified-investment-bottom_inner:nth-child(6) {
    margin-right: 0px;
}
.diversified-investment-bottom_inner h5, .diversified-investment-bottom_inner p {
    margin-bottom: 0;
}
.diversified-investment-bottom_inner h5 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(7, 138, 133, 1);
    margin-left: 5px;
    margin-right: 15px
}
p.pri_focus {
    background: rgba(42, 79, 21, 1);
    border: 0.5px solid rgba(7, 138, 133, 1);
    color: rgba(234, 234, 234, 1);
    border-radius: 14px;
    font-size: 8px;
    padding: 2px 5px;
}
p.high_growth {
    background: linear-gradient(0deg, #2A4F15, #2A4F15), linear-gradient(0deg, #154F4B, #154F4B);
    border: 0.5px solid rgba(7, 138, 133, 1);
    color: rgba(234, 234, 234, 1);
    border-radius: 14px;
    font-size: 8px;
    padding: 2px 5px;
}
/************* end diversified investment top section *********/
