@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --linear-primary: linear-gradient(to right, #ff5a60, #9fe870);
    font-size: 10px;

}


body {
    font-family: "Outfit", sans-serif;
    font-size: 1.6rem;
}

.site-header {
    background: var(--linear-primary);
    padding: 10px 25px;
}


.btn-investment:hover {
    background-color: #ff5a60;
}

.btn-investment {
    background: #000;
    padding: 10px 14px;
    transition: .3s;
    color: white;
    flex: 1;
    display: flex;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
}


.nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.hero-section {
    background: #000;
    min-height: calc(100dvh - 100px);
    color: white;
    place-content: center;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 6.54rem;
    text-transform: uppercase;
    line-height: 6.8rem;
    font-weight: 600;
}

.hero-content h1 span {
    background-image: var(--linear-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.button-custom {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button-custom a {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.btn-primary {
    background-image: var(--linear-primary);
    color: #000;
    transition: all.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-content p {
    margin: 1.5rem 0;
}


.btn-outline {
    position: relative;
    color: #fff;
    background: transparent;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#000, #000),
        var(--linear-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline:hover {
    background-image: var(--linear-primary);
    color: #000;
}

.home-image {
    position: relative;
    padding: 1px;
    background: var(--linear-primary);
    display: inline-block;
}

.home-image::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: url(../img/hero-img-before.png) no-repeat right;
    z-index: 1;
    right: -80px;
    top: -150px;
    pointer-events: none;

    animation: floatBounce 4s ease-in-out infinite;
}



.home-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    padding: 15px;
    background: #000;
}

@keyframes floatBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}




.featured-sec {
    padding: 6rem 0;
    background: #F1F1F1;
}

.featured-left-slider h2 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 4rem;
    text-transform: uppercase;
}

.featured-left-slider p {
    margin-bottom: 20px;
    color: black;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 5rem;
    border-radius: 14px;
    text-align: left;
    transition: all .3s;
}

.stats-grid .stat-card:nth-child(2) {
    background: var(--linear-primary);
    color: #000;
}

.stat-card:hover {
    background: var(--linear-primary);
}

.stat-card h3 {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 4rem;
}

.stat-card span {
    font-size: 14px;
    color: #000000;
}


.btn-primary-2 {
    display: inline-block;
    padding: 12px 30px;
    background: var(--linear-primary);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all .3s;
}

.btn-primary-2:hover {
    transform: translateY(-2px) !important;
}


.featured-left-slider .owl-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    left: 200px;
    bottom: 0;
}

.featured-left-slider .owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    border: 1px solid black !important;
    justify-content: center;
}

.featured-left-slider .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
}

.marquee-slider {
    background: #ffffff;
    padding: 4rem 0;
    overflow: hidden;
}


.marquee.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}


.marquee .item {
    text-align: center;
}

.marquee .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #dcdcdc;
}


.marquee .item img {
    height: 50px !important;
    display: block;
    width: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.marquee.owl-theme .owl-dots,
.marquee.owl-theme .owl-nav {
    display: none;
}




.bonus-perks-sec {
    background: #000;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    color: white;
    place-content: center;
}

.bonus-perks-sec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: url("../img/bonus-perks-before.png") no-repeat left bottom / contain;
    pointer-events: none;
}

.bonus-perks-sec::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: url("../img/bonus-perks-before.png") no-repeat right top / contain;
    pointer-events: none;
}

.bonus-perks-sec .container {
    position: relative;
}

.bonus-perks-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bonus-perks-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-perks-image img:first-child {
    grid-column: 1 / -1;
    max-height: 240px;
    object-fit: cover;
}

