@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --accent-color: #4ade80;
    --secondary-bg: #1a1a1a;
    --border-color: #222;
    --highlight-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.form-control {
    border: 1px solid #6b4f7b36;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
    border-radius: 85px;
    color: #fff !important;
    box-shadow: none !important;
    padding: 10px 20px
}

.form-control::placeholder {
    color: #fff
}

.form-control:focus {
    border-color: #4ade80;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
}

.form-control::placeholder {
    color: #a8a8a8
}

.form-control:focus-visible {
    outline: 0;
    box-shadow: none
}

.filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap
}

.filter-buttons button {
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    background: 0 0;
    color: #fff;
    transition: all .3s ease !important;
    border: 1px solid #6b4f7b36;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: #4ade80;
    color: #000000
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.nav-link:hover {
    color: var(--text-color);
}

.main-container {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.buy-btn:hover {
    background: #3bc971;
}

.w-col-12 {
    width: 100%
}

.status-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-family: 'Chivo', sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

.w-block {
    display: block
}


html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px
}

h2 {
    font-size: 32px;
    line-height: 36px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px
}

h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px
}

h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px
}

h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px
}

p {
    margin-top: 0;
    margin-bottom: 10px
}

ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
    list-style: disc;
}

.w-list-unstyled {
    padding-left: 0;
    list-style: none
}

.w-video {
    width: 100%;
    position: relative;
    padding: 0
}

[type=button],
[type=reset],
button {
    border: 0;
    cursor: pointer
}

.w-form {
    margin: 0 0 15px
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700
}

@keyframes updown {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, 20px);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}


nav {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
}

footer {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    /* background-color: #1a202633; */
    background-color: #0e0715;
    position: relative;
    overflow: hidden;
    border: 1px solid #6b4f7b36;
    border-radius: 16px;
    margin-top: 60px;
    margin-bottom: 20px;
}

.w-input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc
}

.w-input:-moz-placeholder {
    color: #999
}

.w-input::-moz-placeholder {
    color: #999;
    opacity: 1
}

.w-input:-ms-input-placeholder {
    color: #999
}

.w-input::-webkit-input-placeholder {
    color: #999
}

.w-input:focus {
    border-color: #3898ec;
    outline: 0
}

.w-input[disabled],
.w-input[readonly] {
    cursor: not-allowed
}

.w-input[disabled]:not(.w-input-disabled),
.w-input[readonly] {
    background-color: #eee
}

.w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0
}

.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px
}

.w-container:after,
.w-container:before {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2
}

.w-container:after {
    clear: both
}

.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px
}

.w-row:after,
.w-row:before {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2
}

.w-row:after {
    clear: both
}

.w-row .w-row {
    margin-left: 0;
    margin-right: 0
}

.w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px
}

.w-col .w-col {
    padding-left: 0;
    padding-right: 0
}

.w-col-1 {
    width: 8.33333333%
}

.w-col-2 {
    width: 16.66666667%
}

.w-col-3 {
    width: 25%
}

.w-col-4 {
    width: 33.33333333%
}

.w-col-5 {
    width: 41.66666667%
}

.w-col-6 {
    width: 50%
}

.w-col-7 {
    width: 58.33333333%
}

.w-col-8 {
    width: 66.66666667%
}

.w-col-9 {
    width: 75%
}

.w-col-10 {
    width: 83.33333333%
}

.w-col-11 {
    width: 91.66666667%
}



@media screen and (max-width:991px) {
    .w-container {
        max-width: 728px
    }
}

@media screen and (max-width:767px) {

    .w-container .w-row,
    .w-row {
        margin-left: 0;
        margin-right: 0
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto
    }

    .w-col-small-1 {
        width: 8.33333333%
    }

    .w-col-small-2 {
        width: 16.66666667%
    }

    .w-col-small-3 {
        width: 25%
    }

    .w-col-small-4 {
        width: 33.33333333%
    }

    .w-col-small-5 {
        width: 41.66666667%
    }

    .w-col-small-6 {
        width: 50%
    }

    .w-col-small-7 {
        width: 58.33333333%
    }

    .w-col-small-8 {
        width: 66.66666667%
    }

    .w-col-small-9 {
        width: 75%
    }

    .w-col-small-10 {
        width: 83.33333333%
    }

    .w-col-small-11 {
        width: 91.66666667%
    }

    .w-col-small-12 {
        width: 100%
    }
}

@media screen and (max-width:479px) {
    .w-container {
        max-width: none
    }

    .w-col {
        width: 100%
    }
}

.w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: #fff
}

.w-background-video>video {
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit: cover;
    z-index: -100
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    display: none !important
}

.w-background-video--control {
    position: absolute;
    bottom: 1em;
    right: 1em;
    background-color: transparent;
    padding: 0
}

.w-background-video--control>[hidden] {
    display: none !important
}

.w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #ddd;
    clear: both;
    -webkit-tap-highlight-color: transparent
}

.w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left
}

.w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.w-icon-slider-left,
.w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em
}

.w-slider-aria-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

@media screen and (max-width:767px) {
    .w-nav-brand {
        padding-left: 10px
    }
}

.w-nav {
    position: relative;
    background: #ddd;
    z-index: 1000
}

.w-nav:after,
.w-nav:before {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2
}

.w-nav:after {
    clear: both
}

.w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333
}

.w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto
}

[data-nav-menu-open] {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #c8c8c8;
    text-align: center;
    overflow: visible;
    min-width: 200px
}

.w-nav[data-animation=over-left] [data-nav-menu-open] {
    right: auto;
    z-index: 1;
    top: 0
}

.w-nav[data-animation=over-right] [data-nav-menu-open] {
    left: auto;
    z-index: 1;
    top: 0
}

.w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.w-nav-button:focus {
    outline: 0
}

