@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

:root {
    --primary: #6366f1;
    --accent: #a855f7;
    --bg: #0f172a;
    --text: #f8fafc;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

/* ===== HEADER ===== */
.header {
    background: #081F3F;
    color: white;
    padding: 25px 0;
    position: relative;
    z-index: 100;
}



.header-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    border-right: 1px solid #D0D0D0;
    padding-right: 20px;
}

.thoro { color: #6ec1ff; }
.dev { color: #c94bff; }

.subtitle {
    font-size: 12px;
    color: #FFFFFF;
    font-family: JetBrains Mono;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
}

/* NAV */
.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    z-index: 9999;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-family: JetBrains Mono;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding-right: 20px;
}

.demo-btn {
    border: 2px solid #c94bff;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: Montserrat !important;
    font-weight: 600 !important;
    font-style: SemiBold !important;
    font-size: 24px !important;
    leading-trim: NONE !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-align: center !important;
    border: 3px solid #A855F7;
    width: 190px;
}



.bord-right{
    border-right: 1px solid #D0D0D0;
}

.burger span {
    transition: all 0.3s ease;
}

/* Верхняя линия */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

/* Средняя линия исчезает */
.burger.active span:nth-child(2) {
    opacity: 0;
}

/* Нижняя линия */
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.burger.active {
    transform: scale(1.1);
}

.burger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* линии */
.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 9px;
}

.burger span:nth-child(3) {
    bottom: 0;
}

/* === ACTIVE (X) === */


.burger.active span:nth-child(2) {
    opacity: 0;
}


.burger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}
.burger.active span:nth-child(3) {
    bottom: 9px;
    transform: rotate(-45deg);
}

@media (max-width: 1400px) {
    .main-nav a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-family: JetBrains Mono;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        padding-right: 10px;
    }

    .subtitle {
        font-size: 12px;
        color: #FFFFFF;
        font-family: JetBrains Mono;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
    }

    .demo-btn {
        border: 2px solid #c94bff;
        padding: 10px 10px;
        border-radius: 25px;
        font-family: Montserrat !important;
        font-weight: 600 !important;
        font-style: SemiBold !important;
        font-size: 20px !important;
        leading-trim: NONE !important;
        line-height: 100% !important;
        letter-spacing: 0% !important;
        text-align: center !important;
        border: 3px solid #A855F7;
        width: 150px;
    }
}

/* MOBILE */
@media (max-width: 1200px) {
    .main-nav {
        position: absolute;
        top: 90px;
        right: 0;
        background: #081F3F;
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .main-nav a {
        padding-right: 0px;
    }

    .bord-right{
        border-right: 0px solid #D0D0D0;
    }

    .main-nav.active {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

/* ===== TOP BUTTONS ===== */
.auth-buttons {
    position: absolute;
    top: 90px;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

/* ===== MAIN CONTENT ===== */
.main-container {
    text-align: center;
    padding: 2rem;
    margin-top: 120px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 99px;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin: 0;
}

@media (max-width: 768px) {
    .logo-wrap {
        display: grid;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin: auto;
        margin-left: 0px;
    }

    .logo {
        font-weight: bold;
        font-size: 22px;
        border-right: 0px solid #D0D0D0;
        padding-right: 0px;
    }



    .header {
        background: #081F3F;
        color: white;
        padding: 15px 0;
        position: relative;
        z-index: 100;
    }

    .header-container {
        margin: auto;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        width: 100%;
        padding-right: 0px;
    }
}


#site-hero {
    background-size: cover;
    background-position: center;
    padding-top: 30px;
    padding-bottom: 225px;
    background-position-y: bottom;
}

.site-hero-grd{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.rght-img{
    width: 100%;
}

#site-hero h1{
    padding-top: 30px;
    font-family: Oswald;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 35px;
    margin: 0px;
}

#site-hero p{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
    padding: 0px;
    margin-bottom: 45px;
}

.site-hero-btn{
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #fff !important;
    text-align: center;
    display: block;
    padding: 18px;
    background: #A855F7;
    max-width: 510px;
    border-radius: 6px;
    border: 1px solid #23A3DD;
    box-shadow: 0px 0px 0.27px 0px rgba(85, 139, 247, 1), 0px 0px 0.54px 0px rgba(85, 139, 247, 1), 0px 0px 1.9px 0px rgba(85, 139, 247, 1), 0px 0px 3.79px 0px rgba(85, 139, 247, 1), 0px 0px 6.5px 0px rgba(85, 139, 247, 1), 0px 0px 11.37px 0px rgba(85, 139, 247, 1);
    margin-bottom: 17px;
}

.hero-discount{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 16px;
    align-items: center;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(208, 208, 208, 1);
}

@media (max-width: 1200px) {
    .site-hero-btn {
        font-size: 16px;
        padding: 15px;
        max-width: 410px;
    }

    #site-hero p {
        font-size: 20px;
        padding: 0px;
        margin-bottom: 20px;
    }

    #site-hero h1 {
        padding-top: 0px;
        font-family: Oswald;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #fff;
        padding-bottom: 15px;
        margin: 0px;
    }
}