.bg-linear {
    background-image: var(--linear-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.bonus-perks-content h2 {
    font-weight: 600;
    font-size: 4.8rem;
}

.bonus-perks-content {
    padding-left: 8rem;
}

.bonus-desc {
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.perks-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.perk-icon img {
    width: 50px;
}

.perk-text h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.perk-text p {
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

.join-flow-sec {
    padding: 3rem 0;
}



.join-flow-sec {
    padding: 6rem 0;
    background: #fff;
}

.join-flow-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    max-width: 730px;
    margin: 0 auto;
    text-align: center;
}

.title-wrapper h2 {
    font-size: 4.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.title-wrapper h2 span {
    background-image: var(--linear-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.join-flow-wrapper .subtitle {
    font-size: 2rem;
    color: #000000;
    max-width: 730px;
    margin: 0 auto;
    margin-bottom: 3rem;
}


.join-flow-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.join-flow-form input::placeholder {
    color: #aaa;
}


.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
}

.phone-field span {
    font-size: 14px;
    margin-right: 6px;
}

.phone-field input {
    border: none;
    padding: 14px 0;
    flex: 1;
}

.phone-field input:focus {
    outline: none;
}


.btn-gradient {
    margin-top: 8px;
    padding: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--linear-primary);
    color: #000;
    transition: all .3s;
}


.btn-gradient:hover {
    transform: translateY(-2px);

}

.disclaimer {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-top: 2rem;
}

.performance-sec {
    background: #000;
    color: white;
    padding: 8rem 0;
}

.performance-sec .title-wrapper h2 {
    margin-bottom: 5rem;
    font-size: 4rem;
}


.performance-card {
    background: #222222;
    display: flex;
    height: 100%;
    padding: 3rem;
    min-height: 250px;
    flex-direction: column;
    margin: 0 1.2rem;
    transition: all .3s;
}

.performance-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

.performance-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
}

.intro-content {
    position: relative;
    z-index: 11;
}

.intro-flow-sec {
    position: relative;
    padding: 5rem 0;
    min-height: 80dvh;
    place-content: center;
}

.intro-flow-sec .btn-primary-2 {
    margin: 2rem 0;
}

.intro-flow-sec .title-wrapper h2 span {
    display: block;
}

.intro-flow-sec::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 16%) 40%, rgba(255, 255, 255, 0.95) 50%, #ffffff 82%, #ffffff 70%);
    z-index: 1;
    pointer-events: none;
}

.why-invest-section {
    padding: 5rem 0;
    background: #000;
    color: white;
}

.why-invest-image {
    border: 1px solid white;
    padding: 2rem;
}

.why-invest-image img {
    width: 100%;
}

.why-invest-content {
    position: relative;
    padding-right: 6rem;
}

.why-invest-content::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 90%;
    height: 1px;
    background: #cccccc40;
}

.why-invest-content::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 90%;
    height: 1px;
    background: #cccccc40;
}

.why-invest-content p,
.intro-content p {
    font-size: 1.8rem;
}

.bg-linear-marquee {
    background: var(--linear-primary);
}


.bg-linear-marquee .item::before {
    display: none;
}



.timeline-sec {
    padding: 6rem 0;
    background: #fff;
}


.timeline-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.timeline-header h2 {
    font-size: 4.58rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-header p {
    font-size: 1.65rem;
    color: #000000;
    line-height: 1.6;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 90px 40px;
}


.timeline-item {
    text-align: center;
    position: relative;
}


.timeline-item .circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    transition: all .3s;
}


.timeline-item:hover .circle {
    background: var(--linear-primary);
    color: #000;
}

.timeline-item:not(:nth-child(5)):not(:nth-child(10))::after {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(50% + 54px);
    width: calc(100% - 64px);
    height: 1px;
    background: #e6e6e6;
    z-index: 1;
}



.timeline-item h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

.our-story .why-invest-content {
    position: relative;
    padding-right: 0;
}

.story-right {
    padding-left: 6rem;
}

.the-brand-sec {
    padding: 12rem 0;
}

.the_brand_content {
    position: relative;
    padding-right: 0;
}

.the_brand_content::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 90%;
    height: 1px;
    background: #cccccc40;
}

.the_brand_content::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 90%;
    height: 1px;
    background: #cccccc40;
}


.the_brand_image::before {
    content: "";
    position: absolute;
    inset: 1px;
    background: url(../img/hero-img-before.png) no-repeat left;
    z-index: 1;
    left: 0;
    top: -150px;
    pointer-events: none;
    animation: floatBounce 4s ease-in-out infinite;
}

