:root {
    --primary-color: #006be0;
    --secondary-color: #111112;
    --tertiary-color: #0e0e0e;
    --text-color: #FFFFFF;
    --text-color-d: #4f4f4f;
}

* {
    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-color: #0e0e0e;
    background-image: radial-gradient(circle at 5% 20%, #007fff0d, transparent 30%), radial-gradient(circle at 50% 40%, #006be00a, transparent 50%), radial-gradient(circle at 100% 90%, #0019341a, transparent 30%);
    background-attachment: fixed;
    color: #ffffff;
}

body:before, .container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://pub-cdn.plox.host/hotlink-ok/images/noise_filter.png);
    background-size: 600px;
    opacity: 0.4;
    pointer-events: none;
}

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
}

p {
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
}

nav,header,.section-main,footer {
    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: 1550px;
    position: relative;
    padding-right: 40px;
    margin-right: auto;
    z-index: 1;
}

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

.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);
}

/* 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 */
.fit {
    width: fit-content;
    height: fit-content;
}

nav {
    z-index: 69;
    position: absolute;
    top: 40px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 100px;
    border-radius: 6px;
    border: 1px solid #052f69;
    backdrop-filter: blur(20px)!important;
    !i;!; }

.navbar-side {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    height: 100%;
}

.site-logo img {
    object-fit: cover;
    height: 100%;
}

.site-logo {
    height: 40px;
    margin-right: 10px;
}

.header-container .flex-row {
    padding: 10px 0;
}

.navbar-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    opacity: 0.8;
    cursor: pointer;
}

.navbar-link:hover {
    opacity: 1;
}

.navbar-icon {
    height: 35px;
    width: 35px;
    background: #ffffff2b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

header {
    padding-top: calc(100px + 40px);
    background: url(https://cdn.glitch.global/ad0d12c9-2255-44fa-983c-22b3911b95c2/5c3e33b1-f8ec-4ff7-8505-cf7a56edfbdd.image.png?v=1727418718357) no-repeat;
    background-size: cover;
    height: 100vh;
    background-position: center;
}

.header-in, .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-container {
    margin: auto;
    grid-gap: 20px;
    max-width: 1000px;
    text-align: center;
}

.header-icons {
    display: flex;
    align-items: center;
    grid-gap: 70px;
    height: 44px;
    margin-bottom: 30px;
    padding: 20px 30px;
    box-sizing: content-box;
    border-radius: 6px;
    background: #00000045;
    border: 1px solid #052f69;
    backdrop-filter: blur(4px);
}

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

.header-icons img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
    cursor: pointer;
}

.header-container h1 {
    font-size: 65px;
    font-weight: 600;
}

.header-container p {
    max-width: 75%;
}

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

.scroll-mouse, .site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 120ms ease 0s;
}

.scroll-mouse img {
    width: 40px;
}

.scroll-mouse:hover {
    transform: scale(1.1);
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    padding: 14px 24px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: montserrat, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: 120ms ease 0s;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    transform: translateX(5px);
}

.btn-secondary, .navbar-container {
    background: #00000045;
    backdrop-filter: blur(4px);
}

.flex-row.x .btn-primary:hover {
    transform: translateY(-5px);
}

.header-container .btn-primary:hover, .header-container .btn-secondary:hover {
    transform: scale(1.05);
}

#featured {
    background: #101622;
    padding: 120px 0;
    overflow: hidden;
}

.slide-row {
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-gap: 40px;
}

.slide-in {
    display: flex;
    align-items: center;
    grid-gap: 40px;
}

.featured-post {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #061d3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post img {
    height: 210px;
    width: 380px;
    object-fit: cover;
    transition: 120ms ease 0s;
}

.featured-post:hover img {
    transform: scale(1.1);
}

#features, #key, #reach, #faq, #projects {
    margin: 120px 0;
}

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

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

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