.w-nav[data-collapse=all] .w-nav-button {
    display: block
}

@media screen and (max-width:991px) {
    .w-nav[data-collapse=medium] .w-nav-button {
        display: block
    }
}

@media screen and (max-width:767px) {
    .w-nav[data-collapse=small] .w-nav-button {
        display: block
    }

    .w-nav-brand {
        padding-left: 10px
    }
}

@media screen and (max-width:479px) {
    .w-nav[data-collapse=tiny] .w-nav-button {
        display: block
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.navbar-container {
    display: -ms-grid;
    display: grid;
    max-width: 1300px;
    min-height: 80px;
    margin-right: 50px;
    margin-left: 40px;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    grid-auto-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 16px;
    -ms-grid-columns: .3fr 1fr -webkit-max-content;
    -ms-grid-columns: .3fr 1fr max-content;
    grid-template-columns: .3fr 1fr -webkit-max-content;
    grid-template-columns: .3fr 1fr max-content;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.nav-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
}

.div-block {
    margin-right: -33px
}

.bg-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.bg-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    rotate: 180deg;
}

section.banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 50px;
    flex-wrap: wrap
}

section.banners img {
    width: auto;
    height: 100px
}

.heading-1 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 62px;
    line-height: 66px;
    font-weight: 700
}

.heading-1.a-h-heading {
    margin-bottom: 40px;
    text-align: center
}

.heading-1.p-h-heading {
    max-width: 700px;
    color: #fff;
    text-align: center
}

.body-1 {
    margin-bottom: 0;
    font-family: 'Excon variable', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    text-align: center
}

.body-1.hero-paragraph {
    margin-top: 24px;
    margin-bottom: 40px;
    color: #fff;
    text-align: left
}

.body-1.content-paragraph {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: left
}

.body-1.link-heading {
    font-family: Excon, sans-serif;
    font-weight: 700
}

.body-1.p-h-paragraph {
    max-width: 600px;
    margin-top: 24px;
    margin-bottom: 32px;
    color: #fff;
    text-align: center
}

.body-1.font-paragraph {
    margin-top: 24px;
    margin-bottom: 32px
}

.main-button {
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #4ade80;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color .2s ease-in-out;
    border: 1px solid #4ade80;
    text-decoration: none;
    cursor: pointer;
}

.main-button:hover {
    background-color: #4b9e69;
    background-position: right
}

.second-button {
    padding: 6px 16px;
    border-radius: 50px;
    background-color: #ffffff00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: background-color .2s ease-in-out;
    border: 1px solid #4b9e69;
    text-decoration: none;
    cursor: pointer;
}

.second-button:hover {
    background-color: #4b9e69;
    background-position: right
}


.main-button i,
.second-button i {
    font-size: 14px;
}

.shine {
    animation: shine 3s infinite;
    box-shadow: 0 0 3px 0 #4ade80;
    border: 1px solid #67da91;
}

@keyframes shine {
    0% {
        box-shadow: 0 0 3px 0 #4ade80;
    }

    50% {
        box-shadow: 0 0 13px 0 #a9e6bf, 0 0 3px 0 #ffffff, 0 0 13px 0 #78a388;
    }

    100% {
        box-shadow: 0 0 3px 0 #4ade80;
    }
}



.main-button.login-button {
    width: 100%;
    border-radius: 4px
}

.div-block-2 {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    text-align: center
}

.section-title h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 48px;
    line-height: 66px;
    font-weight: 700
}

.sub-heading {
    font-size: 20x;
    color: #b3b3b3
}

.sub-heading-01 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700
}

.content-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 120px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-container {
    max-width: 1240px;
    margin: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.content-image {
    max-width: 620px
}

.content-text {
    max-width: 520px
}

.contetn-list {
    margin-top: 24px;
    margin-bottom: 0;
    padding-left: 0
}

.content-list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-icon {
    margin-right: 12px
}

.content-section-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 127px;
    padding-bottom: 173px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-2-text {
    max-width: 520px
}

.contetn-2-image {
    max-width: 620px
}

.video-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 138px;
    padding-bottom: 130px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #002f86
}

.video-container {
    max-width: 1200px;
    margin-right: 50px;
    margin-left: 50px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #002f86
}

.video-text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.video-link-wrapper {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1.3fr;
    grid-template-columns: 1fr 1.3fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.video-text {
    display: -ms-grid;
    display: grid;
    max-width: 444px;
    grid-auto-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto
}

.video-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 380px;
    max-width: 655px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.video-wrapper:hover {
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%)
}

.video-text-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.div-block-3 {
    margin-left: 24px
}

.sub-heading-2 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700
}

.sub-heading-2.t-sub-heading-2 {
    color: #fff
}

.body-2 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Excon variable', sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400
}

.body-2.footer-link {
    font-family: 'Excon variable', sans-serif;
    text-decoration: none
}

.body-2.footer-down-text {
    margin-top: 0;
    font-family: 'Excon variable', sans-serif;
    color: #fff
}

.body-2.video-paragraph {
    margin-top: 12px;
    color: #fff
}

.image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-6 {
    position: absolute;
    left: auto;
    top: auto;
    right: -7%;
    bottom: -14%;
    max-width: 15%
}

.image-7 {
    position: absolute;
    left: -6%;
    top: -12%;
    right: auto;
    bottom: auto
}

.image-8 {
    position: absolute;
    left: auto;
    top: auto;
    right: -6%;
    bottom: 45%
}

.slide-nav {
    display: none
}

.slider {
    height: auto;
    background-color: transparent
}

.slide-image {
    position: relative;
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 65px;
    margin-left: 40px
}

.slide-text {
    position: relative;
    z-index: 2;
    max-width: 540px
}

.star-icon-block {
    margin-bottom: 24px
}

