*,
*::before,
*::after{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}
html{
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}
body{
    position: relative;
    width: 100%;
    height: auto;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;
    background-color: var(--body-bg);
    color: var(--body-color);
    transform: scale(1);
    transform-origin: 0 0;
    overflow-x: hidden;
}
html.auth-scroll-locked,
body.auth-scroll-locked{
    overflow: hidden;
    overscroll-behavior: none;
}
body.auth-scroll-locked{
    touch-action: none;
}
.container{
    width: 100%;
    max-width: var(--site-width);
    height: auto;
    margin: 0 auto;
    padding: 0 60px;
}
.top-pad-130{
    padding-top: 130px;
}
.top-mar-160{
    margin-top: 160px;
}
.slide-correct{
    padding: 0 60px;
}
/* Header and naviation style */
header{
    position: relative;
    isolation: isolate;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    height: 1480px;
    background-color: var(--body-bg);
    background-image: var(--main-bg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    /* background-blend-mode: var(--blend-mod); */
}
header::before{
    content: "";
    position: absolute;
    inset: -18px 0 0 0;
    z-index: -1;
    pointer-events: none;
    background-image: var(--main-bg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: var(--hero-motion-opacity, .24);
    mix-blend-mode: var(--hero-motion-blend, normal);
    transform: translate3d(0, 0, 0) scale(1.012);
    animation: heroOrbitParallax 14s ease-in-out infinite;
}
header::after{
    content: "";
    position: absolute;
    top: 320px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 520px;
    pointer-events: none;
    background:
        radial-gradient(circle at 31% 38%, rgba(179, 184, 214, .85) 0 2px, transparent 7px),
        radial-gradient(circle at 47% 55%, rgba(95, 128, 220, .72) 0 2px, transparent 8px),
        radial-gradient(circle at 62% 42%, rgba(179, 184, 214, .7) 0 2px, transparent 7px),
        radial-gradient(circle at 78% 28%, rgba(95, 128, 220, .62) 0 2px, transparent 8px);
    opacity: var(--hero-signal-opacity, .32);
    filter: blur(.2px);
    transform: translate3d(0, 0, 0);
    animation: heroSignalPulse 4.8s ease-in-out infinite;
}
@keyframes heroOrbitParallax {
    0%, 100%{
        opacity: .08;
        transform: translate3d(-8px, 0, 0) scale(1.01);
    }
    50%{
        opacity: var(--hero-motion-opacity, .24);
        transform: translate3d(10px, 12px, 0) scale(1.018);
    }
}
@keyframes heroSignalPulse {
    0%, 100%{
        opacity: .08;
        transform: translate3d(-4px, 4px, 0) scale(.98);
    }
    45%{
        opacity: var(--hero-signal-opacity, .32);
        transform: translate3d(5px, -6px, 0) scale(1.04);
    }
}
.header__inner{
    position: relative;
    z-index: 1;
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    .header__item{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 370px;
        height: auto;
        padding: 60px 0 60px 0;
        .logo{
            position: relative;
            width: 170px;
            height: 50px;
            img{
                object-position: center;
                object-fit: contain;
            }
        }
    }
    .header__item:nth-child(1){
        display: flex;
        justify-content: flex-start;
        width: 370px;
    }
    .header__item:nth-child(2){
        display: flex;
        justify-content: center;
    }
    .header__item:nth-child(3){
        display: flex;
        justify-content: flex-end;
    }
    .header__item:nth-child(4){
        display: flex;
        justify-content: flex-end;
        width: 30px;
        /* display: flex; */
        display: none;
    }
}
.nav-link-group{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 40px;
    a{
        width: auto;
        white-space: nowrap;
        color: var(--body-color);
        text-decoration: none;
        &:hover{
            text-decoration: underline;
            text-underline-offset: 4px;
        }
    }
}
.sign-btn-group{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    .btnSignUp, .btnSignIn{
        padding: 20px 30px;
        border: 1px solid var(--border);
        color: var(--body-color);
        border-radius: 50px;
        font-family: Roboto;
        font-size: 24px;
        font-weight: 400;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    .btnSignUp:hover, .btnSignIn:hover{
        border: 1px solid var(--icon-sel);
        transition: all .3s ease-in-out;
    }
    .btnSignUp{
        background: transparent;
    }
    .btnSignIn{
        background: var(--btn-top-second-bg);
    }
}
.sign-btn-group .auth-session-link{
    padding: 20px 30px;
    border: 1px solid var(--border);
    color: var(--body-color);
    border-radius: 50px;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.sign-btn-group .auth-session-link:hover{
    border: 1px solid var(--icon-sel);
}
.sign-btn-group .auth-session-link--primary{
    background: transparent;
}
.sign-btn-group .auth-session-link--secondary{
    background: var(--btn-top-second-bg);
}
.nav-btn{
    background: transparent;
    cursor: pointer;
}
/* Section start style */
.main{
    position: relative;
    z-index: 2;
    margin-top: -1280px;
}
.start{
    position: relative;
    isolation: isolate;
    width: 100%;
    text-align: center;
}
.start .container{
    position: relative;
    z-index: 2;
}
.hero-orbit-signals{
    position: absolute;
    top: 155px;
    left: 50%;
    z-index: 1;
    width: min(100vw, 1440px);
    height: 620px;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}
.hero-signal{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hero-signal-core, #D7E4FF);
    box-shadow:
        0 0 10px var(--hero-signal-core, #D7E4FF),
        0 0 28px var(--hero-signal-tail, rgba(87, 136, 255, .6));
    opacity: 0;
    will-change: transform, opacity;
}
.hero-signal::after{
    content: "";
    position: absolute;
    top: 4px;
    right: 5px;
    width: 92px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--hero-signal-tail, rgba(87, 136, 255, .6)));
    filter: blur(.2px);
    transform-origin: right center;
}
.hero-signal-a{
    left: 14%;
    top: 57%;
    animation: heroSignalOrbitA 5.8s linear infinite;
}
.hero-signal-b{
    left: 33%;
    top: 42%;
    animation: heroSignalOrbitB 6.6s linear infinite;
    animation-delay: -2.2s;
}
.hero-signal-c{
    left: 58%;
    top: 49%;
    animation: heroSignalOrbitC 7.2s linear infinite;
    animation-delay: -3.8s;
}
.hero-signal-d{
    left: 78%;
    top: 61%;
    animation: heroSignalOrbitD 6.1s linear infinite;
    animation-delay: -1.4s;
}
@keyframes heroSignalOrbitA {
    0%{
        opacity: 0;
        transform: translate3d(-80px, 76px, 0) rotate(-24deg) scale(.7);
    }
    18%, 74%{
        opacity: .95;
    }
    100%{
        opacity: 0;
        transform: translate3d(430px, -82px, 0) rotate(-12deg) scale(1);
    }
}
@keyframes heroSignalOrbitB {
    0%{
        opacity: 0;
        transform: translate3d(-40px, 140px, 0) rotate(-58deg) scale(.72);
    }
    22%, 70%{
        opacity: .82;
    }
    100%{
        opacity: 0;
        transform: translate3d(260px, -138px, 0) rotate(-42deg) scale(1);
    }
}
@keyframes heroSignalOrbitC {
    0%{
        opacity: 0;
        transform: translate3d(-110px, -26px, 0) rotate(18deg) scale(.72);
    }
    20%, 78%{
        opacity: .88;
    }
    100%{
        opacity: 0;
        transform: translate3d(330px, 92px, 0) rotate(12deg) scale(1);
    }
}
@keyframes heroSignalOrbitD {
    0%{
        opacity: 0;
        transform: translate3d(220px, 64px, 0) rotate(158deg) scale(.7);
    }
    18%, 68%{
        opacity: .76;
    }
    100%{
        opacity: 0;
        transform: translate3d(-380px, -118px, 0) rotate(148deg) scale(1);
    }
}
.pretitle{
    font-size: 32px;
    color: var(--card-subtitle);
}
.title{
    font-size: 96px;
    font-weight: 700;
    color: transparent;
    background-image: var(--text-gradient);
    background-clip: text;
    margin-top: 10px;
}
.subtitle{
    color: var(--subbtn-color);
    font-size: 40px;
    font-weight: 400;
    margin-top: 30px;
    padding: 0;
}
.started{
    display: inline-block;
    background-color: var(--started-btn);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 30px;
    color: var(--body-bg);
    font-size: 24px;
    font-weight: 600;
    margin-top: 100px;
    cursor: pointer;
    text-decoration: none;
}
@media (prefers-reduced-motion: reduce){
    header::before,
    header::after,
    .hero-signal{
        animation: none;
    }
}
/* Mobile menu */

.mobile-menu{
    position: absolute;
    top: 100px;
    left: 10px;
    width: 320px;
    height: auto;
    padding: 40px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    z-index: 9999;
    animation: openMobMenu .3s ease-in-out;
    .mobile-flex{
        display: flex;
        flex-direction: column;
        gap: 30px;
        a{
            color: var(--body-color);
            text-decoration: none;
            font-size: 28px;
        }
        hr{
            width: 100%;
            height: 1px;
            border-bottom: 1px solid var(--border);
        }
    }
    button{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 50px;
        font-size: 24px;
        background-color: var(--body-bg);
        color: var(--body-color);
    }
    .auth-session-link{
        width: 100%;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: 50px;
        font-size: 24px;
        line-height: 1;
        text-align: center;
        background-color: var(--body-bg);
        color: var(--body-color);
    }
    .auth-session-link--secondary{
        background: var(--btn-top-second-bg);
    }
}
@keyframes openMobMenu {
    from{
        left: -270px;
        opacity: 0;
    }
    to{
        left: 10px;
        opacity: 1;
    }
}
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.178);
    z-index: 99;
}

/* section mvno demo */
.mvnodemo{
    width: 100%;
    height: auto;
    scroll-margin-top: 50px;
}
.mvno-box{
    position: relative;
    width: 100%;
    height: 1100px;
    border: 1px solid var(--border);
    border-radius: 40px;
    margin-top: 250px;
    background-color: var(--body-bg);
    background-image: var(--mvno01);
    background-position: center bottom;
    background-size: 1440px 700px;
    background-repeat: no-repeat;
    overflow: hidden;
}
.section-subtitle{
    display: inline-block;
    color: var(--section-subtitle);
    font-size: 24px;
    font-weight: 500;
    padding: 15px 40px;
    border: 1px solid var(--border);
    border-radius: 50px;
    width: auto;
}
.correct-subtitle{
    margin: 60px 0 0 60px;
}
.inline-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 60px;
}
.section-title{
    font-size: 64px;
    font-weight: 700;
    margin-top: 60px;
    color: transparent;
    background-image: var(--text-gradient);
    background-clip: text;
    width: auto;
}
.section-title-w44p{
    width: 44%;
}
.section-title-w50p{
    width: 50%;
}
.section-text{
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    color: var(--subbtn-color);
    margin-top: 60px;
    width: 375px;
}
.slide-a{
    display: block;
    position: absolute;
    top: 530px;
    left: 60px;
    width: 394px;
    height: 300px;
    background-image: var(--mvno02);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.slide-b{
    position: absolute;
    top: 400px;
    left: 640px;
    width: 1084px;
    height: 400px;
    background-image: var(--mvno03);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Srction business */
.business{
    background-color: var(--body-bg);
    background-image: var(--sq-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* background-blend-mode: difference; */
    box-shadow: var(--box-shadow-inset);
    padding-bottom: 630px;
    scroll-margin-top: -80px;
}
.business-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 90px;
}
.box-a, .box-b, .box-c, .box-d{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    /* background: var(--box-gradient); */
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    .box-title{
        color: var(--subbtn-color);
        font-size: 32px;
        font-weight: 700;
        width: 336px;
    }
    .box-text{
        color: var(--icon-nosel);
        font-size: 24px;
        font-weight: 400;
        max-width: 600px;
        min-width: 320px;
    }
}
.box-a, .box-d{
    /* width: 773px; */
    width: 44%;
    min-width: 400px;
    /* .box-text{
        max-width: 400px;
        min-width: 320px;
    } */
}
.box-b, .box-c{
    /* width: 992px; */
    width: 54%;
    min-width: 400px;
    /* .box-text{
        max-width: 600px;
        min-width: 400px;
    } */
}
.box-a{
    background-image: var(--boxImg01), var(--box-gradient);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    background-blend-mode: var(--blend-mod2);
}
.box-b, .box-c{
    background-image: var(--box-gradient);
}
.box-d{
    background-image: var(--boxImg02), var(--box-gradient);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}
.box-f{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 431px;
    height: 274px;
    .box-title{
        color: var(--subbtn-color);
        font-size: 32px;
        font-weight: 700;
        width: 336px;
    }
    .box-text{
        color: var(--icon-nosel);
        font-size: 24px;
        font-weight: 400;
    }
}
.title-w180{
    width: 180px;
}

/* Protectiing section */
.protecting{
    margin-top: -470px;
}
.protect-box{
    width: 100%;
    height: auto;
    min-height: 630px;
    padding: 30px 90px 90px 90px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background-color: var(--card-bg);
    background-image: var(--boxImg03);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.protect-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 40px;
    margin-top: 122px;
}
.protect-card{
    width: 380px;
    height: 200px;
    padding-left: 30px;
    border-left: 1px solid var(--border);
    border-image: var(--border-grad);
    border-image-slice: 1;
}
.protect-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--subbtn-color);
    margin-bottom: 30px;
}
.protect-text{
    font-size: 20px;
    font-weight: 400;
    color: var(--card-subtitle);
}
/* section FAQ */
.faq{
    scroll-margin-top: -100px;
}
.faq-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.accord-box{
    width: 100%;
    height: auto;
    margin-top: 120px;
}