@media (max-width: 992px) {
    .site-hero-grd {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

    .site-hero-first{
        order: 1;
    }

    #site-hero h1 {
        padding-top: 0px;
        font-family: Oswald;
        font-weight: 500;
        font-style: Medium;
        font-size: 28px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #fff;
        padding-bottom: 15px;
        margin: 0px;
    }
}

@media (max-width: 768px) {
    #site-hero {
        background-size: cover;
        background-position: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


#afterhero {
    background: rgba(10, 14, 26, 1);
    padding-bottom: 100px;
}

.afterheroblock {
    background: radial-gradient(50% 50% at 50% 50%, rgba(99, 50, 145, 0.3) 33.18%, rgba(129, 65, 190, 0.3) 79.81%, rgba(168, 85, 247, 0.261) 99.03%);
    border: 1px solid rgba(168, 85, 247, 1);
    border-radius: 9px;
    padding: 40px;
    font-family: Inter;
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: justify;
    color: rgba(208, 208, 208, 1);
    margin-top: -110px;
}

#afterhero h2{
    font-family: Oswald;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 25px;
}

#afterhero h6{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin-top: 25px;
}

@media (max-width: 768px) {
    .afterheroblock {
        background: radial-gradient(50% 50% at 50% 50%, rgba(99, 50, 145, 0.3) 33.18%, rgba(129, 65, 190, 0.3) 79.81%, rgba(168, 85, 247, 0.261) 99.03%);
        border: 1px solid rgba(168, 85, 247, 1);
        border-radius: 9px;
        padding: 20px;
        font-family: Inter;
        font-weight: 300;
        font-style: Light;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 140%;
        letter-spacing: 0%;
        text-align: justify;
        color: rgba(208, 208, 208, 1);
        margin-top: 20px;
    }

    #afterhero {
        background: rgba(10, 14, 26, 1);
        padding-bottom: 70px;
    }
}

#getfreedemobtn{
    background: rgba(10, 14, 26, 1);
    padding-bottom: 100px;
}

.getfreedemobtn-btn {
    background: transparent;
    border: 3px solid rgba(168, 85, 247, 1);
    border-radius: 50px;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 45px;
    cursor: pointer;
    outline: none;
    box-shadow: 0px 0px 1.97px 0px rgba(34, 102, 155, 1), 0px 0px 13.78px 0px rgba(34, 102, 155, 1), 0px 0px 82.66px 0px rgba(34, 102, 155, 1), inset 0px 0px 4px 0px rgba(34, 102, 155, 1), inset 0px 0px 15px 0px rgba(34, 102, 155, 0.8), inset 0px 0px 30px 0px rgba(34, 102, 155, 0.6);
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8), 0px 0px 20px rgba(34, 102, 155, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: Montserrat;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none !important;
    padding: 25px;
    max-width: 330px;
    margin: auto;
}

@media (max-width: 768px) {
    .getfreedemobtn-btn {
        background: transparent;
        border: 3px solid rgba(168, 85, 247, 1);
        border-radius: 50px;
        color: #FFFFFF;
        font-family: 'Oswald', sans-serif;
        font-size: 24px;
        font-weight: 500;
        padding: 15px 45px;
        cursor: pointer;
        outline: none;
        box-shadow: 0px 0px 1.97px 0px rgba(34, 102, 155, 1), 0px 0px 13.78px 0px rgba(34, 102, 155, 1), 0px 0px 82.66px 0px rgba(34, 102, 155, 1), inset 0px 0px 4px 0px rgba(34, 102, 155, 1), inset 0px 0px 15px 0px rgba(34, 102, 155, 0.8), inset 0px 0px 30px 0px rgba(34, 102, 155, 0.6);
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8), 0px 0px 20px rgba(34, 102, 155, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-family: Montserrat;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-decoration: none !important;
        padding: 20px;
        max-width: 300px;
        margin: auto;
    }

    #getfreedemobtn {
        background: rgba(10, 14, 26, 1);
        padding-bottom: 70px;
    }
}

#buildworkflow{
    background: rgba(10, 14, 26, 1);
    padding-bottom: 120px;
}


#buildworkflow h2{
    font-family: Oswald;
    font-weight: 400;
    font-style: Regular;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 1);
}

.buildworkflow-item{
    background: rgba(35, 42, 53, 1);
    border-radius: 9px;
    padding: 40px 20px;
    width: 300px;
}

.buildworkflow-item img{
    height: 60px;
    width: auto;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}

.buildworkflow-item h4{
    font-family: JetBrains Mono;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 15px;
}

.buildworkflow-item h6{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(208, 208, 208, 1);
    margin: 0px;
}