.star-image {
    margin-right: 10px
}

.heading-3 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
}

.div-block-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 48px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.text-block {
    color: #fff;
    font-size: 18px;
    line-height: 28px
}

.text-span {
    font-weight: 700
}

.image-9 {
    position: absolute;
    left: -10%;
    top: -8%;
    right: auto;
    bottom: auto
}

.image-10 {
    position: relative;
    z-index: 1;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-11 {
    position: absolute;
    left: auto;
    top: auto;
    right: -14%;
    bottom: -12%
}

.image-12 {
    position: absolute;
    left: auto;
    top: -8%;
    right: -10%;
    bottom: -8%
}

.image-13 {
    position: absolute;
    left: 25%;
    top: auto;
    right: auto;
    bottom: -12%
}

.link-block {
    text-decoration: none
}

.image-14 {
    position: absolute;
    left: 13%;
    top: 11%;
    right: 13%;
    bottom: auto
}

.image-15 {
    position: absolute;
    left: auto;
    top: auto;
    right: 6%;
    bottom: 14%
}

.image-16 {
    position: absolute;
    left: 6%;
    top: auto;
    right: auto;
    bottom: 8%
}

.image-17 {
    position: absolute;
    left: auto;
    top: 10%;
    right: 14%;
    bottom: auto
}



.div-block-8 {
    margin-bottom: 24px
}

.div-block-9 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    padding-bottom: 32px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #fff
}

.link-block-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #f9f9f9
}

.div-block-10 {
    display: -ms-grid;
    display: grid;
    margin-right: 200px;
    grid-auto-columns: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.list-2 {
    padding-left: 20px
}

.a-hero-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 88px;
    padding-bottom: 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.a-hero-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
    margin-right: 60px;
    margin-left: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.a-h-tittle-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 900px;
    margin-bottom: 90px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.products-wrap {
    margin-bottom: 30px !important
}

.image-section {
    padding-top: 70px
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 720px;
    max-width: 100%
}

.list-3 {
    margin-bottom: 0
}

.p-h-tittle-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 112px;
    margin-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.p-h-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 0;
    height: 48px;
    max-width: 232px
}

.div-block-11 {
    position: relative;
    width: 100%;
    height: 48px;
    border-radius: 24px;
    background-color: #023ba5
}

.link-block-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 24px;
    background-color: #fff;
    text-decoration: none
}

.link-block-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 24px;
    background-color: transparent;
    text-decoration: none
}

.image-18 {
    position: absolute;
    left: 14%;
    top: -16%;
    right: auto;
    bottom: auto
}

.div-block-13 {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-row-gap: 4px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto
}

.div-block-14 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.text-block-2 {
    font-family: Excon, sans-serif;
    color: #fff;
    font-size: 44px;
    line-height: 52px;
    font-weight: 700
}

.card-block-1 {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 84px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto
}

.list-4 {
    display: -ms-grid;
    display: grid;
    margin-bottom: 0;
    padding-left: 0;
    grid-auto-columns: 1fr;
    grid-row-gap: 19px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto
}

.list-item {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 16px;
    -ms-grid-columns: -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.div-block-15 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: -2;
    width: 100%;
    height: 634px;
    background-color: #002f86
}

.image-19 {
    position: absolute;
    left: auto;
    top: -12%;
    right: 0;
    bottom: auto
}

.image-20 {
    position: absolute;
    left: auto;
    top: auto;
    right: -9%;
    bottom: 23%
}

.text-span-2 {
    color: #4ade80
}

.image-21 {
    height: 50px;
    margin-left: 60px
}

.text-block-3 {
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    text-align: center
}