.block {
    padding: 40px;
    background: #111112;
    !;!importan;!importa;!import;!impor;!impo;!imp;!im;!i;!; border: 1px solid #1C1B1D;
    border-radius: 6px;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    background: radial-gradient(230px circle at var(--x) var(--y), rgb(14 28 42) 0%, #111112 100%);
    --x: -1000px;
    --y: -1000px;
}

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

.feature-card.rb {
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.feature-img {
    width: 100%;
    height: 232px;
    margin-bottom: 40px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.flex-row.x {
    flex-direction: column;
    grid-gap: 15px;
    margin-top: 5px;
}

.flex-row.x a {
    width: 100%;
}

.btn-secondary.x {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

.title-set.x {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-gap: 20px;
    margin-bottom: 80px;
}



.sliding-feature {
    display: flex;
    flex-direction: column;
    position: relative;
    grid-gap: 100px;
}

.features-container {
    position: sticky;
    top: 180px;
    will-change: transform;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
    transform-style: preserve-3d;
}

.features-body {
    display: grid;
    grid-template-columns: repeat(18, minmax(0, 1fr));
    padding: 60px;
}

.feature-body-l {
    grid-column: span 8;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.feature-body-r {
    grid-column-start: 11;
    grid-column-end: 19;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-body-r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.review-stars {
    color: gold;
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 12px;
}

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

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

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

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

.subtitle.x {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: #ffffff;
    border: 1px solid var(--primary-color);
    background: #006be04f;
    padding: 5px 10px;
    border-radius: 5px;
}

.feature-body-l h3 {
    font-size: 29px;
    font-weight: 600;
}

.feature-body-l a {
    width: fit-content;
    margin-top: auto;
}

.title-set.l {
    text-align: left;
    align-items: center;
}

@media screen and (max-width: 768px) {
  .title-set.l {
    flex-direction: column-reverse;
  }
}


.title-set.l h2 {
    max-width: 690px;
}

.title-set .btn-secondary.x, .btn-secondary.x.y {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    width: fit-content;
}

.title-set.l p {
    width: 100%;
}

.title-set.l .title-set-l {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
    height: 100%;
}

.title-set-r {
    height: 100%;
    display: flex;
    width: 100%;
    max-width: 40%;
}

.title-set-r img {
    border-radius: 6px;
    object-fit: cover;
    display: flex;
    height: 100%;
    width: 100%;
}

.footer-body {
    background: url(https://cdn.glitch.global/ad0d12c9-2255-44fa-983c-22b3911b95c2/5c3e33b1-f8ec-4ff7-8505-cf7a56edfbdd.image.png?v=1727418718357) no-repeat;
    background-size: cover;
    padding: 40px;
    border-radius: 8px;
}

.footer-body-t {
    display: flex;
    grid-gap: 60px;
}

.footer-main, .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-main {
    max-width: 400px;
    grid-gap: 20px;
}

.footer-links {
    grid-gap: 8px;
}

.footer-links h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-links-holder {
    display: flex;
    align-items: center;
    grid-gap: 13px;
    flex-wrap: wrap;
}

.footer-links-holder .footer-link {
    width: fit-content;
    padding: 6px 20px;
    background: #00000036;
    border: 1px solid #052f69;
    border-radius: 4px;
    flex-grow: 1;
}

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

hr {
    border: 0;
    height: 1px;
    background: #113b75;
    margin: 20px 0;
}

.footer-row, .footer-body-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.footer-icon {
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.footer-icon:hover {
    transform: translate(-2px, -3px);
    background: #104e93;
}

.footer-r .footer-link {
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
    margin-bottom: -5px;
}

.footer-r .footer-link:hover {
    border-color: var(--primary-color);
}

.footer-body-b {
    padding: 20px 0;
}

.cpr {
    font-weight: 500;
    text-transform: uppercase;
}

.footer-links-holder .footer-link:hover {
    background: #00000054;
}

.grid-gap-100 {
    grid-gap: 100px;
}

section.half-cut {
    margin-top: 0!important;
}

.half-cut .section-in > div {
    margin-top: -120px;
}

header.side .header-in {
    padding-top: 80px;
    padding-bottom: 80px;
}

header.side {
    height: auto;
}

header.half-cut {
    padding-bottom: 120px;
}

header.side .header-container {
    margin-left: 0;
    text-align: left;
    align-items: flex-start;
}

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

/* faq */
.faq-title {
    display: flex;
    align-items: center;
    font-weight: 500;
    width: 100%;
    user-select: none;
}

.faq-title i {
    color: #ffffff;
    display: flex;
    font-size: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #0000002e;
    border-radius: 5px;
    border: 1px solid #142b42;
    transition: 120ms ease 0s;
    margin-right: 20px;
}

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

.faq-body.active .faq-title i {
    transform: scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-body {
    transition: 100ms ease 0s;
    padding: 25px;
    cursor: pointer;
    border-radius: 6px;
    background: #111112;
    border: 1px solid #1C1B1D;
}

.faq-body:hover {
    border: solid 1px #ffffff26;
}

.faq-body.active {
    background: #9b9b9b0d;
    border: solid 1px var(--primary-color);
}

.faq-inf {
    padding-top: 20px;
    padding-left: 25px;
    margin-top: 20px;
    padding-right: 25px;
    margin-left: -25px;
    margin-right: -25px;
    color: #dadada;
    display: none;
    transition: 150ms ease 0s;
    border-top: 1px solid #333333;
}

/* faq */
.faq-footer {
    margin-top: 45px;
}

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

.faq-holder.view-more {
    max-height: 460px;
    overflow: hidden;
    position: relative;
}

.faq-holder.view-more:before {
    content: "";
    background: linear-gradient(0deg, #0e0e0e, #0e0e0e00);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
}

.view-more.active {
    max-height: unset;
    overflow: visible;
    .faq-holder.view-more: before; }

.view-more.active:before {
    display: none;
}

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

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.form-group label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.input-area {
    font-family: montserrat, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    border: 1px solid #252525;
    background: #1c1c1c;
    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: #101112;
    border: 1px solid #006be059;
}

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

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

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

form .btn-primary:hover {
    transform: translateY(5px);
}

.icon-input {
    position: relative;
}

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

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

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

.icon-small {
    background: var(--primary-color);
    width: 25px;
    height: 25px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 6px;
}

.features.stats .feature-card h3 {
    font-size: 36px;
    font-weight: 700;
}

.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);
}

.features-body.no-padding {
    padding: 0;
}

.services-list .feature-card h3 i {
    background: var(--primary-color);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
}

.services-list .feature-img {
    margin-bottom: 30px;
}

/* grid blocks */
.grid-card {
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
}

.grid-image {
    width: 100%;
    height: 213px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #1c1b1d;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 230ms ease 0s;
}

.grid-body {
    position: relative;
}

.grid-body h4 {
    font-size: 22px;
    margin: 5px 0;
}

.grid-card:hover .grid-image img {
    transform: scale(1.1);
}

.grid-body-sub {
    color: var(--primary-color);
    display: inline-flex;
    grid-gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    align-items: center;
}

.mobile-only {
    margin: 0;
    padding: 0;
    display: none;
}

.mobile-nav-btn {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    transition: .4s cubic-bezier(.65, .05, 0, 1);
    flex-direction: column;
    grid-gap: 11px;
}

.mobile-nav-btn span {
    width: 100%;
    height: 3px;
    background: #fff;
    transform-origin: center;
}

.mobile-nav-open .mobile-nav-btn {
    transform: rotate(90deg);
    width: 30px;
}

.mobile-menu {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 8;
    overflow: auto;
    visibility: hidden;
}

.mobile-menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.mobile-nav-open .mobile-menu {
    visibility: visible;
}

.m-bg-panel {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translateX(-100%);
}

.m-bg-panel.a {
    z-index: 1;
    background: #4e9bef;
    transition: .2s cubic-bezier(.65, .05, 0, 1);
}

.m-bg-panel.b {
    z-index: 2;
    background: var(--primary-color);
    transition: .6s cubic-bezier(.65, .05, 0, 1);
}

.m-bg-panel.c {
    z-index: 3;
    background: #070e1e;
    transition: 0.8s cubic-bezier(.65, .05, 0, 1);
}

.mobile-menu-body {
    transform: translateX(-100%);
    transition: 0.8s cubic-bezier(.65, .05, 0, 1);
    padding-top: 80px;
    z-index: 10;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.mobile-nav-open .mobile-menu .m-bg-panel {
    transform: translateX(0px);
}

.mobile-nav-open .mobile-menu .mobile-menu-body {
    transform: translateX(0%);
}

.mobile-menu-in {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: "Oswald", serif;
}

.mobile-menu-item .mobile-menu-link {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 47px;
    line-height: 47px;
    padding: 12px 30px;
    width: 100%;
    transform: translateY(70px) rotate(5deg);
    transition: transform .7s cubic-bezier(.65, .05, 0, 1) 0ms;
    display: flex;
    align-items: center;
}

.mobile-menu.ready .mobile-menu-link {
    transform: translateY(0px) rotate(0deg);
}

.mobile-menu-item:nth-child(2) .mobile-menu-link {
    transition-delay: 50ms;
}

.mobile-menu-item:nth-child(3) .mobile-menu-link {
    transition-delay: 100ms;
}

.mobile-menu-item:nth-child(4) .mobile-menu-link {
    transition-delay: 150ms;
}

.mobile-menu-item:nth-child(5) .mobile-menu-link {
    transition-delay: 200ms;
}

.mobile-menu-item:nth-child(6) .mobile-menu-link {
    transition-delay: 250ms;
}

.mobile-menu-item:nth-child(7) .mobile-menu-link {
    transition-delay: 300ms;
}

.mobile-menu-item:nth-child(8) .mobile-menu-link {
    transition-delay: 350ms;
}

.mobile-menu-item:nth-child(9) .mobile-menu-link {
    transition-delay: 400ms;
}

.mobile-menu-item:nth-child(10) .mobile-menu-link {
    transition-delay: 450ms;
}

.mobile-menu-link .markdown {
    font-size: 14px;
    line-height: normal;
    font-family: montserrat, sans-serif !important;
    margin-left: 10px;
    margin-bottom: auto;
    margin-top: 3px;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-item.active .mobile-menu-link {
    background: #ffffff17;
    transition: none;
}

.mobile-menu-social {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: auto;
    padding-bottom: 60px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 28px;
}

.mobile-menu-social > p {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.mobile-menu-social .navbar-link {
    font-size: 16px;
    text-transform: math-auto;
    padding: 4px 0;
}

.xn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    margin-bottom: 5px;
}

.xn-list li > i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

.xn-list li {
    font-size: 15px;
}

.dropdown {
    position: relative;
}

.dropdown.active .btn-primary {
    background: transparent;
    transform: none!important;
}

.dropdown.active > a > i {
    transform: rotateX(180deg);
}

.user-nav {
    align-items: center;
    grid-gap: 15px;
    flex-direction: row!important;
    padding: 15px!important;
}

.user-nav img {
    border-radius: 5px;
    height: 45px;
}

.user-nav-r {
    display: flex;
    flex-direction: column;
}

.user-nav-r p {
    line-height: normal;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 2px;
}

.user-nav-r span {
    font-size: 13px;
    font-weight: 500;
    color: #c8c8c8;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.dropdown-in:last-child {
    border-bottom: 0;
}

.dropdown-in .navbar-link {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-in .navbar-link:hover {
    background: #383838;
}

.dropdown-in .navbar-link[href="/session/logout"] {
    color: #F44336;
}

.dropdown-body {
    border-radius: 6px;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: var(--tertiary-color);
    display: flex;
    flex-direction: column;
    border: 1px solid #303030;
    transition: 150ms ease 0s;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
}

.dropdown-in {
    border-bottom: 1px solid #303030;
    display: flex;
    flex-direction: column;
    padding: 9px;
}

.dropdown-body.active {
    visibility: visible;
    transform: translateY(0px);
    opacity: 1;
}

.mobile-menu-item.dropdown .dropdown-body {
    display: none;
    position: relative;
    top: 0;
    transition: none;
    width: 100%;
    padding: 0;
    border: 0;
    background: #262d3d;
    border-radius: 0;
}

.mobile-menu-item.dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item.active.dropdown .dropdown-body {
    display: block;
}

.mobile-menu-item.dropdown .dropdown-body .dropdown-in {
    padding: 0!important;
}

.mobile-menu-item.dropdown .dropdown-body .dropdown-in .navbar-link {
    padding: 16px 30px;
    border-bottom: 1px solid #ffffff30;
    border-radius: 0;
}

.mobile-menu-item .dropdown-in .navbar-link:hover {
    background: #0b162f;
}

.mobile-menu-item.dropdown .dropdown-body .dropdown-in .navbar-link:last-child {
    border-bottom: 0;
}

.mobile-menu-item.dropdown .mobile-menu-link > i {
    font-size: 15px;
    margin-left: auto;
}

.mobile-menu-item.dropdown.active .mobile-menu-link > i {
    transform: translateX(180deg);
}


/* SWAL */
.swal-button {
    width: 100%;
    background: var(--primary-color);
    !;
    outline: 0!important;
    box-shadow: none!important;
    transition: 150ms ease 0s;
    color: #ffffff;
    font-family: montserrat, sans-serif !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.swal-icon--error {
    border: 2px solid red!important
}

.swal-icon--error__line {
    background-color: #f44!important
}

.swal-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.swal-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900
}

.swal-footer, .swal-title, .swal-content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px
}

.swal-text {
    color: #fff;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    line-height: 26px;
}

.swal-modal {
    background: #121214;
    border: 1px solid #ffffff17
}

.swal-overlay {
    backdrop-filter: blur(2px);
    background-color: rgb(45 45 45/12%)
}

.swal-icon--success:after,.swal-icon--success:before,.swal-icon--success__hide-corners {
    background: #121214
}

.swal-icon {
    border-color: transparent
}

.swal-icon--warning__body, .swal-icon--warning__dot {
    background-color: var(--primary-color);
}

.swal-icon--warning {
    border-color: var(--primary-color)!important;
}

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

.swal-button.swal-button--cancel {
    background: #5f5f5f !important;
}

.swal-button.swal-button--cancel:hover {
    background: #696969 !important;
}

.swal-content__input {
    background: #222227;
    border: 1px dashed #48484f;
    border-radius: 5px;
    font-family: montserrat, sans-serif !important;
    font-size: 15px;
    color: #ffffff;
    padding: 15px;
}

.swal-icon--info {
    border-color: var(--primary-color)!important;!i;!;
}

/* SWAL */

@supports (-webkit-touch-callout: none) {
    .mobile-menu-social {
        padding-bottom: 100px;
    }
}

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

    .desktop-only {
        display: none;
    }

    .site-logo {
        height: 28px;
    }

    .navbar-in, .header-in, .section-in, .footer-in {
        padding-left: 30px;
        padding-right: 30px;
    }

    nav {
        position: absolute;
        top: 0;
        height: 80px;
    }

    .navbar-container {
        border: none;
        backdrop-filter: none!important;
        background: none;
        padding: 0;
        height: 100%;
    }

    nav .navbar-link, .navbar-side.r {
        display: none;
    }

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

    .header-container {
        text-align: left;
        margin: 40px 0;
        align-items: normal;
    }

    .header-container p {
        max-width: 100%;
    }

    header {
        padding-top: 80px;
        height: auto;
    }

    .scroll-mouse {
        display: none;
    }

    .flex-row {
        width: 100%;
        flex-direction: column;
        padding-bottom: 0;
        grid-gap: 30px;
    }

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

    .header-icons {
        flex-wrap: wrap;
        align-items: center;
        height: auto;
        grid-gap: 30px;
        justify-content: space-around;
    }

    .header-icons img {
        height: 39px;
    }

    #featured {
        display: none;
    }

    .title-set {
        flex-direction: column;
        grid-gap: 30px;
    }

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

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

    .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9 {
        display: flex;
        flex-direction: column;
    }

    .feature-img {
        height: 148px;
    }

    .block {
        padding: 30px;
    }

    .features-body {
        display: flex;
        grid-gap: 30px;
        flex-direction: column-reverse;
    }

    .title-set.x {
        text-align: left;
        align-items: flex-start;
    }

    .features-container {
        position: relative;
        top: 0;
        transition: none;
    }

    .sliding-feature {
        grid-gap: 60px;
    }

    .title-set-r img {
        width: 100%;
    }

    .title-set-r {
        max-width: 100%;
    }

    .footer-body-t {
        flex-direction: column;
    }

    .footer-links-holder .footer-link {
        padding: 8px 20px;
    }

    .footer-row, .footer-body-b {
        flex-direction: column;
        grid-gap: 20px;
    }

    .footer-l, .footer-r {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .footer-body {
        padding: 30px;
    }

    header.side .header-in {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .icons-list {
        flex-wrap: wrap;
        justify-content: space-around;
    }
}


@media screen and (max-width: 768px) {
  .features-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Change this number to however many lines you want to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  p.cpr {
    text-align: center;
}
}

.title-set.x p {
    width: 100%;
}

.title-set.x h2 {
    width: 100%;
    max-width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background-color: black;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  background-color: black;
}


.sliding-feature .owl-stage-outer {
    overflow: hidden;
}