details{
    width: 100%;
    font-family: 'Roboto';
    font-size: 32px;
    font-weight: 400;
    padding: 20px 0;
    margin-bottom: 10px;
    border-top: 1px solid var(--border);
    color: var(--icon-nosel);
    overflow: hidden;
}
.details-text{
    margin-top: 20px;
    margin-left: 102px;
    font-size: 24px;
}
/* details::details-content{
    block-size: 0;
    transition: 
        block-size 1s,
        content-visibility 1s;
    transition-behavior: allow-discrete;    
}
details[open]::details-content{
    block-size: auto;
} */
summary{
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--subbtn-color);
    span{
        margin-right: 80px;
        color: var(--card-subtitle);
    }
}
summary::-webkit-details-marker {
    display: none;
}
summary::before {
    content: url(../img/marker2.svg);
    position: absolute;
    top: 6px;
    right: 30px;
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
    transform: rotate(0deg);
}
details[open] summary::before {
    transform: rotate(180deg);
}

/* section feedback */

.feedback{
    scroll-margin-top: 60px;
}
.contact-box{
    width: 100%;
    height: auto;
    min-height: 630px;
    margin-top: 160px;
    padding: 90px 90px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background-color: var(--card-bg);
    background-image: var(--boxImg05);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.contact-text{
    margin-top: 30px;
    color: var(--card-subtitle);
    font-size: 32px;
    font-weight: 400;
}
.contact-title{
    font-size: 64px;
    font-weight: 700;
    color: transparent;
    background-image: var(--text-gradient);
    background-clip: text;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.right{
    width: 100%;
    max-width: 884px;
}
.feedback-form{
    width: 100%;
    height: auto;
    input[type=text]{
        width: 50%;
        height: 78px;
        background: transparent;
        border-bottom: 1px solid var(--border);
        padding-left: 20px;
        color: var(--body-color);
        font-size: 32px;
    }
    input[type=email]{
        width: 100%;
        height: 78px;
        margin-top: 30px;
        background: transparent;
        border-bottom: 1px solid var(--border);
        padding-left: 20px;
        color: var(--body-color);
        font-size: 32px;
    }
    input[type=submit]{
        width: 100%;
        height: 89px;
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 50px;
        margin-top: 30px;
        color: var(--subbtn-color);
        font-size: 24px;
        font-weight: 600;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    input[type=submit]:hover{
        border: 1px solid var(--icon-sel);
        transition: all .3s ease-in-out;
    }
    textarea{
        width: 100%;
        max-width: 887px;
        min-height: 140px;
        margin-top: 30px;
        background: transparent;
        border-bottom: 1px solid var(--border);
        padding-left: 20px;
        color: var(--body-color);
        font-size: 32px;
    }
    input::placeholder{
        color: var(--card-subtitle);
        font-size: 32px;
        font-weight: 400;
    }
    textarea::placeholder{
        color: var(--card-subtitle);
        font-family: 'Roboto';
        font-size: 32px;
        font-weight: 400;
    }
}
.error-msg{
    margin: 30px 0 0 0;
    padding: 30px 30px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--counter-bg);
}
.sign-state{
    margin-bottom: 20px;
}
.sign-form input,
.sign-form input[type=submit]{
    transition: border-color .25s ease-in-out, box-shadow .25s ease-in-out, color .25s ease-in-out, opacity .25s ease-in-out;
}
.sign-form.is-loading input:not([type=submit]){
    opacity: .72;
}
.sign-form.is-loading input[type=submit]{
    border-color: var(--icon-sel);
    color: var(--body-color);
    cursor: wait;
    animation: authButtonPulse 1.1s ease-in-out infinite;
}
.sign-form.is-error input:not([type=submit]){
    border-color: rgba(255, 103, 124, .72);
    box-shadow: 0 10px 34px rgba(255, 80, 112, .12);
}
.sign-form.is-success input:not([type=submit]){
    border-color: rgba(105, 242, 180, .72);
    box-shadow: 0 10px 34px rgba(105, 242, 180, .1);
}
.sign-form.is-success input[type=submit]{
    border-color: rgba(105, 242, 180, .82);
    color: rgba(183, 255, 222, .95);
    box-shadow: 0 0 0 1px rgba(105, 242, 180, .16), 0 18px 42px rgba(105, 242, 180, .14);
}
.sign-state-error{
    border-color: rgba(255, 103, 124, .42);
    background: rgba(255, 103, 124, .08);
    color: #ff8fa0;
}
.sign-state-success{
    border-color: rgba(105, 242, 180, .42);
    background: rgba(105, 242, 180, .08);
    color: #9af7c8;
}
@keyframes authButtonPulse {
    0%, 100%{
        box-shadow: 0 0 0 0 rgba(179, 184, 214, .12);
    }
    50%{
        box-shadow: 0 0 0 8px rgba(179, 184, 214, .05);
    }
}
@media (prefers-reduced-motion: reduce){
    .sign-form.is-loading input[type=submit]{
        animation: none;
    }
}
.sign-links{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    a{
        color: var(--icon-nosel);
        font-size: 20px;
        text-decoration: none;
        &:hover{
            text-decoration: underline;
            text-underline-offset: 4px;
        }
    }
}
.users{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
/* Global messages style */

.gmessages{
    position: absolute;
    width: 100%;
    height: auto;
    top: 50px;
    left: 0;
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background-color: var(--sb-card-bg);
    backdrop-filter: blur(20px);
    .gmessages__success{
        font-size: 32px;
        font-weight: 600;
        color: var(--table-cell-green);
        text-align: center;
    }
}

/* footer style */

footer{
    margin-top: 120px;
}
.footer-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left-flex{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    margin-bottom: 0px;
    p{
        font-size: 20px;
        font-weight: 400;
        color: var(--icon-nosel);
    }
}
.footer-right-flex{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: right;
    a{
        display: block;
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 400;
        color: var(--icon-nosel);
        text-decoration: none;
        &:hover{
            text-decoration: underline;
            text-underline-offset: 4px;
        }
    }
    .lt-dk-tm{
        background: transparent;
        background-image: var(--them-toggle);
        text-align: left;
        width: 54px;
        height: 30px;
        cursor: pointer;

    }
}
.right60{
    margin-right: 60px;
}
.footer-box-a{
    width: 50%;
    margin-bottom: 40px;
    .footer-title{
        font-size: 24px;
        font-weight: 600;
        color: var(--icon-nosel);
        margin-bottom: 20px;
    }
    .footer-text{
        font-size: 20px;
        font-weight: 400;
        color: var(--footer-text);
    }
}
.top30{
    margin-top: 30px;
}
/* Style for 404 and other error pages Start */
.body404{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bigMainBg2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.er404{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Style for 404 and other error pages End */
.footer-box-b{
    width: 100%;
    height: auto;
    max-width: 300px;
    .footer-link-title{
        font-size: 24px;
        font-weight: 700;
        color: var(--subbtn-color);
        margin-bottom: 20px;
    }
    a{
        display: block;
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 400;
        color: var(--icon-nosel);
        text-decoration: none;
        &:hover{
            text-decoration: underline;
            text-underline-offset: 4px;
        }
    }
}    
.copyright{
    margin-top: 123px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
    padding-bottom: 60px;
}

/* .to-top-btn{
    position: fixed;
    left: 5px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    background-color: #00000010;
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    animation: fadein 1s ease-in-out;
    i{
        color: var(--border);
        font-size: 20px;
        margin-left: 5px;
    }
} */

.signUp-box, .signIn-box{
    position: absolute;
    width: 780px;
    height: auto;
    padding: 40px;
    top: 150px;
    right: 60px;
    border: 1px solid var(--border);
    border-radius: 40px;
    background: var(--box-gradient);
    z-index: 120;
    animation: fadeform .5s ease-in-out;
    .boxTitle-group{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
        .sign-subtitle{
            font-size: 48px;
            font-weight: 700;
            color: var(--subbtn-color);
        }
        .sign-close{
            font-size: 42px;
            font-weight: 300;
            transform: rotate(45deg);
        }
        .closeForm{
            cursor: pointer;
        }
    }
    .sign-form{
        width: 100%;
        height: auto;
        input{
            width: 100%;
            height: 78px;
            margin-top: 30px;
            background: transparent;
            border-bottom: 1px solid var(--border);
            color: var(--subbtn-color);
            padding: 20px;
            font-size: 24px;
            font-weight: 400;
        }
        input[type=submit]{
            border: 1px solid var(--border);
            border-radius: 50px;
            cursor: pointer;
            transition: all .3s ease-in-out;
        }
        input[type=submit]:hover{
        border: 1px solid var(--icon-sel);
        transition: all .3s ease-in-out;
    }
        a{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 78px;
            margin-top: 30px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 50px;
            color: var(--subbtn-color);
            font-size: 24px;
            font-weight: 400;
            text-decoration: none;
            transition: all .3s ease-in-out;
            img{
                margin-right: 20px;
            }
        }
        a:hover{
            border: 1px solid var(--icon-sel);
            transition: all .3s ease-in-out;
        }
    }
    .divid{
        width: 100%;
        height: auto;
        margin-top: 30px;
        text-align: center;
        font-size: 32px;
        color: var(--icon-nosel);
    }
}
.password-field{
    position: relative;
}
.password-field input{
    padding-right: 74px !important;
}
.password-toggle{
    position: absolute;
    top: calc(50% + 15px);
    right: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: var(--subbtn-color);
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color .3s ease-in-out, color .3s ease-in-out;
}
.password-toggle:hover,
.password-toggle:focus-visible{
    border-color: var(--icon-sel);
    color: var(--body-color);
}
.password-toggle-icon{
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.password-toggle-hide{
    display: none;
}
.password-toggle.is-visible .password-toggle-show{
    display: none;
}
.password-toggle.is-visible .password-toggle-hide{
    display: block;
}
@keyframes fadeform {
    from{
        opacity: 0;
        width: 20px;
    }
    to{
        opacity: 1;
        width: 780px;
    }
}

@keyframes mobfadeform {
    from{
        opacity: 0;
        width: 20px;
    }
    to{
        opacity: 1;
        width: 400px;
    }
}
@keyframes mobfadeformphone {
    from{
        opacity: 0;
        width: 20px;
    }
    to{
        opacity: 1;
        width: 95%;
    }
}

.hidden{
    display: none;
}
@keyframes fadein {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