.div-block-16 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.list-item-2 {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 12px;
    -ms-grid-columns: -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.list-5 {
    display: -ms-grid;
    display: grid;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    grid-auto-columns: 1fr;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto
}

.body-3 {
    font-family: Excon, sans-serif
}

.image-22 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-23 {
    width: 17%;
    margin-bottom: -20px;
    padding-bottom: 0;
    text-align: left;
    -o-object-fit: cover;
    object-fit: cover
}

.image-24,
.image-25 {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-26,
.image-27 {
    width: 500px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-28 {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-29,
.image-30,
.image-31,
.image-32,
.image-33,
.image-34,
.image-35 {
    width: 100%
}

.link-block-5 {
    max-width: 260px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none
}

.small-text {
    margin-top: 12px;
    color: #666;
    line-height: 22px
}

.small-text.t-body-3 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400
}

.link-block-6 {
    max-width: 560px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none
}

.image-38,
.image-39 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.link-block-7 {
    display: -ms-grid;
    display: grid;
    max-width: 260px;
    padding-bottom: 32px;
    grid-auto-columns: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr -webkit-max-content;
    -ms-grid-columns: 1fr max-content;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none
}

.link-block-8 {
    display: -ms-grid;
    display: grid;
    padding-bottom: 30px;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 16px;
    -ms-grid-columns: -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none
}

.image-40 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-41 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-42 {
    position: absolute;
    left: 12%;
    top: 16%;
    right: auto;
    bottom: auto;
    width: 30%
}

.image-43 {
    position: absolute;
    left: auto;
    top: 7%;
    right: 1%;
    bottom: auto;
    width: 20%
}

.image-44 {
    position: absolute;
    left: 20%;
    top: auto;
    right: auto;
    bottom: 8%
}

.link-div {
    margin-top: 40px
}

.image-45 {
    width: 100%;
    height: 720px;
    -o-object-fit: cover;
    object-fit: cover
}

.rich-text-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 186px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400
}

.body-4 {
    font-family: Excon, sans-serif
}

.rich-text-block {
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5
}

.rich-text-container {
    max-width: 800px;
    margin-right: 120px;
    margin-left: 120px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.link-div-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.link-block-9 {
    max-width: 260px;
    text-decoration: none
}

.image-46 {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 0
}

.login-section {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.login-content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 441px;
    margin-right: 60px;
    margin-left: 60px;
    padding-top: 40px;
    padding-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.login-image-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding-top: 97px;
    padding-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #002f86
}

.login-block {
    margin-top: 110px
}

.image-47 {
    width: 24px;
    height: 24px
}

.login-form-block {
    margin-bottom: 0
}

.link {
    color: #fff;
    font-weight: 500
}

.login-image {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    max-width: 500px;
    margin-right: 40px;
    margin-bottom: 18px;
    margin-left: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slide {
    background-color: transparent;
    text-align: center
}

.slider-2 {
    height: auto;
    margin-right: 40px;
    margin-left: 40px;
    background-color: transparent
}

.slide-nav-2 {
    top: 47px
}

.image-48 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.image-49 {
    position: absolute;
    left: -9%;
    top: auto;
    right: auto;
    bottom: -7%
}

.image-50 {
    position: absolute;
    left: 24%;
    top: auto;
    right: auto;
    bottom: 14%
}

.image-51 {
    position: absolute;
    left: 5%;
    top: auto;
    right: 8%;
    bottom: 32%
}

.image-52 {
    position: absolute;
    left: auto;
    top: 4%;
    right: 7%;
    bottom: auto
}

.link-2 {
    color: #4ade80;
    text-decoration: none
}

.link-3 {
    color: #fff;
    font-weight: 500
}

.a-h-image-wrapper {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto
}

.image-block-1 {
    position: relative;
    display: -ms-grid;
    display: grid;
    padding-top: 90px;
    grid-auto-columns: 1fr;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto
}

.image-block-2 {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto
}

.a-image-1 {
    position: relative;
    overflow: hidden;
    height: 260px;
    max-width: 240px
}

.a-image-2 {
    position: relative;
    overflow: hidden;
    height: 420px;
    max-width: 500px
}

.a-image-3 {
    position: relative;
    overflow: hidden;
    height: 440px;
    max-width: 500px
}

.a-image-4 {
    position: relative;
    overflow: hidden;
    height: 240px;
    max-width: 240px
}

.a-image-5 {
    position: relative;
    overflow: hidden;
    height: 310px;
    max-width: 220px
}

.image-59 {
    position: absolute;
    left: 45%;
    top: 9%;
    z-index: -1
}

.image-60 {
    position: absolute;
    left: 10%;
    top: 19%
}

.image-61 {
    position: absolute;
    left: 5%;
    top: 36%
}

.image-62 {
    position: absolute;
    left: -15%;
    top: auto;
    right: auto;
    bottom: -10%;
    z-index: -1
}

.image-63 {
    position: absolute;
    left: auto;
    top: -2%;
    right: -12%;
    bottom: auto;
    z-index: -1
}

.image-64 {
    position: absolute;
    left: 21%;
    top: auto;
    right: auto;
    bottom: 4%
}

.brand {
    width: 144px
}

.image-cover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0
}

.image-cover-2 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0
}

.buttons-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 160px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.buttons-container {
    max-width: 1160px;
    margin-right: 60px;
    margin-left: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.buttons-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-auto-columns: 1fr;
    -ms-grid-columns: minmax(-webkit-min-content, -webkit-max-content);
    -ms-grid-columns: minmax(min-content, max-content);
    grid-template-columns: minmax(-webkit-min-content, -webkit-max-content);
    grid-template-columns: minmax(min-content, max-content);
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto
}

.images-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 120px;
    padding-bottom: 120px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.images-container {
    max-width: 1160px;
    margin-right: 60px;
    margin-left: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.image-link-text {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 0;
    padding-right: 40px;
    background-image: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46693780aa718_Link%20Icon%202.svg);
    background-position: 100% 50%;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 18px;
    line-height: 28px
}

.image-card {
    height: 360px
}

.image-65 {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover
}

.font-icon-container {
    max-width: 1160px;
    margin-right: 60px;
    margin-left: 60px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.v-block {
    width: 100%;
    margin-top: 54px;
    padding-top: 72px;
    padding-bottom: 92px;
    background-color: #f9f9f9
}

.rich-text-block-1 {
    color: #fff
}

.rich-text-section-1 {
    padding-bottom: 120px
}

.rich-text-container-1 {
    width: 1160px;
    max-width: 1160px;
    margin-right: 60px;
    margin-left: 60px
}

.list-7 {
    color: #fff;
    font-size: 18px;
    line-height: 28px
}

.link-4 {
    font-size: 16px;
    line-height: 24px
}

.div-block-17 {
    display: block
}

.navbar-brand img {
    height: 30px
}

.button-primary {
    padding: 12px 25px;
    background-color: #1a1b1f;
    -webkit-transition: .2s;
    transition: .2s;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase
}

.button-primary:hover {
    background-color: #32343a;
    color: #fff
}

.button-primary:active {
    background-color: #43464d
}

.container-4 {
    margin-top: 100px;
    margin-bottom: 30px
}

.container-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 94px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px
}

.container-6 {
    margin-top: 54px
}

.div-block-18 {
    margin-top: 53px
}

.heading-4 {
    text-align: center
}

.container-7 {
    display: -ms-grid;
    display: grid;
    margin-bottom: 75px;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-areas: "Area";
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 16px auto;
    grid-template-rows: auto auto
}

.image-68 {
    display: inline-block;
    text-align: left
}

.heading-5 {
    margin-bottom: 54px;
    font-size: 44px;
    text-align: center
}

.section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #ffea00
}

.div-block-19 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 446px;
    min-height: 54px;
    min-width: 862px;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    border: 0 solid #fff;
    border-radius: 20px;
    background-color: #e1ff00
}

