@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); :root {
    --primary-color: #0070ff;
    --secondary-color: #095cc6;
    --tertiary-color: #121214;
    --text-color: #ffffff;
    --text-color-d: #d9d9d9;
}

* {
    box-sizing: border-box
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #424242;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: montserrat,sans-serif!important;
    -webkit-font-smoothing: antialiased;
    background: #1a1a1e;
    color: var(--text-color);
}

a {
    text-decoration: none!important;
    color: var(--text-color);
    border: 0;
    cursor: pointer;
    transition: 120ms ease 0s;
    user-select: none;
}

p,h1,h2,h3,h4,h5 {
    margin: 0
}

nav, header, .section-main {
    min-width: 100%;
    position: relative;
    display: block
}

.navbar-in,.header-in,.section-in,.footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1500px;
    position: relative;
    padding-right: 40px;
    margin-right: auto
}

.section-main.space {
    padding-top: 120px;
    padding-bottom: 120px;
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
    display: grid;
    grid-gap: 40px;
}

.grid-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid-7 {
    grid-template-columns: repeat(7, 1fr);
}

.grid-8 {
    grid-template-columns: repeat(8, 1fr);
}

p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-color-d);
}

p a {
    color: var(--primary-color);
}

.flex-row {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

/* OWL */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* OWL */
nav {
    height: 100px;
    position: absolute;
    z-index: 10;
}

.navbar-l, .navbar-r {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.navbar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-logo {
    color: var(--primary-color);
    font-size: 34px;
    font-weight: 900;
}

.navbar-links {
    padding-left: 35px;
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.navbar-link, .footer-link-x {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 20px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.navbar-link:hover, .navbar-link.active, .footer-link-x:hover {
    color: #ffffff;
    background: #1a1a1e;
    border: 1px solid #383838;
}

.btn-primary, .btn-secondary, .btn-link {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: 2px solid var(--primary-color);
    color: #ffffff;
    padding: 11px 30px;
    border-radius: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    font-family: montserrat, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    text-align: center;
    transition: 120ms ease 0s;
    white-space: nowrap;
}

.btn-primary:hover {
    border-color: #3285ef;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -6px rgb(0 123 255 / 54%);
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background: #1a1a1e;
    color: #ffffff;
}

.btn-secondary.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.btn-link {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--text-color);
}

.btn-link:hover i {
    color: var(--primary-color);
}

.btn-link:hover i {
    transform: translate(3px, -2px);
}

.btn-link i {
    transition: 120ms ease 0s;
}

.icon-primary {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #ffffff;
    background: #1a1a1e;
    border: 1px solid #383838;
}

.icon-primary:hover {
    border-color: var(--primary-color);
}

header {
    background: var(--tertiary-color);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: -100px;
}

header.full {
    height: 100vh;
}

header.half-cut {
    height: calc(100vh + 100px);
    padding-bottom: 220px;
    padding-bottom: 0;
    margin: 0;
}

header.half-cut ~ .first.section-main .section-in > div:first-child {
    margin-top: -220px;
}

.block {
    background: #121214;
    border: 1px solid #383838;
    box-shadow: 4px 13px 55px -40px #010c186e;
    border-radius: 10px;
    padding: 40px;
}

.header-container {
    display: flex;
    flex-direction: column;
    width: clamp(0px, 100%, 900px);
}

header.full.half-cut .header-in {
    padding-bottom: 220px;
    padding-top: 0;
}

.header-in {
    padding-bottom: 60px;
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 60px;
}

.header-container > span, .about-r > span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.header-container > span i, .about-r > span i, .reviews-l > span i {
    color: var(--primary-color);
    font-size: 20px;
}

.header-container h1 {
    font-size: 62px;
    text-transform: uppercase;
    font-weight: 800;
}

.header-container h1 span {
    color: var(--primary-color);
}

.header-container p {
    margin: 20px 0;
}

.header-card {
    width: clamp(300px, 100%, 450px);
    min-width: 300px;
}

.header-card-top {
    display: flex;
    align-items: center;
    grid-gap: 18px;
    margin-bottom: 30px;
}

.header-card-top i {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #ffffff;
    background: var(--primary-color);
}

.hct-l {
    position: relative;
}

.hct-l span {
    font-size: 18px;
    font-weight: 600;
}

.hct-l p, .form-checkbox, .header-card-bottom p {
    font-size: 14px;
    line-height: 22px;
    color: var(--text-color-d);
    font-weight: 500;
}

.header-card form {
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.input-area {
    font-family: montserrat, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    border: 1px solid #383838;
    background: #222225;
    padding: 15px;
    border-radius: 6px;
    color: #ffffff;
    transition: 120ms ease 0s;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    resize: none;
}

.input-area::placeholder {
    color: #939393;
}

.input-area:focus {
    background: #2e2e31;
    border: 1px solid #006be059;
}

.input-area:not(:placeholder-shown) {
    background: #3d3d43;
    border: 1px solid var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.form-footer {
    text-align: center;
}

.icon-input {
    position: relative;
}

.icon-input i {
    position: absolute;
    top: 17px;
    left: 15px;
    color: #939393;
}

.icon-input input {
    padding-left: 46px;
}

.input-area:not(:placeholder-shown) ~ i {
    color: var(--primary-color);
}

.flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.form-checkbox {
    display: flex;
    grid-gap: 5px;
}

.header-card-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.form-checkbox label {
    cursor: pointer;
}

.header-bg {
    background: var(--tertiary-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-bg .blob {
    position: absolute;
}

.blob.l {
    bottom: 0;
    left: 0;
    width: 300px;
}

.blob.r {
    bottom: 0;
    right: 0;
    width: 450px;
}

.title-set {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.title-set h2 {
    font-size: 50px;
    width: 100%;
    max-width: 50%;
    font-weight: 700;
}

.title-set p {
    width: 35%;
}

.features {
    padding: 60px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.feature-card > i {
    color: var(--primary-color);
    font-size: 42px;
    width: fit-content;
    margin-bottom: 5px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about {
    display: grid;
    position: relative;
    align-items: center;
    grid-template-columns: repeat(28,minmax(0,1fr));
}

.about-l {
    grid-column: span 11;
    grid-row: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-r {
    grid-column-start: 14;
    grid-column-end: 29;
    position: relative;
}

.about-image {
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.about-r h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
}

.about.x .about-r {
    grid-column: span 15;
}

.about.x .about-l {
    grid-column-start: 18;
    grid-column-end: 29;
}

.about:nth-child(even):before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: #1c1d26;
    z-index: -1;
}

.about-r h2 span {
    color: var(--primary-color);
}

.about-r h2 span.b {
    color: var(--secondary-color);
}

.margin-top-20 {
    margin-top: 20px;
}

.bg-1 {
    background: linear-gradient(180deg, #d4dee812, #f1f5fa0f);
}

.flex-column {
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-hl, .reviews-hr {
    display: flex;
    align-items: center;
}

.reviews-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #26262b;
    border-radius: 6px;
    border: 1px solid #26272b;
    overflow: hidden;
}

.reviews-profile img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.reviews-hli {
    display: block;
}

.review-stars {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    grid-gap: 6px;
    font-size: 15px;
}

.review-stars[data="4"] i:nth-child(n+5) {
    color: #323232;
}

.review-stars[data="3"] i:nth-child(n+4) {
    color: #323232;
}

.review-stars[data="2"] i:nth-child(n+3) {
    color: #bfcfdf;
}

.review-stars[data="1"] i:nth-child(n+2) {
    color: #323232;
}

.reviews-hli h3 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.review-s {
    display: flex;
    align-items: center;
}

.review-s > p, .reviews-hr p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
}

.reviews-body {
    margin-top: 18px;
}

.reviews-holder {
    animation: scroll 45s linear infinite;
    display: flex;
    grid-gap: 30px;
    justify-content: flex-start;
    margin-left: -500px;
}

.reviews-holder:nth-child(2) {
    animation: scroll-b 45s linear infinite;
    margin-left: 0;
    justify-content: flex-end;
    margin-right: -500px;
}

.reviews-holder:hover {
    animation-play-state: paused;
}

.reviews-card {
    transition: 120ms ease 0s;
    min-width: 450px;
}

.reviews-card:hover {
    box-shadow: 4px 13px 55px -40px #1d6dc5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 11));
    }
}

@keyframes scroll-b {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(250px * 11));
    }
}

#reviews {
    overflow: hidden;
}

.stat-card {
    grid-gap: 30px;
    display: flex;
}

.stat-card > i {
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    font-size: 26px;
    background: #27272c;
    border: 1px solid #0070ff47;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stat-card > .r span {
    font-size: 32px;
    font-weight: 700;
}

.stats-holder {
    grid-gap: 20px;
    margin-top: 20px;
}

/* faq */
.faq-row {
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
}

.faq-title {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.faq-title i {
    color: #ffffff;
    display: flex;
    font-size: 13px;
    margin-right: 20px;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    background: #474a4f;
    border-radius: 4px;
    border: 1px solid #6f6f6f;
    transition: 100ms ease 0s;
}

.faq-inf {
    margin-top: 20px;
    color: var(--text-color-d);
    display: none;
    transition: 150ms ease 0s;
    font-size: 15px;
}

.faq-body.active .faq-inf {
    display: block;
}

.faq-body.active .faq-title i {
    transform: rotate(45deg);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-body {
    cursor: pointer;
    background: #121214;
    border: 1px solid #383838;
    box-shadow: 4px 13px 55px -40px #010c186e;
    border-radius: 10px;
    padding: 30px;
}

.faq-body:hover {
    border: solid 1px #0070ff47;
    background: #2e2e35;
}

.faq-body.active {
    background: #161616;
    border: solid 1px #0070ff;
}

.faq-holder[trigger] {
    display: none;
}

.faq-holder[trigger].active {
    display: grid;
}

.title-set.x p {
    width: auto;
}

.title-set.x .flex-column {
    grid-gap: 10px;
    width: 35%;
}

.icons-list {
    display: flex;
    align-items: center;
    height: 40px;
    justify-content: space-between;
    grid-gap: 30px;
    margin-top: 120px;
}

.icons-list img {
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: 120ms ease 0s;
}

.icons-list img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.pre-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    /* margin-top: 120px; */
}

.post-footer {
    background: var(--primary-color);
    padding: 14px 0;
}

.post-footer .footer-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-footer p {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.footer-links-x {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.footer-link-x {
    color: #ffffff;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 10px 15px;
}

.footer-link-x:hover {
    color: var(--text-color-d);
}

.pre-footer .header-bg .blob {
    height: 100%;
    width: fit-content;
    opacity: 0.5;
}

.pre-footer .footer-block {
    margin-top: -120px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-body {
    padding: 75px 0px;
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-gap: 35px;
}

.site-logo img {
    height: 70px;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

@media screen and (max-width: 768px) {
    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none;
    }
}

.xn-panel {
    display: flex;
}

.xn-site-body {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.xn-sidebar {
    width: 320px;
    height: 100vh;
    border-right: 1px solid #383838;
    background: #121214;
}

.secondary-navbar {
    position: relative;
    padding: 20px 30px;
    background: linear-gradient(45deg, #15151a, #232325);
    border-bottom: 1px solid #383838;
    align-items: center;
    display: flex;
    height: auto;
}

.xn-site-body-main {
    border-radius: 10px;
    padding: 30px;
    overflow: auto;
    height: calc(100vh - 100px);
    background-image: url(https://storage.perfectcdn.com/b16p4w/5dodf5u4c8md45ia.svg);
    background-position: bottom right;
    background-size: 350px;
    background-repeat: no-repeat;
}

.dashboard {
    background: #1a1a1e;
}

.secondary-navbar .navbar-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.secondary-navbar .secondary-bar-intro {
    flex-direction: column;
}

.secondary-navbar .secondary-bar-intro p {
    line-height: 24px;
    font-size: 13px;
    font-weight: 400;
}

.secondary-navbar .navbar-in {
    padding: 0;
}

.xn-sidebar-in {
    padding: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 40px;
}

.sidebar-body {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    grid-gap: 4px;
}

.sidebar-link {
    padding: 14px 10px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #ffffffad;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-left: -25px;
    padding-left: 35px;
    border-left: 0;
}

.sidebar-link:hover {
    border-color: #00000017;
    color: #ffffff;
}

.sidebar-footer {
    margin-top: auto;
}

.sidebar-link.active {
    border-color: #ffffff17;
    color: #ffffff;
    background: #222225;
    border-radius: 0 10px 10px 0;
}

.sidebar-link.active i {
    color: var(--primary-color);
}

.sidebar-link:hover i {
    color: var(--primary-color);
}

.sidebar-link.active:before {
    content: "";
    position: absolute;
    height: 34px;
    width: 6px;
    border: 10px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 0 20px 20px 0;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.sidebar-profile-img {
    display: flex;
    background: black;
    border-radius: 5px;
    overflow: hidden;
    width: 50px;
    height: 50px;
}

.sidebar-pf-r {
    display: block;
}

.sidebar-pf-r p {
    overflow: hidden;
    max-width: 160px;
    text-overflow: ellipsis;
    font-size: 13px;
    color: #9b9b9b;
    line-height: 21px;
}

.sidebar-pf-r span {
    font-weight: 500;
    text-transform: capitalize;
}

.sidebar-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xn-block-nav {
    display: flex;
    align-items: center;
    grid-gap: 25px;
    margin-bottom: 40px;
}

.xn-signup {
    display: grid;
    grid-template-columns: 700px auto;
    height: 100vh;
    width: 100vw;
}

.xn-signup-l, .xn-signup-r {
    position: relative;
}

.xn-signup-l {
    padding: 10px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xn-signup-body {
    width: 100%;
    margin: auto;
}

.xn-signup-header {
    margin-bottom: 20px;
}

.xn-signup-header h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}

.xn-signup-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
}

.xn-signup-main form {
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

.form-control {
    padding: 16.5px 20px;
    font-size: 15px;
    font-family: montserrat,sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    color: #ffffff;
    transition: 160ms ease 0ms;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px #383838;
    width: 100%!important;
    display: block;
    max-width: unset;
    background: #222225;
    border: none;
}

.form-control:focus, .form-control:not(:placeholder-shown) {
    background: #2e2e31;
    box-shadow: inset 0 0 0 1px #0070ff17;
}

.xn-signup-l .site-logo {
    margin-right: auto;
}

.btn-primary p, .btn-secondary p, .btn-link p {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

.table {
    border-collapse: separate;
    border-spacing: 0 1rem;
    width: 100%;
}

.table tr th {
    border: 0;
    text-align: left;
    padding: 0 10px;
}

.table tr td {
    background: #222225;
    padding: 20px;
    font-size: 14px;
}

.table tr td {
    border-top: 1px solid #383838;
    border-bottom: 1px solid #383838;
}

.table tr.table-category td {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px!important;
}

.table tr td:first-child {
    border-radius: 6px 0 0 6px;
    border-left: 1px solid #383838;
}

.table tr td:last-child {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #383838;
}

.pre-footer .footer-block .title-set {
    flex-direction: column;
    margin-bottom: 0;
    max-width: 800px;
    text-align: center;
}

.pre-footer .footer-block .title-set * {
    max-width: 100%;
    width: 100%;
}

.footer-body-r {
    display: grid;
    align-items: flex-start;
    grid-gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    flex-grow: 1;
}

.footer-main {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.footer-links-block h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.footer-link {
    font-size: 14px;
    width: fit-content;
    font-weight: 400;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-link:before {
    width: 12px;
    height: 2px;
    background: #0070ff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 0;
    transition: 120ms ease 0s;
}

.footer-link:hover:before {
    width: 10px;
}

.footer-links-row {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.footer-link-y {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: black;
}

.margin-bottom-120 {
    margin-bottom: 120px;
}

.xn-service-description {
    display: none;
}

.table tr.table-category td .fab {
    margin-right: 10px;
}

.table-srate span, .xn-service-id-slot {
    background: #0070ff17;
    border: 1px solid #0070ff40;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
}

.xn-service-name {
    font-weight: 500;
    font-size: 13px;
}

.table-sid span {
    font-weight: 600;
    color: #939393;
}

.modal-xn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    background: #00000038;
    transition: 120ms ease 0s;
    z-index: 1000;
}

.modal-in {
    padding: 40px;
    background: #121214;
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
    border: 1px #383838;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.modal-xn.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    top: -25px;
    position: absolute;
    right: 20px;
    height: 50px;
    width: 50px;
    background: var(--primary-color);
    border: 1px solid #ffffff61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
}

.modal-xn .modal-footer {
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.modal-xn .modal-footer:before, .modal-xn .modal-footer:after {
    display: none;
}

.modal-footer-l {
    height: 52px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0070ff0a;
    border: 2px solid #0070ff45;
    border-radius: 6px;
    white-space: nowrap;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 17px;
}

.modal-footer-r {
    width: 100%;
}

.navbar-mobile-btn {
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navbar-mobile-btn i {
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-mobile-btn i:before, .navbar-mobile-btn i:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-mobile-btn i:before {
    top: -12px;
}

.navbar-mobile-btn i:after {
    bottom: -12px;
}

.navbar-mobile-btn.active i {
    background: transparent;
}

.navbar-mobile-btn.active i:before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-mobile-btn.active i:after {
    bottom: 0;
    transform: rotate(-45deg);
}

body.mobile-nav-open {
    overflow: hidden;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #121214;
    width: 100vw;
    height: 100vh;
    padding: 40px;
    padding-top: 100px;
    z-index: 9;
    left: -100%;
    transition: 160ms ease 0s;
    background-image: url(https://storage.perfectcdn.com/b16p4w/5dodf5u4c8md45ia.svg);
    background-position: bottom right;
    background-size: 250px;
    background-repeat: no-repeat;
}

.mobile-nav-in {
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 10px;
}

.mobile-nav-in .navbar-link {
    background: #ffffff0a;
    border: 1px solid #383838;
}

.mobile-nav-in .navbar-link.active {
    background: var(--primary-color);
    border: 1px solid #383838;
}

.mobile-nav-open .mobile-nav {
    left: 0;
}

.reset-password {
    text-transform: uppercase;
    font-size: 12px;
}


.dashboard .mobile-nav-in {
    padding-top: 40px;
}

.dashboard .section-in {
    padding: 0;
}

.navbar-icon-small {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.navbar-icon-small:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.user-balance {
    background: #203246;
    border: 1px solid #0e56a3;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    color: #cfcfcf;
}

.user-balance span {
    background: transparent;
    padding: 0;
    color: #00d4aa;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.secondary-navbar .secondary-bar-intro h2 {
    font-weight: 600;
}

.block-header {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.block-header i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 10px;
}

.dashboard .block {
    padding: 30px;
}

#order-form {
    display: flex;
    flex-direction: column;
}

.form-footer {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.form-footer-small input {
    width: fit-content;
    max-width: 160px;
    border-radius: 10px;
}

.form-footer-big {
    height: 52px;
    width: 100%;
}

.search-dropdown .input-wrapper .input-wrapper__prepend, .search-dropdown .input-wrapper .input-wrapper__append {
    color: white;
}

.stats-bar {
    background: rgb(18 18 20);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(56 56 56);
    border-radius: 0 0 10px 10px;
    padding: 20px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -31px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}


@media screen and (max-width: 1024px) {
    .navbar-links {
        display: none;
    }

    .navbar-r {
        display: none;
    }

    .header-container h1 {
        font-size: 28px;
    }

    .flex-row {
        flex-direction: column;
    }

    .header-in {
        flex-direction: column;
    }

    header {
        height: auto!important;
    }

    .btn-primary, .btn-secondary, .btn-link {
        width: 100%;
    }

    .flex-space {
        flex-direction: column;
        align-items: flex-start;
    }

    header.half-cut ~ .first.section-main .section-in > div:first-child {
        margin: 0;
        margin-top: 60px;
    }

    .header-bg .blob {
        display: none;
    }

    header.full .header-in {
        padding-bottom: 60px;
    }

    .block {
        padding: 30px;
    }

    .title-set * {
        width: 100%!important;
        max-width: 100%!important;
    }

    .title-set {
        flex-direction: column;
        width: 100%;
    }

    .title-set h2 {
        font-size: 32px;
    }

    .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
        grid-template-columns: repeat(1, 1fr);
    }

    .about {
        display: flex;
    }

    .about-l img {
        display: none;
    }

    .about-r h2 {
        font-size: 30px;
    }

    .section-main.space {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .icons-list {
        flex-wrap: wrap;
        align-items: center;
        height: auto;
    }

    .icons-list img {
        height: 38px;
    }

    .footer-body, .footer-body-r {
        grid-template-columns: 1fr;
    }

    .footer-body-r {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-links-block {
        background: #1a1a1e;
        padding: 15px;
        border-radius: 6px;
        border: 1px solid #26272b;
    }

    .footer-links-block h4 {
        margin: 0;
    }

    .post-footer .footer-in {
        flex-direction: column;
    }

    p {
        font-size: 14px;
        line-height: 28px;
    }

    .reset-password {
        font-size: 13px;
        color: #b4bbc8;
        text-transform: uppercase;
        font-weight: 500;
    }

    .header-card .flex-space {
        align-items: center;
        grid-gap: 10px;
    }

    .xn-site-body {
        padding: 0;
    }

    .secondary-navbar .navbar-container {
        display: flex;
        align-items: center;
        padding: 0 30px;
    }

    .secondary-navbar {
        padding: 15px 0px;
    }

    .border-rounded {
        background: #2e2e31;
    }

    .site-logo img {
        height: 48px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}