.buildworkflow-grd{
    display: flex;
    flex-flow: wrap;
    grid-gap: 24px;
    justify-content: center;
}

@media (max-width: 768px) {
    #buildworkflow h2 {
        font-family: Oswald;
        font-weight: 400;
        font-style: Regular;
        font-size: 32px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 1);
    }

    #buildworkflow {
        background: rgba(10, 14, 26, 1);
        padding-bottom: 50px;
    }
}


.work-plan {
    display: flex;
    grid-gap: 50px 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.top-hr{
    height: 20px;
}

.Plan{
    background: rgba(16, 42, 70, 1);
    padding: 14px;
    font-family: Oswald;
    font-weight: 500;
    font-style: Medium;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.plan-desc h3{
    font-family: Oswald;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding-top: 0px;
    margin-bottom: 30px;
    color: #fff;
}

.plan-desc {
    background: rgba(35, 42, 53, 1);
    border-top: 0px;
    border-radius: 0px 0px 9px 9px;
    padding: 50px 20px;
    height: calc(100% - 96px);
    position: relative;
    padding-bottom: 150px;
}

.plan-esp {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 180%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    padding: 0px 40px;
    padding-right: 20px;
    margin: 0px;
}

.plan-desc h6{
    font-family: Oswald;
    font-weight: 500;
    font-style: Medium;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 15px;
}

.plan-sub-ul{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
    color: #fff;
}

.plan-desc h4{
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(35, 163, 221, 1);
}

.plan-desc h5{
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.plan-btn{
    border-radius: 9px;
    display: block;
    background: rgba(35, 163, 221, 1);
    padding: 10px;
    font-family: Oswald;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    width: 285px;
    margin: auto;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -0%);
}

.work-plan-item {
    width: 400px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .work-plan {
        display: flex;
        grid-gap: 30px 25px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .Plan {
        background: rgba(16, 42, 70, 1);
        padding: 14px;
        font-family: Oswald;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
    }

    .plan-desc h3 {
        font-family: Oswald;
        font-weight: 500;
        font-style: Medium;
        font-size: 48px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        padding-top: 0px;
        margin-bottom: 20px;
        color: #fff;
    }

    .plan-desc {
        background: rgba(35, 42, 53, 1);
        border-top: 0px;
        border-radius: 0px 0px 9px 9px;
        padding: 30px 20px;
        height: calc(100% - 96px);
        position: relative;
        padding-bottom: 130px;
    }

    .plan-btn {
        border-radius: 9px;
        display: block;
        background: rgba(35, 163, 221, 1);
        padding: 10px;
        font-family: Oswald;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none !important;
        color: #fff !important;
        width: 285px;
        margin: auto;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%, -0%);
    }
}


#lastpassimgs {
    background: rgba(10, 14, 26, 1);
    padding-bottom: 200px;
}
.lastpassimgs-grd {
    display: flex;
    justify-content: center;
    grid-gap: 80px;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

#lastpassimgs h2{
    font-family: Oswald;
    font-weight: 400;
    font-style: Regular;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

#lastpassimgs h4{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: rgba(208, 208, 208, 1);
    max-width: 470px;
    margin-top: 15px;
}

#lastpassimgs h6{
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(208, 208, 208, 1);
    max-width: 1050px;
    margin: auto;
}

@media (max-width: 992px) {
    .lastpassimgs-grd {
        display: flex;
        justify-content: center;
        grid-gap: 20px;
        align-items: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    #lastpassimgs {
        background: rgba(10, 14, 26, 1);
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .lastpassimgs-subgrd{
        display: grid;
        justify-content: center;
        justify-items: center;
        grid-gap: 30px;
    }

    .lastpassimg{
        padding-right: 0px !important;
        padding-bottom: 30px !important;
    }
}


.footer-section{
    border-top: 3px solid rgba(168, 85, 247, 1);
    padding-top: 30px;
    padding-bottom: 100px;
}

.footer-section-grd{
    display: flex;
    grid-gap: 88px;
    align-items: center;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    color: rgba(208, 208, 208, 1);
    flex-wrap: wrap;
}

.footer-border{
    border-right: 1px solid rgba(208, 208, 208, 1);
    padding-right: 30px;
}

.footer-section-grd a{
    text-decoration: none !important;
    color: rgba(208, 208, 208, 1) !important;
}

@media (max-width: 992px) {
    .footer-section-grd {
        display: flex;
        grid-gap: 28px;
        align-items: center;
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: 0%;
        color: rgba(208, 208, 208, 1);
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-section-grd {
        display: grid;
        grid-gap: 20px;
        align-items: center;
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: 0%;
        color: rgba(208, 208, 208, 1);
        flex-wrap: wrap;
    }

    .footer-border{
        border-right: 0px solid rgba(208, 208, 208, 1);
        padding-right: 0px;
    }

    .footer-section {
        border-top: 3px solid rgba(168, 85, 247, 1);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-copy{
        order: 2;
    }

}