.section-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.text-block-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: Excon, sans-serif;
    font-weight: 500
}

.link-5 {
    margin-left: 10px;
    padding-left: 0
}

@media screen and (min-width:1280px) {
    .div-block {
        margin-right: -30px
    }

    .rich-text-container-1 {
        margin-right: auto;
        margin-left: auto
    }
}

@media screen and (min-width:1440px) {
    .navbar-container {
        margin-right: 80px;
        margin-left: 60px;
        text-align: center
    }

    .div-block {
        margin-right: -60px
    }

    .hero-container {
        margin-left: 120px;
        -ms-grid-columns: 1fr -webkit-max-content;
        -ms-grid-columns: 1fr max-content;
        grid-template-columns: 1fr -webkit-max-content;
        grid-template-columns: 1fr max-content
    }

    .div-block-2 {
        grid-column-gap: 16px
    }

    .heading-2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
        align-content: flex-end
    }

    .content-container {
        margin: auto
    }

    .contetn-list {
        margin-top: 0;
        margin-bottom: 20px
    }

    .video-wrapper {
        position: relative
    }

    .image {
        -o-object-fit: cover;
        object-fit: cover
    }

    .image-6 {
        position: absolute;
        max-width: 100%
    }

    .image-7 {
        z-index: 1
    }

    .image-8 {
        position: absolute;
        right: -10%
    }

    .image-22 {
        overflow: visible;
        width: 100%;
        height: 93%
    }

    .image-66 {
        max-width: 59%
    }
}