.the_brand_image {
    position: relative;
    text-align: right;
}

.the_brand_image img {
    position: relative;
    z-index: 10;
    max-width: 620px;
}


section.video-sec {
    padding: 4rem 0;
}


.video-wrapper {
    position: relative;
    width: 100%;
    height: 590px;
    background: #000;
    overflow: hidden;
}



.video-wrapper video {
    width: 100%;
    height: 590px;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: none;
    background: transparent;
}

.video-play-btn img {
    width: 100px;
    height: 100px;
}

.video-cta {
    text-align: center;
}

.video-cta i {
    font-size: 1.5rem;
    transition: all .3s;
}

.view-btn {
    margin: 2rem auto;
    display: inline-block;
    text-align: center;
    font-size: 2rem;
    border: 1px solid black;
    padding: 5px 20px;
    border-radius: 30px;
    margin-top: 5rem;
    transition: all .3s;
}

.view-btn:hover {
    background: var(--linear-primary);
    border-color: #ff5a60;
}

.view-btn:hover i {
    margin-left: 10px;
}


.team-section {
    padding: 5rem 0;
    background: #000;
    color: white;
}

.team-section .why-invest-content::before {
    top: -50px;
}

.team-section .why-invest-content::after {
    bottom: -50px;
}

.the-team-wrapper {
    position: relative;
}


.view-all {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.view-all i {
    font-size: 14px;
}

.view-all:hover {
    color: #9fe870;
}

.team-cards {
    display: flex;
    gap: 28px;
    justify-content: flex-end;
}

.team-card {
    flex: 1;
}

.team-card img {
    width: 100%;
    display: block;
    border-radius: 2px;
    object-fit: cover;
    max-height: 500px;
}

.team-info {
    margin-top: 14px;
}

.team-info h4 {
    font-size: 2rem;
    font-weight: 600;
    margin: 1.54rem 0;
    text-transform: uppercase;
    margin-bottom: 0;
}

.team-info span {
    font-size: 1.6rem;
    color: #aaa;
    display: block;
    margin-bottom: 20px;
}

.read-more {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    border: 1px solid #333;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.read-more i {
    font-size: 1.4rem;
}

.read-more:hover {
    background: var(--linear-primary);
    color: #000;
}

.market-sec {
    padding: 5rem 0;
}

.market-image img {
    width: 100%;
}

.map-sec {
    padding: 5rem 0;
}

.bg-gray-marquee {
    background: #BCBCBC;
}

.bg-gray-marquee .item::before {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

.faq-section {
    padding: 8rem 0;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: url(../img/bonus-perks-before.png) no-repeat left bottom / contain;
    pointer-events: none;
}

.faq-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: url(../img/bonus-perks-before.png) no-repeat right top / contain;
    pointer-events: none;
}

.faq-section .title-wrapper h2 {
    font-size: 6rem;
}

.faq-section .title-wrapper {
    margin: 0 auto;
    margin-bottom: 4rem;
}

.faq-section .title-wrapper p {
    font-size: 2rem;
    color: #000;
}


.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f3f3f3;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: background 0.4s ease;
}


.faq-item.active {
    background: var(--linear-primary);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 500;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "\f077";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}


.footer-sec {
    background: #000;
    color: white;
    padding: 70px 0 30px;
    font-size: 1.6rem;
}

.footer-brand {
    padding-right: 5rem;
}


.footer-brand img {
    max-width: 100px;
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--linear-primary);
    color: #000;
    border-color: transparent;
}

.footer-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 4rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.footer-contact li {
    display: flex;
    align-items: baseline;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact i {
    margin-right: 10px;
    color: #fff;
}

.newsletter-text {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    margin-bottom: 10px;
}

.newsletter-form input:focus {
    outline: none;
}

.btn-gradient {
    padding: 12px 20px;
    border: none;
    font-weight: 600;
    background: var(--linear-primary);
    color: #000;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 30px;
    color: white;
    font-size: 1.6rem;
}

.footer-links li a,
.footer-contact li a {
    transition: all 0.3s ease;
}


.footer-links li a:hover,
.footer-contact li a:hover {
    background: var(--linear-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* New Css Start */
.breadcrumb-sec {
    padding: 5rem 0;
    color: white;
    min-height: 430px;
    place-content: center;
}

.breadcrumb-sec h1 {
    font-size: 6rem;
    text-transform: uppercase;
    font-weight: 500;
}

.who-we-are-sec {
    background: black;
    padding: 12rem 0;
    color: white;
}

.who-we-content p {
    margin-bottom: 2.5rem;
}

.who-we-work-sec {
    padding: 8rem 0;
    background: white;
}

.title-wrapper .subtitle {
    font-size: 2rem;
    color: inherit;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.work-steps {
    display: flex;
    position: relative;
    max-width: 1000px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 8rem auto;
}


.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.icon-wrap {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all 0.4s ease;
    position: relative;
}

.step .icon-wrap::after {
    content: "";
    position: absolute;
    top: 49%;
    left: 100%;
    width: 194px;
    height: 1px;
    background-color: #c7aaaa;
    transform: translate(20px, -50%);
}


.step:last-child .icon-wrap::after {
    display: none;
}


.step:hover .icon-wrap {
    background: var(--linear-primary);
}

.step:hover img {
    filter: none;
}

.icon-wrap img {
    width: 70px;
    height: auto;
    margin-bottom: 4px;
    filter: brightness(0) invert(1);
}


.step h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;

}

.step h4 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
}

.account-action {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

.account-action input {
    flex: 1;
    height: 50px;
    border-radius: 30px;
    border: none;
    background: #f1f1f1;
    padding: 0 20px;
    font-size: 13px;
    outline: none;
    color: #555;
}

.account-action input::placeholder {
    color: #aaa;
    text-transform: uppercase;
    font-size: 12px;
}

.account-action button {
    height: 50px;
    padding: 0 30px;
    border-radius: 30px;
    border: none;
    background: var(--linear-primary);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.account-action button:hover {
    transform: translateY(-2px);
}

.Professionality-sec {
    padding: 8rem 0;
    color: white;
    background: #000;
}

.professionality_card {
    background: #1f1f1f;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    transition: all 0.4s ease;
    margin: 4rem 1.5rem;
}

.card-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.professionality_card p {
    font-size: 2rem;
    margin-bottom: 10px;
}

.professionality_card h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    transition: all 0.4s ease;
}

.professionality_card:hover {
    background: #252525;
}

.professionality_card:hover .card-circle {
    background: var(--linear-primary);
    color: #000;
}

.professionality_card:hover h2 {
    background: var(--linear-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-sec {
    padding: 8rem 0;
    background: #F0F0F0;
    color: #000;
}

.mission-sec p {
    text-align: justify
}

.roadmap-sec {
    padding: 8rem 0;
    background: white;
}

.roadmap {
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 5rem 0;
}


.roadmap-line {
    position: absolute;
    top: 13rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}


.roadmap-line::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.roadmap-line::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.roadmap-item {
    width: 23%;
    position: relative;
}


.roadmap-item .date {
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}


.roadmap-item h3 {
    font-size: 36px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}


.roadmap-item .dot {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 63px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}


.roadmap-item::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 50%;
    width: 1px;
    height: 13rem;
    background: #ccc;
    transform: translateX(-50%);
}



.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12rem auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 55;
}

.icon-wrap img {
    width: 30px;
    filter: brightness(0) invert(1);
}

.roadmap-item h4 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.roadmap-item p {
    font-size: 1.6rem;
    color: #352323;
    line-height: 1.6;
}



.roadmap-item:hover h3 {
    background: var(--linear-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-item:hover .icon-wrap {
    background: var(--linear-primary);
}

.roadmap-item:hover .dot {
    background: #ff5a60;
}

@media (min-width:992px) {
    .aproach-content {
        padding-left: 4rem;
    }

    .mission-content {
        padding-right: 10rem;
    }
}

/* New Css End */