@media screen and (min-width:1920px) {
    .navbar-container {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1
    }

    .navbar {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .div-block {
        margin-right: -86px;
        padding-right: 0;
        padding-left: 0
    }

    .body-1.content-paragraph {
        text-align: left
    }

    .image-container {
        height: 960px
    }

    .image-45 {
        height: 980px
    }
}

@media screen and (max-width:991px) {
    .navbar-container {
        margin-right: 40px;
        margin-left: 40px;
        -ms-grid-columns: 1fr 1fr .25fr;
        grid-template-columns: 1fr 1fr .25fr
    }

    .div-block {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-right: -82px;
        padding-right: 0
    }

    .hero-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .heading-1.a-h-heading,
    .heading-1.p-h-heading {
        text-align: left
    }

    .body-1.p-h-paragraph {
        text-align: left
    }

    .main-button {
        margin-bottom: 27px
    }

    .div-block-2 {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .heading-2 {
        text-align: left
    }

    .heading-2.video-heading {
        margin-bottom: 40px;
        text-align: left
    }

    .heading-2.v-heading {
        text-align: center
    }

    .content-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .contetn-list {
        margin-bottom: 28px
    }

    .video-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .video-text-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .video-link-wrapper {
        grid-row-gap: 40px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .video-wrapper {
        height: auto
    }

    .image-15 {
        bottom: 8%
    }

    .div-block-10 {
        margin-right: 0
    }

    .a-h-tittle-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .image-container {
        height: 444px
    }

    .p-h-tittle-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .image-19 {
        top: -19%
    }

    .image-20 {
        right: -4%
    }

    .image-21 {
        left: -7%;
        top: -3%
    }

    .link-block-5 {
        max-width: none
    }

    .link-block-6 {
        max-width: none
    }

    .link-block-7 {
        max-width: none
    }

    .image-42 {
        width: 25%
    }

    .image-45 {
        height: 480px
    }

    .rich-text-container {
        margin-right: 80px;
        margin-left: 80px
    }

    .a-h-image-wrapper,
    .login-section {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .buttons-container,
    .images-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .font-icon-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .icon-2 {
        font-size: 30px
    }

    .div-block-18 {
        margin-top: 1px;
        margin-bottom: 130px
    }

    .container-7 {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        justify-items: center;
        grid-template-areas: "Area" "." "Area-2" "Area-3";
        -ms-grid-columns: .75fr;
        grid-template-columns: .75fr
    }

    .div-block-19 {
        min-height: 82px;
        min-width: 500px
    }

    .text-block-4 {
        font-size: 12px
    }

    .link-5 {
        margin-left: 0
    }

    .image-69 {
        padding-top: 15px
    }
}

@media screen and (max-width:767px) {
    .navbar-container {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr
    }

    .div-block {
        display: none
    }

    .main-button {
        position: relative;
        z-index: 1
    }

    .div-block-2 {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto
    }

    .video-section {
        padding-top: 100px;
        padding-bottom: 100px
    }

    .image-2,
    .image-3,
    .image-4 {
        max-width: 20%
    }

    .image-7 {
        max-width: 30%
    }

    .image-8 {
        right: -7%;
        max-width: 5%
    }

    .heading-3 {
        margin-top: 0;
        margin-bottom: 0
    }

    .image-9 {
        max-width: 12%
    }

    .image-11 {
        max-width: 25%
    }

    .image-12 {
        max-width: 35%
    }

    .image-13 {
        max-width: 25%
    }

    .image-15 {
        right: 2%;
        bottom: 2%
    }

    .image-17 {
        top: 8%;
        right: 7%
    }

    .div-block-9 {
        padding-top: 24px;
        padding-bottom: 24px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .div-block-10 {
        margin-top: 20px;
        margin-left: 0;
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }

    .a-hero-container {
        margin-right: 40px;
        margin-left: 40px
    }

    .image-container {
        height: 320px
    }

    .image-18 {
        left: -9%;
        top: -5%;
        max-width: 25%
    }

    .image-19 {
        top: -15%
    }

    .image-20 {
        right: -11%;
        bottom: 45%
    }

    .image-21 {
        left: -5%;
        top: -1.5%
    }

    .link-block-7 {
        grid-column-gap: 12px
    }

    .image-45 {
        height: 360px
    }

    .rich-text-container {
        margin-right: 60px;
        margin-left: 60px
    }

    .login-image-wrapper {
        padding-top: 80px
    }

    .image-51 {
        bottom: 34%
    }

}

@media screen and (max-width:479px) {
    .navbar-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-right: 24px;
        margin-left: 24px;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-grid-columns: 1.75fr;
        grid-template-columns: 1.75fr
    }

    .heading-1 {
        min-width: 0;
        font-size: 36px;
        line-height: 64px
    }

    .heading-1.a-h-heading {
        font-size: 52px;
        line-height: 62px
    }

    .body-1.v-text-block {
        font-size: 14px;
        line-height: 22px
    }

    .heading-2 {
        font-size: 42px;
        line-height: 48px
    }

    .heading-2.v-heading {
        font-size: 32px;
        line-height: 40px
    }

    .sub-heading-01 {
        margin-bottom: 11px;
        font-size: 17px
    }

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

    .video-container {
        margin-right: 20px;
        margin-left: 20px
    }

    .image-5 {
        width: 35%
    }

    .image-6,
    .image-8 {
        right: -6%
    }

    .slide-image {
        margin-top: 25px;
        margin-bottom: 40px;
        margin-left: 25px
    }

    .image-9 {
        left: -4%;
        top: -4%
    }

    .image-10 {
        max-width: 90%
    }

    .image-11 {
        right: -2%;
        max-width: 20%
    }

    .image-15 {
        bottom: 6%
    }

    .link-wrapper {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .a-hero-container {
        margin-right: 20px;
        margin-left: 20px
    }

    .image-container {
        height: 200px
    }

    .list-3 {
        padding-left: 20px
    }

    .card-block-1 {
        grid-row-gap: 32px
    }

    .div-block-15 {
        height: 950px
    }

    .image-21 {
        top: -.5%;
        max-width: 30%
    }

    .link-block-8 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .image-45 {
        height: 240px
    }

    .rich-text-container {
        margin-right: 20px;
        margin-left: 20px
    }

    .login-content-wrapper {
        width: auto;
        margin-right: 20px;
        margin-left: 20px
    }

    .login-image-wrapper {
        padding-top: 75px
    }

    .slide-nav-2 {
        top: 114px
    }

    .image-49 {
        left: -25%;
        bottom: -11%
    }

    .image-50 {
        left: 17%;
        bottom: 16%
    }

    .image-51 {
        bottom: 44%
    }

    .image-block-1 {
        grid-row-gap: 30px
    }

    .image-block-2 {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto
    }

    .image-60 {
        top: 5%
    }

    .image-61 {
        top: 45%
    }

    .image-64 {
        bottom: -4%
    }

    .buttons-container,
    .images-container {
        margin-right: 20px;
        margin-left: 20px
    }

    .image-card {
        height: 240px
    }

    .font-icon-container {
        margin-right: 20px;
        margin-left: 20px
    }

    .v-block {
        padding-top: 42px;
        padding-bottom: 48px
    }

    .icon {
        margin-top: 25px;
        margin-left: 69px;
        font-size: 35px;
        text-align: center
    }

    .image-67 {
        display: inline-block;
        padding-right: 15px;
        text-align: center
    }

    .container-3 {
        display: -ms-grid;
        display: grid;
        margin-top: -75px;
        padding-top: 0;
        grid-auto-columns: 1fr;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto
    }

    .div-block-18 {
        margin-top: 38px
    }

    .div-block-19 {
        min-height: 75px
    }

    .text-block-4 {
        margin-left: -30px
    }

    .link-5 {
        padding-right: 86px
    }

    .contact-buttons {
        display: flex;
        flex-direction: column;
    }

    .contact-buttons a {
        margin-bottom: 10px;
    }
}

@font-face {
    font-family: 'Excon variable';
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46632110aa6a1_Excon-Variable.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46653620aa6a5_Excon-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46677f10aa6a8_Excon-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf4661a730aa6a6_Excon-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46683c30aa6a7_Excon-Black.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46654020aa6aa_Excon-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Excon;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46617580aa6a9_Excon-Thin.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gloriahallelujah;
    src: url(https://uploads-ssl.webflow.com/62c775d5eaf466697c0aa66b/62c775d6eaf46683320aa6fa_GloriaHallelujah-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@keyframes float {
    0% {
        transform: translatey(0)
    }

    50% {
        transform: translatey(-20px)
    }

    100% {
        transform: translatey(0)
    }
}

.products-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    outline: 0;
    border: none;
    box-shadow: none
}

a.navbar-brand {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
    line-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all .5s
}

a.navbar-brand:hover {
    color: #fff
}

a.navbar-brand span {
    color: #4ade80
}

.section-title {
    text-align: center;
    margin-bottom: 25px
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-block: 40px
}


.footer-link h4 {
    background: #0f0f0f;
    color: #fff;
    padding: 1px 10px;
    border-radius: 50px;
    font-size: 14px;
    width: fit-content
}

.footer-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.footer-link ul li {
    margin-bottom: 10px
}

.footer-link ul li a {
    color: #c4c4c4;
    text-decoration: none;
    font-size: 14px
}

.footer-link ul li a:hover {
    color: #4ade80
}

.footer-logo p {
    max-width: 400px;
    color: #c4c4c4;
    margin-block: 8px
}

@media screen and (max-width:991px) {
    .footer-wrapper {
        flex-wrap: wrap
    }

    .footer-links {
        flex-direction: column;
        justify-content: center;
        width: 100%
    }
}

@-webkit-keyframes bg-move {
    0% {
        background-position: -500px 0
    }

    100% {
        background-position: 1000px 0
    }
}

@keyframes bg-move {
    0% {
        background-position: -500px 0
    }

    100% {
        background-position: 1000px 0
    }
}

.review-card {
    background: #232323;
    width: 100%;
    padding: 25px;
    border-radius: 15px
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3%
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px
}

.contact-section {
    padding: 100px 0
}

.product_cards_wrap {
    box-sizing: border-box;
    border-radius: 8px;
    padding: 10px;
    background: #232323;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}

.product_cards_wrap .product_card_img {
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    border-radius: 8px
}


.product_card_txt h4 {
    font-style: normal;
    font-size: 18px;
    color: #fff;
    margin: 0px;
    font-weight: 500;
}

.price {
    color: #999;
    font-weight: 700
}

.product_card_btns button {
    border-radius: 8px;
    box-sizing: border-box;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    padding: 5px 20px;
    transition: all linear .2s;
    display: inline-block;
    text-align: center;
    width: 100%;
    background-image: linear-gradient(120deg, #4ade80 0, #4ade80 100%);
    -webkit-transition: all .5s;
    box-shadow: none;
    cursor: pointer;
    border: none !important;
    text-decoration: none
}

.bullet-info {
    width: fit-content;
    position: relative;
    height: 3.5em;
    border: 3px ridge #4ade80;
    outline: 0;
    background-color: transparent;
    color: #efbdfe;
    transition: 1s;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px
}

@keyframes boxShadow {
    0% {
        box-shadow: none
    }

    50% {
        box-shadow: inset 0 0 25px #4ade80
    }

    100% {
        box-shadow: none
    }
}

.bullet-info {
    animation: boxShadow 3s infinite;
    animation-delay: 0s, 2s
}

.bullet-info .cover-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column
}

.bullet-info .cover-1 {
    width: 90%;
    height: 3px;
    background-color: #2d1436;
    margin-top: -3px
}

.bullet-info .cover-2 {
    width: 90%;
    height: 3px;
    background-color: #2d1436;
    margin-bottom: -3px
}

@keyframes scaleDown {
    0% {
        width: 100%
    }

    50% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

.bullet-info .cover-1,
.bullet-info .cover-2 {
    animation: scaleDown 3s infinite;
    animation-delay: 0s, 2s
}

.top-left-glow-item {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -3;
    width: 598.16px;
    height: 473.02px;
    top: -174px;
    left: 82px;
    filter: blur(200px);
    position: fixed;
    opacity: .5;
    animation: glow 7s infinite;
    animation-delay: 0s, 5s
}

.glow-item {
    width: 380.29px;
    height: 446.33px;
    background: linear-gradient(261.63deg, #4ade80 4.87%, #4b9e69 87.02%);
    border-radius: 50%
}

@keyframes glow {
    0% {
        width: 598.16px;
        height: 473.02px
    }

    50% {
        width: 700px;
        height: 600px
    }

    100% {
        width: 598.16px;
        height: 473.02px
    }
}

.slider {
    width: 100%;
    margin: auto;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.slide-track {
    display: flex;
    width: calc(25rem * 13 * 2);
    animation: scroll 39s linear infinite
}

.slide-track:hover {
    animation-play-state: paused
}

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

    100% {
        transform: translateX(calc(25rem * 13 * -1))
    }
}

.slide {
    width: 25rem;
    display: flex;
    align-items: center;
    padding: 1.5rem
}

.slide-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 25rem;
    padding: 20px;
    border-radius: 16px;
    transition: .3s;
    backdrop-filter: blur(15px);
    background-color: #2323237d;
    height: 100%;
    border: 1px solid #6b4f7b36;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
}

.slide-card:hover {
    transform: scale(1.03);
    border: 1px solid #4ade80;
    box-shadow: 0 0 10px #4ade80
}

.slide-card .top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.slide-card .top .stars img {
    width: 20px;
    height: 20px;
    overflow: hidden;
    display: block;
    margin-bottom: 10px
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #4ade80;
}

.slide-card .date p {
    color: #fff;
    font-weight: 500;
    font-size: 1.6rem
}

.slide-card .review p {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left
}

.slide-card .verified {
    display: flex;
    flex-direction: row
}

.slide-card .verified p {
    color: #4b9e69;
    font-weight: 700;
    font-size: 12px;
    margin: 0
}

.stars i {
    margin: 0px;
}

.contact-card {
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    transition: .3s;
    backdrop-filter: blur(15px);
    background-color: #2323237d;
    height: 100%;
    border: 1px solid #6b4f7b36;
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;

}




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

.contact-card h3 {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    padding-bottom: 30px;
}

.footer h4 {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin: 0
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    max-width: 215px;
    min-width: 210px;
}


.footer-links a {
    color: #4ade80;
    text-decoration: none;
    transition: all .3s ease-in-out;
    margin-bottom: 10px;
    padding: 1px 5px;
    border-radius: 5px;
    background: #160b1e;
    margin-inline: 4px;
    width: fit-content;
}

.footer-links a:hover {
    filter: brightness(1.3)
}

.hero-image-wrapper video {
    width: 100%
}

@media (max-width:991px) {
    a.navbar-brand {
        width: 50%;
        margin-right: 0
    }

    .navbar-toggler {
        width: 50%;
        text-align: right
    }

    .nav-contents {
        flex-wrap: wrap
    }

    .buttons,
    a.nav-link {
        text-align: center
    }

    .contact-card::after {
        background-position: right top !important
    }

    .footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px
    }
}





.animation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    opacity: 0.3;
}

.nav-sq-logo {
    width: 40px !important;
    height: 38px !important;
    background-image: linear-gradient(180deg, #4ade80, #4ade80);
    box-shadow: rgb(28 2 2 / 80%) 0px 4px 10px 4px, rgb(251 206 206 / 16%) 0px 0px 0px 4px, rgb(251 234 234 / 30%) 0px -4px 12px 0px inset;
    border: none !important;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #6b4f7b36;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
    height: 100%;
    transition: scale .3s ease-in-out, border .3s ease-in-out, box-shadow .3s ease-in-out !important;
}

.feature-card:hover {
    scale: 1.03;
    border: 1px solid #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.feature-icon {
    font-size: 40px;
    color: #4ade80;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 16px;
    color: #c9c9c9;
    line-height: 1.8;
}




.product-card {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #6b4f7b36;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #1a202633;
    transition: all .3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.product-card:hover {
    transform: scale(1.03);
    border: 1px solid #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.product-card-header {
    display: flex;
    justify-content: space-between;
}

.product-card-header-left-text p {
    font-size: 16px;
    color: #a8a8a8;
    text-transform: uppercase;
}

.product-card-header-right-text p {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
}

.product-card-header-right-text p i {
    color: #a8a8a8;
}

.product-features-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
}

.product-features-item-left img {
    width: 32px;
    height: 32px;
}

.product-card-footer .main-button {
    width: 100%;
    margin-top: 0px;
    padding-block: 5px;
}

.product-features-item-left::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    left: 3px;
    top: 3px;
    position: absolute;
    box-shadow: 0 0 13px 0 #4b9e69, 0 0 3px 0 #4b9e69, 0 0 13px 0 #4b9e69;
    z-index: -4;
}



.pre-title {
    background-color: #cbcbe80a;
    border: 1px solid #cbcbe80f;
    backdrop-filter: blur(16px);
    color: #fff;
    border-radius: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 12px;
    gap: 10px;
    padding: 3px 4px;
}

.pre-title span {
    background-color: #cbcbe80a;
    border: 1px solid #cbcbe80f;
    backdrop-filter: blur(16px);
    color: #fff;
    border-radius: 33px;
    padding: 2px 8px;
}

.pre-title i {
    background-color: #cbcbe80a;
    border: 1px solid #cbcbe80f;
    backdrop-filter: blur(16px);
    color: #fff;
    border-radius: 33px;
    width: 23px;
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pre-title p {
    margin: 0;
}

.site-alert {
    background: #4ade80;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.spread-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 40px;
    flex-wrap: wrap;
}

.spread-footer small {
    color: #c9c9c9;
    font-size: 12px;
}

.spread-footer a {
    color: #c9c9c9;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.spread-footer a:hover {
    color: #4ade80;
}

.spread-footer h6 {
    max-width: 650px;
    font-size: 14px;
    font-weight: 400;
    color: #c9c9c9;
    line-height: 1.8;
}

.spread-footer p {
    font-size: 12px;
    font-weight: 400;
    color: #c9c9c98f;
    line-height: 1.8;
    max-width: 600px;
}

.thank-you-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 99;
}


.thank-you-section .thanks-card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    z-index: 1;
    background-color: #0e0715;
    box-shadow: 0 4px 10px 4px rgb(0 0 0 / 10%);
    max-width: 550px;
    margin-bottom: 30px;
}

.thanks-card-content {
    text-align: center;
}

.thank-you-section h1 {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.thank-you-section p {
    color: #b3b3b3;
    text-align: center;
    font-weight: 300;
}

.thank-you-section span,
.thank-you-section a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.thank-you-section a:hover {
    color: #4ade80;
}

a.gmail-button {
    background: #fff;
    color: #000;
    padding: 6px 16px;
    border-radius: 84px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease-in-out;
    border: 1px solid #fff;
    font-size: 14px;
}

.gmail-button img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

a.gmail-button:hover {
    background: #4b9e6900;
    color: #fff;
    border: 1px solid #fff;
}


.thank-you-section .tag {
    background: #291e2d;
    padding: 8px 12px;
    border-radius: 5px;
    color: #ffffff;
    width: fit-content;
    margin: auto;
}

.thank-you-section .contacts a {
    padding: 6px 16px;
    border-radius: 84px;
    font-size: 14px;
}

.thank-you-section .contacts a:hover {
    color: #fff;
}

.thank-you-section .contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.discord-button {
    background: #5865f2;
    color: #fff;
    padding: 6px 16px;
    border-radius: 84px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease-in-out;
    border: 1px solid #5865f2;
    font-size: 14px;
}

.discord-button:hover {
    background: #5865f2c2;
    color: #fff;
    border: 1px solid #5865f2;
}

.telegram-button {
    background: #0088cc;
    color: #fff;
    padding: 6px 16px;
    border-radius: 84px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease-in-out;
    border: 1px solid #0088cc;
    font-size: 14px;
}

.telegram-button:hover {
    background: #0088ccc2;
    color: #fff;
    border: 1px solid #0088cc;
}

.w-fit {
    width: fit-content;
}

.thank-you-section a.back-to-home {
    color: #c9c9c9;
    text-decoration: none;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 91;
}

.thank-you-section a.back-to-home:hover {
    color: #4ade80;
}

.mt-45 {
    margin-top: 2rem !important;
}


.mb-45 {
    margin-bottom: 2rem !important;
}


section.top-slider {
    padding-top: 0px;
    padding-bottom: 80px;
}


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.slide-products {
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
    position: relative;
}

.slide-products:before,
.slide-products:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.slide-products-slide {
    display: inline-block;
    animation: 120s slide infinite linear;
}

.slide-products-slide p {
    display: inline-block;
    padding: 0 20px;
    font-size: 20px;
    color: #fff;

}

.slide-products-slide .nitro-img {
    width: 60px;
    height: 60px;
    margin-right: 18px;
    filter: brightness(99.5);
}

.slide-products-slide .boost-img {
    width: 35px;
    height: 35px;
    margin-right: 18px;
    transform: translate(0, -5px);
    filter: brightness(99.5);
}

section.tos {
    padding: 100px 0;
    color: #c9c9c9;
}


.product-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}