
/*--------- Abstracts variable ---------- */

:root {
    /*-- Core Color --*/
    --white: #ffffff;
    --white-8: rgba(255, 255, 255, 0.08);
    --white-40: rgba(255, 255, 255, 0.40);
    --white-56: rgba(255, 255, 255, 0.56);
    --white-72: rgba(255, 255, 255, 0.72);
    --white-92: rgba(255, 255, 255, 0.92);
    --black: #000000;
    --black-6: rgba(0, 0, 0, 0.06);
    --black-15: rgba(0, 0, 0, 0.15);
    --black-40: rgba(0, 0, 0, 0.40);
    --black-50: rgba(0, 0, 0, 0.50);
    --black-56: rgba(0, 0, 0, 0.56);
    --black-72: rgba(0, 0, 0, 0.72);
    /*-- Project Color --*/
    --primary: #00DE51;
    --surface: #F5F5F5;
    --bg: #EBEBEB;
    --bg-2: #EAEAEA;
    --bg-3: #0F0F0F;
    --shadow: 0px 0px 0px 1px #0000000F, 0px 0.5px 0.5px 0px #00000008, 0px 1px 1px -0.5px #00000008, 0px 3px 3px -1.5px #00000008, 0px 5px 5px -2.5px #00000008, 0px 8px 8px -4px #00000008;
    --shadow-2: 0px 0.5px 0.5px 0px #00000008, 0px 1px 1px -0.5px #00000008, 0px 3px 3px -1.5px #00000008, 0px 5px 5px -2.5px #00000008, 0px 8px 8px -4px #00000008;
    --shadow-3: 0px 0px 0px 1px #0000008F, 0px 0.5px 0.5px 0px #00000008, 0px 1px 1px -0.5px #00000008, 0px 3px 3px -1.5px #00000008, 0px 0.5px 0.5px 0px #FFFFFF1F inset, 0px 1px 2px 0px #FFFFFF0A inset, 0px 12px 12px -3px #0000000F, 0px 12px 32px -3px #0000001F;
    --shadow-4: 0px 0px 0px 2px #0000000F, 0px 2.09px 2.09px 0px #0000000F, 0px 4.18px 4.18px -2.09px #0000000F, 0px 12.53px 12.53px -6.26px #0000000F, 0px 20.88px 20.88px -10.44px #0000000F, 0px 33.4px 33.4px -16.7px #0000000F;
    --shadow-5: 0px 0.5px 0.5px 0px #0000000F, 0px 1px 1px -0.5px #0000000F, 0px 3px 3px -1.5px #0000000F, 0px 5px 5px -2.5px #0000001F, 0px 0.5px 0.5px 0px #FFFFFF14 inset, 0px 1px 3px 0px #FFFFFF08 inset, 0px -4px 12px 0px #FFFFFF0A inset;
    /* Custom */
    --shadow-1: #A3A3A340;
    --verified: #00BF43;
    --success: #3DAB25;
    --error: #F44336;
}

/*------------ Core CSS ---------------- */


/*--------- Abstracts variable ---------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* Elements
-------------------------------------------------------------- */

html {
    margin-right: 0 !important;
    scroll-behavior: smooth;
}

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

body {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: var(--black);
    background-color: var(--surface);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "zero";
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    cursor: grab;
    background-color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

ul,
li {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

table {
    width: 100%;
    overflow-x: auto;
    table-layout: auto;
    border-collapse: collapse;
}

td,
th {
    padding: 12px 16px;
}

@media (min-width: 1200px) {
    td,
    th {
        padding: 16px 24px;
    }
}

svg path {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button {
    background: transparent;
    border: 0;
    display: inline-flex;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

select,
option {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

/* Since FF19 lowers the opacity of the placeholder by default */

:-ms-input-placeholder {
    color: var(--secondary-2);
}

b,
strong {
    font-weight: bolder;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-family: "Inter";
    color: var(--text);
}

a:focus,
a:hover {
    outline: 0;
}

p {
    display: block;
}

/*-- Orther Reset --*/

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

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

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

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

[data-grid=grid-1] {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

[data-grid=grid-2] {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

[data-grid=grid-3] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

[data-grid=grid-4] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

[data-grid=grid-5] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, 1fr);
}

[data-grid=grid-6] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(6, 1fr);
}

[data-grid=grid-7] {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(7, 1fr);
}

.grid-template-columns-2 {
    grid-template-columns: 1fr 1fr;
}

.tf-row-flex {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 30px;
}

.overflow-unset {
    overflow: unset !important;
}

.sticky-top {
    position: sticky !important;
    z-index: 50;
    top: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#scroll-top {
    position: fixed;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 50px;
    border-radius: 4px;
    z-index: 1;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    overflow: hidden;
    z-index: 100;
    background-color: var(--main);
    border: 0;
    bottom: 92px;
    right: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-top.type-1 {
    bottom: 140px;
}

#scroll-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
}

.preload-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--surface);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999999999;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.br-line {
    width: 100%;
    height: 1px;
    display: flex;
    background-color: var(--white-8);
}

.br-line.type-vertical {
    width: 1px;
    height: 16px;
}

.br-dot {
    display: inline-flex;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0px 0px 2px 1px rgba(var(--primary-rgb), 0.2), 0px 0px 6px 4px rgba(var(--primary-rgb), 0.2);
}

.line {
    border: 1px solid var(--white-16);
}

.initial-child-container {
    flex: 0 0 auto;
    display: flex;
    min-width: auto;
    flex-direction: row;
    align-items: center;
}

.marquee-wrapper {
    display: flex;
    animation: infiniteScroll 7s linear infinite;
    align-items: center;
    transition: animation-duration 300ms;
}

.tf-swiper .swiper-slide {
    height: auto;
}

.tf-swiper .swiper-slide>* {
    height: 100%;
}



/*--------- Abstracts variable ---------- */

/* Typography
============================================================== */

/* Heading */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Apfel Grotezk";
    text-rendering: optimizeLegibility;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    text-rendering: optimizeLegibility;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0;
}

h1,
.h1 {
    font-size: clamp(40px, 5vw + 8px, 60px);
    line-height: clamp(46px, 5.5vw + 10px, 64px);
}

h2,
.h2 {
    font-size: clamp(34px, 4.5vw + 6px, 52px);
    line-height: clamp(40px, 5vw + 8px, 56px);
}

h3,
.h3 {
    font-size: clamp(30px, 4vw + 5px, 44px);
    line-height: clamp(36px, 4.5vw + 6px, 48px);
}

h4,
.h4 {
    font-size: clamp(24px, 3vw + 4px, 40px);
    line-height: clamp(28px, 3.5vw + 5px, 44px);
}

h5,
.h5 {
    font-size: clamp(22px, 2.5vw + 3px, 32px);
    line-height: clamp(26px, 3vw + 4px, 36px);
}

h6,
.h6 {
    font-size: clamp(20px, 2vw + 2px, 24px);
    line-height: clamp(24px, 2.5vw + 3px, 32px);
}

/* Font custom */

.font-main {
    font-family: "Inter";
}

.font-2 {
    font-family: "Apfel Grotezk";
}

.font-3 {
    font-family: "EB Garamond", serif;
}

.text-body-1 {
    font-size: 20px;
    line-height: 28px;
}

.text-body-2 {
    font-size: 16px;
    line-height: 24px;
}

.text-body-3 {
    font-size: 14px;
    line-height: 20px;
}

.text-caption {
    font-size: 12px;
    line-height: 16px;
}

/* Text Font Number */

.text-24 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: clamp(18px, 2vw, 24px);
}

.text-64 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: clamp(36px, 5vw, 64px);
}

.text-80 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: clamp(48px, 6.6vw, 88px);
}

/* Font size */

.fs-4 {
    font-size: 4px !important;
}

.fs-8 {
    font-size: 8px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-35 {
    font-size: 35px !important;
}

/* Line height */

.lh-8 {
    line-height: 8px !important;
}

.lh-10 {
    line-height: 10px !important;
}

.lh-11 {
    line-height: 11px !important;
}

.lh-13 {
    line-height: 13px !important;
}

.lh-19 {
    line-height: 19px !important;
}

.lh-20 {
    line-height: 20px !important;
}

.lh-24 {
    line-height: 24px !important;
}

.lh-26 {
    line-height: 26px !important;
}

.lh-28 {
    line-height: 28px !important;
}

.lh-30 {
    line-height: 30px !important;
}

.lh-32 {
    line-height: 32px !important;
}

/* Letter spacing */

.letter-space-1 {
    letter-spacing: 0.01em !important;
}

.letter-space-2 {
    letter-spacing: 0.02em !important;
}

.letter-space-0 {
    letter-spacing: 0px !important;
}

.letter-space--05 {
    letter-spacing: -0.005em !important;
}

.letter-space--1 {
    letter-spacing: -0.01em !important;
}

.letter-space--2 {
    letter-spacing: -0.02em !important;
}

.letter-space--3 {
    letter-spacing: -0.03em !important;
}

.letter-space--4 {
    letter-spacing: -0.04em !important;
}

/* Responsive */

@media (min-width: 1440px) {
    .lh-xxl-11 {
        line-height: 11px !important;
    }
    .lh-xxl-19 {
        line-height: 19px !important;
    }
    .lh-xxl-22 {
        line-height: 22px !important;
    }
    .lh-xxl-56 {
        line-height: 56px !important;
    }
}

@media (min-width: 1200px) {
    .lh-xl-54 {
        line-height: 54px !important;
    }
    .lh-xl-36 {
        line-height: 36px !important;
    }
}

@media (min-width: 992px) {
    .lh-lg-56 {
        line-height: 56px !important;
    }
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

/* General
============================================================== */

/* Margin */

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

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-7 {
    margin-bottom: 7px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-14 {
    margin-bottom: 14px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-30 {
    margin-top: 30px;
}

/* Padding */

.pt-30 {
    padding-top: 30px;
}

.px-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Gap */

.gap-6 {
    gap: 6px !important;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px !important;
}

.gap-12 {
    gap: 12px !important;
}

.gap-13 {
    gap: 13px !important;
}

.gap-15 {
    gap: 15px;
}

.gap-16 {
    gap: 16px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-24 {
    gap: 24px !important;
}

.gap-28 {
    gap: 28px !important;
}

.gap-30 {
    gap: 30px;
}

/* Spacing */

.flat-spacing {
    padding-top: 72px;
    padding-bottom: 72px;
}

@media (max-width: 991px) {
    .flat-spacing {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .flat-spacing {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.flat-spacing-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.flat-spacing-3 {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 1439px) {
    .flat-spacing-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .flat-spacing-3 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.flat-spacing-bottom {
    margin-bottom: 88px;
}

@media (max-width: 1199px) {
    .flat-spacing-bottom {
        margin-bottom: 60px;
    }
}

/* Orther */

.text-primary {
    color: var(--primary) !important;
}

.text-white-32 {
    color: var(--white-32);
}

.text-white-40 {
    color: var(--white-40);
}

.text-white-56 {
    color: var(--white-56);
}

.text-white-64 {
    color: var(--white-64);
}

.text-white-72 {
    color: var(--white-72);
}

.text-black-50 {
    color: var(--black-50) !important;
}

.text-black-56 {
    color: var(--black-56);
}

.text-black-72 {
    color: var(--black-72);
}

.link {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--primary) !important;
}

.cl-line-2 {
    border-color: var(--line-2) !important;
}

.link-underline {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.link-underline:hover {
    text-decoration-color: var(--primary);
}

.lt-sp-nor {
    letter-spacing: -0.32px;
}

.letter-space-0 {
    letter-spacing: 0px !important;
}

.text-vertical {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.cs-pointer {
    cursor: pointer;
}

.max-width_1 {
    max-width: 1424px;
    width: 100%;
}

.gap-x-10 {
    column-gap: 10px !important;
}

.radius-3 {
    border-radius: 3px !important;
}

.radius-5 {
    border-radius: 5px !important;
}

.radius-10 {
    border-radius: 10px !important;
}

.radius-12 {
    border-radius: 12px !important;
}

.radius-16 {
    border-radius: 16px !important;
}

.radius-20 {
    border-radius: 20px !important;
}

.bg-white-2 {
    background-color: var(--bg-10);
}

.bg-surface {
    background-color: var(--surface);
}

.bg-silver-dawn {
    background: linear-gradient(180deg, #BDC5DB 0%, #E1EAEF 100%);
}

.bg-dark {
    background: #0F0F0F !important;
}

.text-line-clamp-1 {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.text-line-clamp-2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.text-line-clamp-3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.aspect-ratio-0 {
    aspect-ratio: 0 !important;
}

.aspect-ratio-1 {
    aspect-ratio: 1/1 !important;
}

.z-1 {
    z-index: 1;
}

.z-5 {
    z-index: 5;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-auto {
    cursor: auto;
}

.min-w-unset {
    min-width: unset !important;
}

.flex-1 {
    flex: 1;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.cursor-pointer {
    cursor: pointer;
}

@media (min-width: 992px) {
    .h-lg-100 {
        height: 100% !important;
    }
}

/*------------ Component ---------------- */

/*------------ Layout ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.tf-grid-layout {
    display: grid;
    column-gap: 24px;
    row-gap: 32px;
}

.tf-grid-layout.tf-col-2 {
    grid-template-columns: 1fr 1fr;
}

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

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

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

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

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

.tf-grid-layout .wd-full {
    grid-column: 1/-1;
}

.tf-grid-layout .wd-2-cols {
    grid-column: span 2;
}

@media (min-width: 576px) {
    .tf-grid-layout.sm-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .tf-grid-layout.sm-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tf-grid-layout.sm-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .tf-grid-layout.sm-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .tf-grid-layout.sm-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .tf-grid-layout.sm-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 768px) {
    .tf-grid-layout.md-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .tf-grid-layout.md-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tf-grid-layout.md-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .tf-grid-layout.md-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .tf-grid-layout.md-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .tf-grid-layout.md-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 992px) {
    .tf-grid-layout.lg-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .tf-grid-layout.lg-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tf-grid-layout.lg-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .tf-grid-layout.lg-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .tf-grid-layout.lg-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .tf-grid-layout.lg-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 1200px) {
    .tf-grid-layout {
        column-gap: 30px;
        row-gap: 40px;
    }
    .tf-grid-layout.row-xl-gap-40 {
        row-gap: 40px;
    }
    .tf-grid-layout.row-xl-gap-56 {
        row-gap: 56px;
    }
    .tf-grid-layout.xl-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .tf-grid-layout.xl-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tf-grid-layout.xl-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .tf-grid-layout.xl-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .tf-grid-layout.xl-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .tf-grid-layout.xl-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 1440px) {
    .tf-grid-layout.xxl-col-2 {
        grid-template-columns: 1fr 1fr;
    }
    .tf-grid-layout.xxl-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .tf-grid-layout.xxl-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .tf-grid-layout.xxl-col-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .tf-grid-layout.xxl-col-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    .tf-grid-layout.xxl-col-7 {
        grid-template-columns: repeat(7, 1fr);
    }
}

.row {
    margin-right: -16px;
    margin-left: -16px;
}

.row>* {
    padding-left: 16px;
    padding-right: 16px;
}

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 16px;
    padding-left: 16px;
    width: 1176px;
    max-width: 100%;
}

.container-full {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .container-full {
        padding-right: 12px;
        padding-left: 12px;
    }
}

/*------------ Header ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.btn-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    position: relative;
}

.btn-mobile-menu span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: block;
    width: 16px;
    height: 2px;
    background-color: var(--black-40);
    border-radius: 5px;
}

.btn-mobile-menu::after,
.btn-mobile-menu::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--black-40);
    border-radius: 1px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: rotate(0);
}

.btn-mobile-menu::before {
    top: 5px;
}

.btn-mobile-menu::after {
    bottom: 5px;
}

.btn-mobile-menu.close::before {
    top: auto;
    transform: rotate(45deg);
}

.btn-mobile-menu.close span {
    opacity: 0;
    visibility: hidden;
}

.btn-mobile-menu.close::after {
    bottom: auto;
    transform: rotate(-45deg);
}

.nav-mobile-item {
    min-width: 181px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: var(--shadow-2);
    backdrop-filter: blur(0px);
    padding: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-mobile-item .item-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--black-72);
    padding: 8px;
}

.nav-mobile-item .item-link.active {
    color: var(--primary);
}

.nav-mobile-item .item-link .icon {
    color: var(--black-40);
}

.action-open-mobile {
    position: fixed;
    right: 16px;
    top: 24px;
    z-index: 99;
}

.action-open-mobile .nav-mobile-list {
    display: grid;
    place-items: end;
    position: absolute;
    gap: 8px;
    top: calc(100% + 8px);
    right: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}

.action-open-mobile .nav-mobile-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.tf-header-wrap {
    padding-top: 24px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-header-wrap .left {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 992px) {
    .tf-header-wrap {
        padding: 0;
        position: absolute;
        top: 52px;
        right: 32px;
    }
}

@media (min-width: 1600px) {
    .tf-header-wrap {
        right: 48px;
    }
}

@media (max-width: 991px) {
    .tf-header-wrap .left {
        padding-right: 56px;
    }
    .tf-header-wrap.header-sticky {
        position: sticky;
        top: 0;
        background: var(--white);
        box-shadow: var(--shadow-2);
    }
}

.overlay-pop {
    background: var(--white-40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    inset: 0;
    z-index: 98;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.overlay-pop.open {
    opacity: 1;
    visibility: visible;
}

.time-local {
    color: var(--black-56);
    text-align: end;
}

/*------------ Blog ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.article-blog {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--white-16);
}

.article-blog .blog-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.article-blog .btn-action {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--white-16);
    flex-shrink: 0;
}

.article-blog .btn-action .icon {
    font-size: 20px;
}

.article-blog .btn-action:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.article-blog .infor_sub {
    margin-bottom: 8px;
}

.article-blog .infor_name {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    overflow: hidden;
}

@media (min-width: 426px) {
    .article-blog.style-horizontal {
        display: flex;
    }
    .article-blog.style-horizontal .blog-image {
        max-width: 300px;
    }
    .article-blog.style-horizontal .blog-image img {
        aspect-ratio: 1.5;
    }
    .article-blog.style-horizontal .blog-content {
        display: grid;
    }
}

@media (min-width: 1200px) {
    .article-blog .btn-action {
        width: 50px;
        height: 50px;
    }
}

.wg-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.wg-pagination .pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-16);
}

.wg-pagination .pagination-item.active,
.wg-pagination .pagination-item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.blog-sidebar .sidebar-title {
    margin-bottom: 16px;
}

@media (min-width: 1200px) {
    .blog-sidebar {
        gap: 32px;
    }
}

.list-relatest-post .relatest-post-item:not(:last-child) {
    margin-bottom: 10px;
}

.relatest-post-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.relatest-post-item .image {
    width: 80px;
    aspect-ratio: 1;
}

.relatest-post-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relatest-post-item .title {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sidebar-categories .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.list-tags a {
    display: flex;
    align-items: center;
    padding: 5px 24px;
    border-radius: 99px;
    background: rgba(37, 37, 37, 0.5019607843);
}

.list-tags a:hover {
    background: #fff;
    color: #000;
}

.blog-single-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-single-wrap .image img {
    width: 100%;
    border-radius: 16px;
}

.meta-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meta-list .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-list .meta-item .icon {
    color: var(--primary);
}

.entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.entry-footer .tags-links {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 420px;
}

.blockquote-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 74px 39px 80px 56px;
    background-color: rgb(26, 26, 26);
    box-shadow: 0px 0px 20px 0px rgba(103, 103, 103, 0.25) inset;
}

.blockquote-wrap img {
    position: absolute;
    width: 200px;
    bottom: -50px;
    right: 56px;
    opacity: 0.1;
}

@media (max-width: 767px) {
    .blockquote-wrap {
        padding: 40px 30px 50px;
    }
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1019607843);
    box-shadow: 0px 0px 15px 0px rgba(221, 221, 221, 0.1490196078) inset;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 16px;
}

.social-links a:hover {
    background-color: #fff;
    color: #151515;
}

.comment-wrap .heading {
    margin-bottom: 25px;
}

.comment-wrap .author {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comment-wrap .author:not(:last-child) {
    margin-bottom: 20px;
}

.comment-wrap .author.type-reply {
    margin-left: 20px;
}

.comment-wrap .name {
    margin-bottom: 5px;
    margin-top: -7px;
}

.comment-wrap .image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50% !important;
    overflow: hidden;
    filter: grayscale(100%);
}

.comment-wrap .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-wrap .time {
    margin-bottom: 20px;
}

.comment-wrap .reply {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 5px;
    align-items: center;
}

@media (min-width: 992px) {
    .comment-wrap .author {
        gap: 18px;
    }
    .comment-wrap .author.type-reply {
        margin-left: 66px;
    }
}

.post-comment .heading {
    margin-bottom: 35px;
}

.post-comment .text {
    margin-bottom: 25px;
}

.post-comment .form-cta .form-content {
    gap: 24px;
    margin-bottom: 40px;
}

.post-comment .form-cta textarea {
    height: 100px;
}

/*------------ Element ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

@keyframes sliderShape {
    0%,
    100% {
        border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    34% {
        border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
        transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    }
    50% {
        transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    }
    67% {
        border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
        transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    }
}

@keyframes tf-animate-zoom-in-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple-line {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shine-reverse {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@-webkit-keyframes spinner-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes spinner-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ani-zoom {
    animation: tf-animate-zoom-in-out 30s linear infinite;
}

@keyframes iconBounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes float1 {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(5px) rotate(10deg);
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(-8deg);
    }
}

@keyframes float4 {
    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

@keyframes float5 {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

@keyframes bgMove {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: 0% 0;
    }
}

@keyframes effect-send {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    49% {
        transform: translate3d(42px, -39px, 38px);
        opacity: 0;
    }
    50% {
        transform: translate3d(-42px, 39px, 38px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ant-spin-inf {
    animation: spin 1s linear infinite;
}

@keyframes moveUp {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: -1000px;
    }
}

@keyframes objPosition {
    0% {
        object-fit: top;
    }
    100% {
        object-fit: bottom;
    }
}

@keyframes rippleAnim {
    0% {
        transform: scale(0.2);
        opacity: 0.65;
    }
    40% {
        opacity: 0.35;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes pulseScale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes rippleFade {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper .item-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    font-weight: inherit;
}

.cd-words-wrapper .item-text.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper .item-text {
    opacity: 0;
}

.no-js .cd-words-wrapper .item-text.is-visible {
    opacity: 1;
}

.animationtext {
    display: flex;
    gap: 6px;
}

.animationtext.clip span {
    display: inline-block;
    padding: 0;
}

.animationtext.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    display: flex;
    margin-bottom: -10px;
    padding-bottom: 10px;
}

.animationtext.clip .cd-words-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 84%;
    background-color: #fff;
}

.animationtext.clip .item-text {
    opacity: 0;
}

.animationtext.clip .item-text.is-visible {
    opacity: 1;
}

.animationtext.slide span {
    display: inline-block;
    /* padding: .2em 0; */
}

.animationtext.slide .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.animationtext.slide .item-text {
    opacity: 0;
    top: 0.2em;
}

.animationtext.slide .item-text.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in 0.6s;
    -moz-animation: slide-in 0.6s;
    animation: slide-in 0.6s;
}

.animationtext.slide .item-text.is-hidden {
    -webkit-animation: slide-out 0.6s;
    -moz-animation: slide-out 0.6s;
    animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.d-rotate {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.d-rotate .rotate-text {
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    opacity: 0;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.d-rotate.animated .rotate-text {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    opacity: 1;
}

/*-- Preload --*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    --preloader-clip: 0;
    clip-path: inset(0 0 0 var(--preloader-clip));
    background-color: var(--black);
}

.preloader span {
    font-size: 80px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    overflow-x: hidden;
}

.preloader .preloader-gutters {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
}

.preloader .preloader-gutters .bar {
    width: 12.5%;
    height: 100%;
    background: transparent;
    position: relative;
}

.preloader .preloader-gutters .bar .inner-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
}

.preloader .preloader-overlay {
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    transform: translateX(-100%);
    opacity: 0.2;
}

.preloader .site-name {
    background-color: var(--secondary);
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.preloader .site-name span {
    font-size: 80px;
}

@media only screen and (max-width: 767px) {
    .preloader .site-name span {
        font-size: 40px;
    }
}

.split-text {
    opacity: 0;
}

.effectFade {
    opacity: 0;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.hover-img .img-style {
    overflow: hidden;
}

.hover-img .img-style>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
    transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.hover-img:hover .img-style>img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hover-img .img-style2 {
    overflow: hidden;
    border-radius: 10px;
}

.hover-img .img-style2 .img-hv {
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: transform 500ms ease;
}

.hover-img2 .img-style2 {
    overflow: hidden;
    border-radius: 8px;
}

.hover-img2 .img-style2 .img2 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hover-img2:hover .img2 {
    transform: scale(1.1) rotate(3deg);
}

.hover-img3 .img-style3 {
    border-radius: 8px;
    overflow: hidden;
}

.hover-img3 .img-style3 img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hover-img3:hover img {
    transform: scale(1.075);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hover-img4 .img-style4 {
    position: relative;
    overflow: hidden;
}

.hover-img4 .img-style4:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.hover-img4 .img-style4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.hover-img4:hover .img-style4:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.hover-img4:hover .img-style4 img {
    transform: scale(1.1);
}

.pagi2 .swiper-pagination2:hover .box-img .icon-practice,
.swiper-button-next2:hover .box-img .icon-practice,
.swiper-button-prev2:hover .box-img .icon-practice,
.hv-one:hover .box-img .icon-practice {
    opacity: 1;
    z-index: 99;
    top: 50%;
    transition-delay: 0.5s;
}

.pagi2 .swiper-pagination2:hover .img-style::before,
.swiper-button-next2:hover .img-style::before,
.swiper-button-prev2:hover .img-style::before,
.hv-one:hover .img-style::before {
    opacity: 1;
}

.pagi2 .swiper-pagination2 .img-style,
.swiper-button-next2 .img-style,
.swiper-button-prev2 .img-style,
.hv-one .img-style {
    border-radius: 10px;
    overflow: hidden;
}

.pagi2 .swiper-pagination2 .img-style::before,
.swiper-button-next2 .img-style::before,
.swiper-button-prev2 .img-style::before,
.hv-one .img-style::before {
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5019607843);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99;
    opacity: 0;
    border-radius: 10px;
}

.pagi2 .swiper-pagination2 .img-style.s-one::before,
.swiper-button-next2 .img-style.s-one::before,
.swiper-button-prev2 .img-style.s-one::before,
.hv-one .img-style.s-one::before {
    border-radius: 50%;
}

.hv-one2:hover .img-style2::before {
    opacity: 1;
    visibility: visible;
}

.hv-one2 .img-style2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 10px;
}

.hv-tool {
    position: relative;
    transition: all 0.3s ease;
}

.hover-tooltip {
    position: relative;
}

.hover-tooltip .tooltip {
    position: absolute;
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 2px;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    background-color: var(--black);
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
    z-index: 5;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    border-radius: 8px;
    text-align: center;
    font-family: "Inter";
    display: none;
}

.hover-tooltip .tooltip::before {
    content: "";
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    top: 26px;
    position: absolute;
    background: var(--black);
    width: 9px;
    height: 9px;
    z-index: -1;
}

@media (min-width: 1200px) {
    .hover-tooltip .tooltip {
        font-size: 16px;
        line-height: 22px;
        display: block;
    }
}

.hover-tooltip .tooltip.bg-primary::before {
    background: var(--primary);
}

.hover-tooltip:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.hover-tooltip.tooltip-bot .tooltip {
    top: calc(100% + 10px);
    bottom: unset;
}

.hover-tooltip.tooltip-bot .tooltip::before {
    top: -4px;
}

.hover-tooltip.tooltip-left .tooltip {
    right: 100%;
    bottom: auto;
    transform: translateX(0px);
    left: unset;
}

.hover-tooltip.tooltip-left .tooltip::before {
    top: 50%;
    left: auto;
    transform: translateY(-50%) rotate(45deg);
    right: -4px;
}

.hover-tooltip.tooltip-left:hover .tooltip {
    transform: translateX(-12px);
}

.hover-tooltip.tooltip-right .tooltip {
    left: 100%;
    bottom: auto;
    transform: translateX(0px);
}

.hover-tooltip.tooltip-right .tooltip::before {
    top: 50%;
    right: auto;
    transform: translateY(-50%) rotate(45deg);
    left: -4px;
}

.hover-tooltip.tooltip-right:hover .tooltip {
    transform: translateX(8px);
}

.hover-overlay {
    position: relative;
}

.hover-overlay::before {
    position: absolute;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    transition: 0.4s ease 0.1s;
    opacity: 0;
    visibility: hidden;
}

.hover-overlay:hover::before {
    opacity: 1;
    visibility: visible;
}

.hover-cursor-img .hover-image {
    display: none;
}

@media (min-width: 1200px) {
    .hover-cursor-img {
        position: relative;
    }
    .hover-cursor-img .hover-image {
        position: fixed;
        display: block;
        transform: scale(0);
        pointer-events: none;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
    }
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tf-social-icon {
    display: inline-flex;
    gap: 16px;
    --facebook-cl: rgb(59, 89, 152);
    --x-cl: rgb(85, 85, 85);
    --instagram-cl: linear-gradient(#8a3ab9, #e95950, #fccc63);
    --threads-cl: rgb(224, 53, 102);
    --youtube-cl: rgb(205, 32, 31);
    --tiktok-cl: linear-gradient(#25f4ee, #000, #fe2c55);
    --tiktok-cl2: rgb(254, 44, 85);
    --pinterest-cl: rgb(203, 32, 39);
    --tumblr-cl: rgb(55, 69, 92);
    --vimeo-cl: rgb(26, 183, 234);
    --snapchat-cl: rgb(255, 221, 0);
    --whatsapp-cl: rgb(0, 230, 118);
    --linked_in-cl: rgb(23, 106, 255);
    --wechat-cl: rgb(26, 173, 24);
    --reddit-cl: rgb(255, 69, 0);
    --line-cl: rgb(0, 195, 77);
    --spotify-cl: rgb(30, 125, 96);
}

.tf-social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid;
    border-color: var(--line);
    position: relative;
}

.tf-social-icon a .icon {
    display: inline-flex;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.tf-social-icon a::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    background: transparent;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.tf-social-icon.style-2 a {
    border-color: var(--line-3);
    color: var(--white);
}

.tf-social-icon .social-facebook::after {
    background: var(--facebook-cl);
}

.tf-social-icon .social-facebook:hover {
    color: var(--white);
}

.tf-social-icon .social-facebook:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-instagram::after {
    background: var(--instagram-cl);
}

.tf-social-icon .social-instagram:hover {
    color: var(--white);
}

.tf-social-icon .social-instagram:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-x::after {
    background: var(--x-cl);
}

.tf-social-icon .social-x:hover {
    color: var(--white);
}

.tf-social-icon .social-x:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-snapchat::after {
    background: var(--snapchat-cl);
}

.tf-social-icon .social-snapchat:hover {
    color: var(--white);
}

.tf-social-icon .social-snapchat:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-pinterest::after {
    background: var(--pinterest-cl);
}

.tf-social-icon .social-pinterest:hover {
    color: var(--white);
}

.tf-social-icon .social-pinterest:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-linkin::after {
    background: var(--linked_in-cl);
}

.tf-social-icon .social-linkin:hover {
    color: var(--white);
}

.tf-social-icon .social-linkin:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon .social-tiktok::after {
    background: var(--tiktok-cl);
}

.tf-social-icon .social-tiktok:hover {
    color: var(--white);
}

.tf-social-icon .social-tiktok:hover::after {
    opacity: 1;
    visibility: visible;
}

.tf-social-icon.style-white a {
    color: var(--white);
    border-color: var(--line);
}

.tf-social-icon-2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tf-social-icon-2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.tf-social-icon-2 a:hover {
    background-color: #D2D2D2;
}

.tf-social-icon-2 .icon {
    font-size: 20px;
}

.tf-link-icon {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

/*-- CSS Boostrap --*/

.offcanvas {
    border: none !important;
    color: var(--white);
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.5607843137);
}

.offcanvas .icon-close-popup {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    font-size: 16px;
    padding: 10px;
    border: none;
    color: var(--black);
    z-index: 10;
}

.offcanvas .icon-close-popup:hover {
    color: var(--primary);
}

.offcanvas .icon-close-popup.type-right {
    top: 16px;
    right: 16px;
}

.offcanvas .offcanvas-content {
    height: 100%;
}

.offcanvas.offcanvas-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0;
    visibility: hidden;
    max-width: calc(100vw - 30px);
}

.offcanvas.offcanvas-center.show {
    visibility: visible;
    opacity: 1;
}

.offcanvas-backdrop {
    z-index: 2999;
    cursor: url(../images/cursor-close.svg), auto;
}

.overflow-x-auto::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar {
    width: 0px;
}

.modal {
    cursor: url(../images/cursor-close.svg), auto;
}

.modal .icon-close-popup {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    font-size: 16px;
    padding: 16px;
    border: none;
    color: var(--black);
    z-index: 10;
    position: absolute;
    top: 0px;
    right: 0px;
}

.modal .icon-close-popup:hover {
    color: var(--primary);
}

@media (min-width: 576px) {
    .modal .icon-close-popup {
        top: 10px;
        right: 10px;
    }
}

.modal .modal-content {
    border: 0;
}

.modal .modal-body {
    padding: 0;
}

.modal.fullRight .modal-dialog {
    transform: translate(100%, 0);
    min-width: 100%;
    height: 100%;
    margin: 0;
    transition: transform 1s ease-out;
}

.modal.fullRight .modal-dialog .modal-content {
    border-radius: 0;
    border: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 0;
}

.modal.fullRight .modal-dialog .modal-content .modal-body {
    overflow: auto;
    padding: 0;
    padding-bottom: 30px;
}

.modal.fullRight.show .modal-dialog {
    transform: none;
    transition: transform 0.4s ease-out;
}

.modal.fullLeft .modal-dialog {
    transform: translate(-100%, 0) !important;
    min-width: 100%;
    height: 100%;
    margin: 0;
    transition: all 0.3s !important;
}

.modal.fullLeft .modal-content {
    border-radius: 0;
    border: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    padding: 0;
}

.modal.fullLeft .modal-body {
    overflow: auto;
    padding: 0;
    padding-bottom: 30px;
}

.modal.fullLeft.show .modal-dialog {
    transform: translate(0, 0) !important;
}

.modal.fullBottom .modal-dialog {
    transform: translate(0, 100%);
    min-width: 100%;
    height: 100%;
    max-height: unset;
    margin: 0;
    transition: transform 0.3s linear !important;
}

.modal.fullBottom .modal-content {
    border-radius: 0;
    border: 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0;
    max-height: max-content;
}

.modal.fullBottom .modal-body {
    overflow: auto;
    padding: 0;
    padding-bottom: 30px;
}

.modal.fullBottom.show .modal-dialog {
    transform: translate(0, 0);
}

.modal.modalCentered .modal-dialog {
    margin: 15px auto;
    padding-left: 15px;
    padding-right: 15px;
    transform: translate(0, 0) !important;
}

.modal.fade:not(.show) {
    opacity: 0;
}

.modal .modal-content {
    cursor: default !important;
    border-radius: 0px;
}

.modal-heading {
    position: relative;
    margin-bottom: 30px;
}

.modal-heading .icon-close-popup {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: unset;
    font-size: 24px;
}

@media (min-width: 992px) {
    .modal-heading {
        margin-bottom: 40px;
    }
}

.canvas-wrapper {
    padding: 0;
    isolation: isolate;
    height: 100%;
    width: 100%;
    max-height: none;
    display: grid;
    grid-auto-rows: auto minmax(0, 1fr) auto;
    align-content: start;
}

.canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    text-transform: capitalize;
}

.canvas-header .icon-close-popup {
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .canvas-header {
        padding: 32px;
    }
}

.canvas-body {
    background-color: var(--white);
    padding: 10px 24px;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    flex: 1;
}

.canvas-body::-webkit-scrollbar {
    width: 5px;
}

.canvas-body::-webkit-scrollbar-track {
    background-color: var(--white);
}

.canvas-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

@media (min-width: 1200px) {
    .canvas-body {
        padding: 12px 32px 15px;
    }
}

.canvas-footer,
.canvas-bottom {
    padding: 16px 24px 24px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

/*-- Css --*/

.offcanvas-color {
    background-color: transparent;
    width: 320px !important;
}

.offcanvas-color .offcanvas-content {
    display: flex;
    flex-direction: column;
}

.offcanvas-color .canvas-body {
    background: transparent;
}

.offcanvas-color .offcanvas-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.offcanvas-color .icon-close-popup {
    color: var(--white);
    aspect-ratio: 1;
    top: 5px;
    right: 5px;
    font-size: 20px;
    padding: 0;
}

.offcanvas-color .title {
    margin-bottom: 20px;
}

.offcanvas-mb {
    width: 320px !important;
}

.offcanvas-mb .offcanvas-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
}

.offcanvas-mb .title-canvas {
    color: rgba(255, 255, 255, 0.7215686275);
}

.offcanvas-mb .canvas-header,
.offcanvas-mb .canvas-body {
    background: transparent;
}

.offcanvas-mb .canvas-footer {
    box-shadow: unset;
}

.mb-menu-link .item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7215686275);
    padding-top: 8px;
    padding-bottom: 8px;
}

.mb-menu-link .item-link.active {
    color: var(--primary);
}

.mb-menu-link .icon {
    font-size: 20px;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.flat-animate-tab .tab-content {
    position: relative;
}

.flat-animate-tab .tab-pane {
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition-timing-function: ease-in;
    transition-duration: 0.2s;
}

.flat-animate-tab .tab-pane.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    transition-timing-function: ease-out;
    transition-duration: 0.3s;
    transition-delay: 0.3s;
}

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

.pricing-tab_btn li {
    width: 100%;
    white-space: nowrap;
}

.pricing-tab_btn .tf-btn-tab {
    display: grid;
    place-items: center;
    gap: 16px;
    color: var(--white-64);
    text-align: center;
}

.pricing-tab_btn .tf-btn-tab.active {
    color: var(--white);
}

.pricing-tab_btn .tf-btn-tab.active .dot-active {
    background: var(--primary);
    box-shadow: 0px 0px 2px 1px rgba(5, 148, 29, 0.3019607843), 0px 0px 6px 4px rgba(5, 148, 29, 0.1803921569);
}

.pricing-tab_btn .dot-active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--white-32);
}

@media (min-width: 576px) {
    .pricing-tab_btn {
        gap: 12px;
    }
    .pricing-tab_btn li {
        max-width: 206px;
        width: 100%;
    }
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

form {
    position: relative;
    z-index: 30;
}

form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0px 12px 15px 0px;
    border: 0;
    border-radius: 0 !important;
    background-color: transparent;
    border-bottom: 1px solid var(--black-6);
    color: var(--black-56);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
    color: var(--black-56);
}

form textarea:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus {
    border-color: var(--primary);
}

form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
    background-color: transparent;
    overflow: hidden;
    padding: 0;
}

form textarea {
    height: 150px;
    border-radius: 32px;
    resize: none;
}

form .form-content {
    display: grid;
    gap: 32px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    padding-bottom: 16px;
    padding-left: 16px;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--white-16);
    color: var(--white-64);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 18px;
    letter-spacing: -0.18px;
}

select option {
    background-color: var(--black);
    padding-left: 10px;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-pass {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.tf-check {
    position: relative;
    background: transparent;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 1px solid var(--line);
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-check:checked {
    border-color: var(--black);
    background-color: var(--black);
}

.tf-check:checked::before {
    opacity: 1;
    transform: scale(1);
}

.tf-check::before {
    font-weight: 500;
    font-family: "icomoon";
    content: "\e930";
    position: absolute;
    color: var(--white);
    opacity: 0;
    font-size: 16px;
    transform: scale(0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-check.style-white {
    background-color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrap input {
    padding: 0;
}

.checkbox-wrap label {
    cursor: pointer;
}

.tf-field {
    position: relative;
}

.tf-field .tf-input:not(:placeholder-shown)~.tf-lable,
.tf-field .tf-input:focus~.tf-lable {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}

.tf-field .tf-input::placeholder {
    color: transparent;
}

.tf-field .tf-lable {
    position: absolute;
    left: 0;
    top: 0;
    cursor: text;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 28px;
    pointer-events: none;
    color: var(--white-64);
}

.form-contact .form-content {
    margin-bottom: 64px;
}

.form-contact .form-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.field-ip {
    display: grid;
    gap: 10px;
}

.error {
    color: var(--error);
}

.flat-alert {
    margin-bottom: 20px;
}

.flat-alert:not(:first-child) {
    display: none;
}

.flat-alert.msg-success {
    color: var(--success);
}

.flat-alert.msg-error {
    color: var(--error);
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    color: var(--black);
    border-radius: 999px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.animate-btn {
    position: relative;
    overflow: hidden;
}

.animate-btn:hover::after {
    animation: shine-reverse 1s forwards;
}

.animate-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100%;
    opacity: 0.6;
}

button.animate-btn::after,
.animate-btn.tf-btn::after {
    background-image: linear-gradient(120deg, rgba(0, 0, 0, 0) 20%, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0) 70%);
}

.animate-btn.animate-dark::after {
    background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

.tf-loading {
    font-size: 14px;
    line-height: 20px;
    width: auto;
    height: 42px;
    min-width: 118px;
    padding: 10px;
}

.tf-loading.loadmore .spinner-circle {
    display: none;
}

.tf-loading.loadmore.loading .spinner-circle {
    display: block;
}

.tf-loading.loadmore.loading .text {
    display: none;
}

.tf-loading.loadmore:hover .spinner-child::before {
    background-color: var(--white);
}

.tf-loading.loadmore .spinner-child::before {
    background-color: var(--main);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.spinner-circle {
    width: 24px;
    height: 24px;
    position: relative;
}

.spinner-circle .spinner-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.spinner-circle .spinner-child::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 20%;
    height: 20%;
    background-color: var(--white);
    border-radius: 100%;
    -webkit-animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
    animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
}

.spinner-circle .spinner-circle2 {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.spinner-circle .spinner-circle2::before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner-circle .spinner-circle3 {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
}

.spinner-circle .spinner-circle3::before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.spinner-circle .spinner-circle4 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner-circle .spinner-circle4::before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.spinner-circle .spinner-circle5 {
    -webkit-transform: rotate(160deg);
    -ms-transform: rotate(160deg);
    transform: rotate(160deg);
}

.spinner-circle .spinner-circle5::before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.spinner-circle .spinner-circle6 {
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
}

.spinner-circle .spinner-circle6::before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.spinner-circle .spinner-circle7 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner-circle .spinner-circle7::before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.spinner-circle .spinner-circle8 {
    -webkit-transform: rotate(280deg);
    -ms-transform: rotate(280deg);
    transform: rotate(280deg);
}

.spinner-circle .spinner-circle8::before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.spinner-circle .spinner-circle9 {
    -webkit-transform: rotate(320deg);
    -ms-transform: rotate(320deg);
    transform: rotate(320deg);
}

.spinner-circle .spinner-circle9::before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.tf-btn-line {
    font-weight: 600;
    color: var(--primary);
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(to right, var(--primary-2) 50%, var(--primary) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
    cursor: pointer;
    padding-bottom: 4px;
}

.tf-btn-line::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0px;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-btn-line::before {
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    bottom: 0px;
    height: 2px;
    background-color: var(--primary-2);
    transition: width 0.3s linear;
    z-index: 1;
}

.tf-btn-line.style-white {
    color: var(--white);
    background: linear-gradient(to right, var(--primary-2) 50%, var(--white) 50%);
    background-size: 200% 100%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s linear;
}

.tf-btn-line.style-white::after {
    background-color: var(--white);
}

.tf-btn-line:hover {
    background-position: left;
}

.tf-btn-line:hover::before {
    width: 100%;
}

.tf-btn-line.active {
    background-position: left;
}

.tf-btn-line.active::before {
    width: 100%;
}

.tf-btn-2 {
    width: 80px;
    height: 80px;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)), linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(65.62% 65.62% at 50% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.3215686275) inset, 0px 1px 0.5px 0px rgba(255, 255, 255, 0.1215686275) inset, 0px 4px 16px 0px rgba(255, 255, 255, 0.1607843137) inset, 0px -12px 16px 0px rgba(255, 255, 255, 0.0588235294) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.5607843137), 0px 3px 6px 0px rgba(0, 0, 0, 0.1882352941), 0px 10px 10px 0px rgba(0, 0, 0, 0.0588235294), 0px 12px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 23px 14px 0px rgba(0, 0, 0, 0.0588235294);
    backdrop-filter: blur(12px);
}

@media (min-width: 1200px) {
    .tf-btn-2 {
        width: 120px;
        height: 120px;
        font-size: 48px;
    }
}

.tf-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.tf-btn-icon.style-2 {
    background: #FFFFFF;
    box-shadow: var(--shadow);
    border-radius: 50%;
    color: var(--black-40);
}

.tf-btn-icon.circle {
    border-radius: 50%;
}

.tf-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tf-btn-action .ic-wrap,
.tf-btn-action .text {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    height: 40px;
    border-radius: 999px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tf-btn-action .ic-wrap {
    aspect-ratio: 1;
}

.tf-btn-action .ic-wrap .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-btn-action .ic-wrap:nth-child(3) {
    transform: scale(0);
    margin-left: -48px;
    opacity: 0;
    visibility: hidden;
}

.tf-btn-action .text {
    padding-left: 20px;
    padding-right: 20px;
}

.tf-btn-action:hover .ic-wrap:nth-child(1) {
    transform: scale(0);
    margin-right: -48px;
}

.tf-btn-action:hover .ic-wrap:nth-child(3) {
    transform: scale(1);
    margin-left: 0px;
    opacity: 1;
    visibility: visible;
}

.tf-btn-action:hover .ic-wrap:nth-child(3) .icon {
    transform: rotate(45deg);
}

.tf-btn-action.style-white .ic-wrap,
.tf-btn-action.style-white .text {
    background-color: var(--white-92);
    box-shadow: var(--shadow-2);
    color: var(--black-72);
}

.toggle-switch-mode {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

#wrapper {
    position: relative;
}

.wrap-container {
    width: 100%;
    margin-left: auto;
    /*-- min, between, max --*/
    /*-- min, between, max --*/
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .wrap-container {
        max-width: 708px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .wrap-container {
        padding-right: 44px;
    }
}

@media (max-width: 575px) {
    .wrap-container {
        padding: 0;
    }
}

.main-content {
    pointer-events: none;
}

.main-content .wrap-container {
    pointer-events: all;
}

.sidebar-tools {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 8px;
    z-index: 97;
}

.sidebar-tools .nav-top,
.sidebar-tools .nav-bottom,
.sidebar-tools .nav-list {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.0588235294), 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.031372549), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.031372549), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.031372549), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.031372549), 0px 8px 8px -4px rgba(0, 0, 0, 0.031372549);
    background-color: var(--white);
    border-radius: 999px;
}

.sidebar-tools .nav-list {
    padding: 4px;
}

.sidebar-tools .nav-list .br-line {
    width: 12px;
    background-color: var(--black-6);
    display: flex;
    margin: 0 auto;
}

.sidebar-tools .item-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sidebar-tools .item-link .tool-tip {
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -0.005em;
    color: var(--black);
    height: 28px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.0588235294), 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.031372549), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.031372549), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.031372549), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.031372549), 0px 8px 8px -4px rgba(0, 0, 0, 0.031372549);
    border-radius: 999px;
    pointer-events: none;
}

.sidebar-tools .item-link:hover .tool-tip {
    opacity: 1;
    visibility: visible;
    right: calc(100% + 12px);
}

.sidebar-tools .tf-btn-icon,
.sidebar-tools .item-link {
    color: var(--black-40);
}

.sidebar-tools .tf-btn-icon:hover,
.sidebar-tools .tf-btn-icon.active,
.sidebar-tools .item-link:hover,
.sidebar-tools .item-link.active {
    color: var(--primary);
}

.sidebar-tools .tf-btn-icon.active,
.sidebar-tools .item-link.active {
    transition-delay: 0.3s;
}

.sidebar-tools .nav-item {
    display: flex;
}

@media (min-width: 1600px) {
    .sidebar-tools {
        right: 48px;
    }
}

@media (max-width: 1199px) {
    .sidebar-tools .tool-tip {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .sidebar-tools.pst-v1 {
        transform: unset;
        top: unset;
        bottom: 16px;
    }
    .sidebar-tools.pst-v1 .nav-list {
        display: none;
    }
}

@media (max-width: 767px) {
    .sidebar-tools.pst-v2 {
        left: 16px;
        bottom: 16px;
        top: unset;
        transform: unset;
        display: flex;
        justify-content: center;
    }
    .sidebar-tools.pst-v2 .nav-list {
        display: flex;
        align-items: center;
    }
    .sidebar-tools.pst-v2 .nav-list .br-line {
        width: 1px;
        height: 12px;
    }
}

@media (max-width: 425px) {
    .sidebar-tools {
        gap: 6px;
    }
    .sidebar-tools .nav-list {
        padding: 4px;
    }
    .sidebar-tools.pst-v2 .nav-bottom {
        display: none;
    }
}

.sidebar-user {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /*-- min, between, max --*/
    /*-- min, between, max --*/
}

.sidebar-user::-webkit-scrollbar {
    width: 2px;
}

.sidebar-user::-webkit-scrollbar-thumb {
    background-color: var(--black-56);
}

.sidebar-user .wrap {
    background-color: var(--white);
    padding: 6px;
    box-shadow: var(--shadow);
    border-radius: 24px;
    position: relative;
    max-height: calc(100vh - 48px);
    display: flex;
}

.sidebar-user .user-image {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)), #F5F5F5;
    background-blend-mode: plus-darker;
    width: 100%;
    position: relative;
    z-index: 0;
}

.sidebar-user .user-image::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid var(--black-6);
    z-index: 0;
    border-radius: 18px;
}

.sidebar-user .user-image .image {
    position: relative;
    z-index: 1;
}

.sidebar-user .user-image .image img {
    width: 100%;
    object-fit: cover;
}

.sidebar-user .user-image .meta-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-user .user-image .avaiable-dot {
    position: absolute;
    justify-content: center;
    inset: 0;
    left: 0px;
    z-index: 3;
}

.sidebar-user .user-info {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 38px;
}

.sidebar-user .user-logo {
    position: absolute;
    top: 38px;
    left: 38px;
}

.sidebar-user .user-social {
    position: absolute;
    right: 38px;
    top: 38px;
}

.sidebar-user .user-info .greeting {
    padding-bottom: 20px;
}

.sidebar-user .user-info .br-line {
    background-color: var(--white-8);
    margin-top: 32px;
    margin-bottom: 32px;
}

.sidebar-user .user-info .avaiable-dot {
    position: relative;
    margin-bottom: 32px;
    color: var(--white-72);
}

.sidebar-user .action-down {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-72);
}

.sidebar-user .action-down:hover {
    color: var(--primary);
}

.sidebar-user .action-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sidebar-user .user-image .image img {
    aspect-ratio: 0.546728972;
}

.sidebar-user.active {
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .sidebar-user {
        position: fixed;
        top: 32px;
        left: 16px;
        bottom: 32px;
        width: 100%;
        max-width: 400px;
    }
}

@media (min-width: 1440px) {
    .sidebar-user {
        max-width: 480px;
    }
}

@media (min-width: 1600px) {
    .sidebar-user {
        left: 48px;
    }
}

@media (min-width: 992px) and (max-width: 1439px) {
    .sidebar-user .user-logo {
        top: 20px;
        left: 20px;
    }
    .sidebar-user .user-social {
        right: 20px;
        top: 20px;
    }
    .sidebar-user .user-info {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .sidebar-user .user-info .br-line {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .sidebar-user {
        margin: 0px 16px 0px;
    }
    .sidebar-user .wrap {
        max-height: calc(100vh - 24px - 92px);
        display: flex;
        width: 100%;
    }
    .sidebar-user .user-image::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .sidebar-user .user-image .image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .sidebar-user {
        max-width: 430px;
        padding: 0px 15px;
        margin: 0 auto;
    }
    .sidebar-user .user-logo {
        top: 20px;
        left: 20px;
    }
    .sidebar-user .user-social {
        right: 20px;
        top: 20px;
    }
    .sidebar-user .user-info {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .sidebar-user .user-info .avaiable-dot {
        margin-bottom: 16px;
    }
    .sidebar-user .user-info .br-line {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .sidebar-user .action-group {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 425px) {
    .sidebar-user .user-image {
        display: flex;
    }
    .sidebar-user .user-image .image img {
        aspect-ratio: 0.546728972;
    }
}

.intro-title span {
    position: relative;
    color: var(--primary);
}

.intro-title span::after {
    position: absolute;
    content: "";
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 85%;
    width: 0%;
    background-color: var(--white);
    z-index: -1;
    border-radius: 999px;
    box-shadow: var(--shadow);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.intro-title span.type-2::after {
    background-color: var(--black);
}

.intro-title span.active::after {
    width: calc(100% + 20px);
}

.section-intro .intro-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 43px;
}

.section-intro .intro-author .author-image {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    aspect-ratio: 1;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.section-intro .intro-title {
    margin-bottom: 63px;
}

.section-intro .box-counter {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 84px;
}

.section-intro .intro-client {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.section-intro .intro-item {
    position: relative;
    margin-bottom: -65px;
}

.section-intro .intro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-intro .intro-item .img-item {
    min-height: 250px;
    object-position: left;
}

.section-intro .intro-item .wg-curve-text {
    position: absolute;
    top: -54px;
    left: 43%;
}

.section-intro.type-2 {
    position: relative;
    overflow: hidden;
}

.section-intro.type-2 .box-counter {
    display: grid;
    place-items: flex-end;
    margin-bottom: 296px;
    gap: 16px;
}

.section-intro.type-2 .box-counter .wg-counter {
    min-width: 165px;
}

.section-intro.type-2 .flip-image-list {
    position: absolute;
    top: 288px;
    bottom: 72px;
    left: 0;
    right: 0;
    height: 540px;
}

.section-intro.type-3 .intro-title {
    margin-bottom: 32px;
}

.section-intro.type-3 .image-item {
    position: relative;
}

.section-intro.type-3 .image-item .image {
    position: relative;
}

.section-intro.type-3 .image-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.section-intro.type-3 .image-item .image::after {
    background-color: #19E76E;
    mix-blend-mode: hue;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-intro.type-3 .image-item .wg-curve-text {
    position: absolute;
    top: 16px;
    right: 32px;
}

.section-intro.type-3 .box-counter {
    margin-bottom: 30px;
}

.section-intro.type-3 .box-counter .counter {
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .section-intro.type-3 .counter-image-item {
        display: flex;
        gap: 10px;
        margin-bottom: 16px;
    }
    .section-intro.type-3 .image-item .wg-curve-text {
        top: 32px;
        right: 64px;
    }
    .section-intro.type-3 .box-counter {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }
    .section-intro.type-3 .box-counter .wg-counter {
        min-width: 165px;
    }
    .section-intro.type-3 .box-counter .counter {
        margin-bottom: 4px;
    }
}

@media (min-width: 1200px) {
    .section-intro.type-3 .box-counter {
        gap: 24px;
        margin-top: 32px;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .section-intro .intro-author {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-intro.type-2 .flip-image-list {
        height: 480px;
    }
}

@media (max-width: 575px) {
    .section-intro .intro-item {
        margin-bottom: 30px;
    }
    .section-intro .intro-item .wg-curve-text {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .section-intro .text-rotate .circle {
        width: 150px;
        height: 150px;
    }
    .section-intro .text-rotate .text span {
        transform-origin: 0 75px;
    }
    .section-intro .intro-title {
        margin-bottom: 30px;
    }
    .section-intro.type-2 .box-counter {
        margin-bottom: -80px;
    }
    .section-intro.type-2 .flip-image-list {
        height: 400px;
        inset: unset;
        position: relative;
    }
}

.sect-tag {
    letter-spacing: -0.005em;
    height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding-left: 8px;
    padding-right: 12px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.sect-tag .icon {
    color: var(--primary);
    font-size: 16px;
}

.section-education-experience .timeline {
    position: relative;
}

.section-education-experience .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 126px;
    width: 2px;
    background-color: var(--black-6);
}

.section-education-experience .timeline-line .prg-line {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

@media (max-width: 575px) {
    .section-education-experience .timeline-line {
        left: 6px;
    }
}

@media (min-width: 992px) {
    .section-work .sect-tag {
        position: sticky;
        top: 72px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

.element-sticky {
    display: grid;
}

.element-sticky .sticky-item:not(:first-child) {
    padding-top: 12px;
}

.element-sticky .sticky-item:not(:last-child) {
    padding-bottom: 12px;
}

@media (min-width: 992px) {
    .element-sticky .sticky-item {
        position: sticky;
        top: 132px;
    }
    .element-sticky .sticky-item:not(:first-child) {
        padding-top: 32px;
    }
    .element-sticky .sticky-item:not(:last-child) {
        padding-bottom: 32px;
    }
}

.section-service .br-line {
    background-color: var(--black-6);
}

.section-tech-stack .tech-list {
    display: grid;
    gap: 32px;
}

.section-tech-stack .tech-list .br-line {
    background-color: var(--black-6);
}

@media (max-width: 767px) {
    .section-tech-stack .tech-list {
        gap: 24px;
    }
}

.s-title {
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .s-title {
        margin-bottom: 32px;
    }
}

.section-testimonial {
    /*-- min, between, max --*/
}

.section-testimonial .box-counter {
    display: flex;
    gap: 24px;
}

.section-testimonial .s-title {
    margin-bottom: 32px;
}

.section-testimonial .heading {
    display: flex;
    justify-content: space-between;
    gap: 24px 12px;
}

.section-testimonial .head-image {
    padding: 4px;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.section-testimonial .head-image .wrap-image {
    border-radius: 20px;
    overflow: hidden;
}

.section-testimonial .head-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-testimonial .swiper-testimonial_wrap {
    position: relative;
}

.section-testimonial .swiper-testimonial {
    margin-left: auto;
    margin-right: 0;
}

.section-testimonial .group-btn {
    display: flex;
    gap: 8px;
}

.section-testimonial .sw-main-image {
    box-shadow: var(--shadow);
    border-radius: 24px;
}

@media (min-width: 576px) and (max-width: 767px) {
    .section-testimonial .swiper-testimonial {
        margin-left: 50px;
    }
}

@media (min-width: 576px) {
    .section-testimonial .sw-main-image {
        max-width: 244px;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .section-testimonial .swiper-testimonial {
        max-width: 660px;
    }
    .section-testimonial .swiper-testimonial .testimonial-v01 {
        padding-right: 10px;
    }
    .section-testimonial .group-btn {
        right: 0;
        bottom: 0;
        position: absolute;
        z-index: 2;
    }
    .section-testimonial .group-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        z-index: -1;
    }
    .section-testimonial .number-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .section-testimonial .box-counter>* {
        min-width: 165px;
    }
}

@media (max-width: 1199px) {
    .section-testimonial .swiper-testimonial {
        margin-bottom: 16px;
    }
    .section-testimonial .number-pagination {
        margin-bottom: 16px;
    }
}

@media (max-width: 575px) {
    .section-testimonial .heading {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .section-testimonial .head-image img {
        max-height: 300px;
    }
}

.section-about .s-title {
    margin-bottom: 32px;
}

.section-about .s-desc {
    margin-bottom: 88px;
}

.section-about .s-desc {
    margin-bottom: 88px;
}

.section-about.type-2 .s-desc {
    padding-bottom: 73px;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .section-about .s-desc {
        margin-bottom: 60px;
    }
    .section-about.type-2 .s-desc {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-about .s-desc {
        margin-bottom: 40px;
    }
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.sw-dot-default {
    margin-top: 24px;
    display: inline-flex;
    justify-content: center;
    gap: 12px;
}

.sw-dot-default .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--black);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.32;
    margin-left: 4px;
    margin-right: 4px;
    margin: 0 !important;
    position: relative;
}

.sw-dot-default .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 12px);
    height: calc(100% + 12px);
}

.sw-dot-default .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.sw-dot-default.style-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--white);
}

.sw-dot-default.style-white .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    background-color: var(--white);
}

.sw-dot-default.style-white .swiper-pagination-bullet::before {
    background-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1200px) {
    .sw-dot-default {
        margin-top: 40px;
    }
}

.group-btn-slider {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.group-btn-slider .sw-dot-default {
    width: auto;
    margin: 0;
}

.group-btn-slider .nav-prev-swiper.swiper-button-disabled,
.group-btn-slider .nav-next-swiper.swiper-button-disabled {
    opacity: 0.32;
}

@media (max-width: 1199px) {
    .group-btn-slider {
        margin-top: 24px;
        gap: 24px;
    }
}

.btn-thumbs {
    cursor: pointer;
}

.btn-nav-swiper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hover-wrap {
    position: absolute;
    top: 0;
    bottom: 40px;
    z-index: 2;
    overflow: hidden;
}

.hover-wrap .action {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    opacity: 0;
}

.hover-wrap .action.hover {
    opacity: 1;
}

.hover-wrap .action:not(.hover) {
    opacity: 0;
}

.hover-wrap.left {
    right: 50%;
    left: 0;
}

.hover-wrap.right {
    right: 0;
    left: 50%;
}

@media (max-width: 1199px) {
    .hover-wrap {
        display: none;
    }
}

.slider_effect_fade .swiper-slide.swiper-slide-active .fade-item {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.slider_effect_fade .swiper-slide.swiper-slide-active .scale-item {
    transform: scale(1);
}

.slider_effect_fade .swiper-slide.swiper-slide-active .width-item {
    width: 100%;
}

.slider_effect_fade .fade-item {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider_effect_fade .fade-item.fade-box {
    transition-delay: 0.4s;
    transform: translateY(0px);
}

.slider_effect_fade .fade-item.fade-item-1 {
    transition-delay: 0.5s;
}

.slider_effect_fade .fade-item.fade-item-2 {
    transition-delay: 0.6s;
}

.slider_effect_fade .fade-item.fade-item-3 {
    transition-delay: 0.7s;
}

.slider_effect_fade .fade-item.fade-item-4 {
    transition-delay: 0.8s;
}

.slider_effect_fade .scale-item {
    transform: scale(1.2);
    transition: all 0.5s linear;
}

.slider_effect_fade .scale-item.scale-item-1 {
    transition-delay: 0.3s;
}

.slider_effect_fade .width-item {
    width: 1%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider_effect_fade .width-item.width-item-3 {
    transition-delay: 0.7s;
}

.number-pagination {
    color: var(--black-56);
    display: flex;
    align-items: center;
}

.number-pagination .swiper-pagination-current {
    color: var(--black-72);
}

.sw-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-40);
}

.sw-nav.swiper-button-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.swiper-award .image-small {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.swiper-award .image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.testimonial-v01 .tes-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.testimonial-v01 .tes-text {
    margin-bottom: 32px;
}

.testimonial-v01 .author_name {
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .testimonial-v01 .tes-text {
        margin-bottom: 24px;
    }
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.wg-counter .counter {
    margin-bottom: 10px;
}

.infiniteSlide-brand {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-mode: alpha;
    mask-repeat: no-repeat;
}

.infiniteSlide-brand .image-brand {
    margin-right: 28px;
    padding-left: 28px;
}

@media (min-width: 992px) {
    .infiniteSlide-brand {
        max-width: 464px;
    }
}

.award-list .award-item {
    padding: 23px 0px 24px;
    border-top: 1px solid var(--black-6);
    display: flex;
    justify-content: space-between;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.award-list .award-item .award_name {
    margin-bottom: 8px;
}

.award-list .award-item:last-child {
    padding-bottom: 23px;
    border-bottom: 1px solid var(--black-6);
}

@media (max-width: 575px) {
    .award-list .award-item {
        padding: 20px 0px;
    }
}

.timeline-item {
    display: flex;
}

.timeline-item:nth-child(2) {
    padding-top: 42px;
}

.timeline-item:not(:last-child) {
    padding-bottom: 88px;
}

.timeline-item .timeline-date {
    min-width: 120px;
}

.timeline-item .timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    margin-right: 48px;
    margin-top: 9px;
}

.timeline-item .icon {
    margin-bottom: 24px;
}

.timeline-item .timeline-role {
    margin-bottom: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-role {
    color: var(--black) !important;
}

@media (max-width: 575px) {
    .timeline-item {
        gap: 24px 12px;
        flex-wrap: wrap;
    }
    .timeline-item:nth-child(2) {
        padding-top: 30px;
    }
    .timeline-item:not(:last-child) {
        padding-bottom: 40px;
    }
    .timeline-item .timeline-dot {
        order: 1;
        margin-right: 0;
    }
    .timeline-item .timeline-date {
        order: 2;
        min-width: unset;
        flex-shrink: 0;
    }
    .timeline-item .timeline-content {
        order: 2;
        padding-left: 22px;
    }
    .timeline-item .icon {
        margin-bottom: 20px;
    }
}

.section-work-2 {
    position: relative;
}

.section-work-2 .sect-tag {
    position: absolute;
    top: 0;
    left: 0;
}

.wg-work {
    padding: 4px;
    background-color: var(--white);
    box-shadow: var(--shadow-2);
    border-radius: 24px;
    /*-- min, between, max --*/
}

.wg-work .work-image {
    border-radius: 20px;
    overflow: hidden;
}

.wg-work .work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wg-work .work-content {
    position: relative;
}

.wg-work .work-content .w-image {
    position: absolute;
    inset: 6px;
    z-index: 0;
}

.wg-work .work-content .content {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: auto;
}

.wg-work .w-image {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.wg-work .w-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wg-work .w-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 0.546728972;
}

.wg-work .w-tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.wg-work .w-tag-list .tag {
    padding: 5px 11px;
    background-color: var(--black-56);
    border: 1px solid var(--white-8);
    box-shadow: var(--shadow-3);
    backdrop-filter: blur(6px);
    border-radius: 999px;
}

.wg-work .w-logo,
.wg-work .w-desc,
.wg-work .w-highlight {
    margin-bottom: 64px;
}

.wg-work .w-title {
    margin-bottom: 16px;
}

.wg-work .w-highlight {
    display: grid;
    gap: 40px;
}

.wg-work .box-high {
    display: grid;
    gap: 8px;
}

.wg-work .br-line {
    margin-top: 32px;
    background-color: var(--white-8);
    margin-bottom: 32px;
}

.wg-work .group-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .wg-work .wrap {
        position: fixed;
        top: 16px;
        left: 16px;
        bottom: 16px;
        max-width: 400px;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transform: translateY(-40px);
        opacity: 0;
        visibility: hidden;
    }
    .wg-work .wrap.active {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
    }
    .wg-work .work-content {
        padding: 6px;
        background-color: var(--white);
        border-radius: 24px;
        box-shadow: var(--shadow-2);
        position: relative;
        height: calc(100vh - 48px);
        max-height: 860px;
    }
}

@media (min-width: 1440px) {
    .wg-work .wrap {
        max-width: 480px;
    }
}

@media (min-width: 1600px) {
    .wg-work .wrap {
        left: 48px;
    }
}

@media (max-width: 1439px) {
    .wg-work .w-logo {
        margin-bottom: 28px;
    }
    .wg-work .w-logo,
    .wg-work .w-desc,
    .wg-work .w-highlight {
        margin-bottom: 32px;
    }
    .wg-work .br-line {
        margin-top: 28px;
        margin-bottom: 28px;
    }
}

@media (max-width: 991px) {
    .wg-work .work-image {
        margin-bottom: 4px;
    }
    .wg-work .work-content {
        background: unset !important;
        box-shadow: unset !important;
    }
    .wg-work .work-content .w-image {
        inset: 0;
    }
}

@media (max-width: 575px) {
    .wg-work .work-content .content {
        padding: 20px 15px;
    }
}

@media (min-width: 992px) and (max-width: 1439px) {
    .wg-work .work-content {
        max-height: calc(100vh - 48px);
        aspect-ratio: 0.546728972;
        height: unset;
    }
}

.wg-tech {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wg-tech .tech-infor {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wg-tech .tech_image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wg-tech .tech_info {
    text-wrap: nowrap;
}

.wg-tech .tech_info .info__name {
    margin-bottom: 4px;
}

.wg-tech .tech-progress {
    height: 48px;
    width: 100%;
    padding: 4px;
    background-color: var(--black-6);
    border-radius: 999px;
}

.wg-tech .tech-progress .progress-line {
    height: 100%;
    width: 15%;
    background-color: var(--white);
    border-radius: 999px;
    position: relative;
}

.wg-tech .tech-progress .progress-num {
    position: absolute;
    bottom: 6px;
    right: 6px;
    top: 6px;
    background-color: var(--black-56);
    box-shadow: var(--shadow-3);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-72);
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .wg-tech .tech_info {
        min-width: 248px;
    }
}

@media (max-width: 767px) {
    .wg-tech {
        gap: 12px;
    }
    .wg-tech .tech-infor {
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .wg-tech {
        flex-wrap: wrap;
    }
}

.text-rotate {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    width: max-content;
    margin: 0;
    background-color: transparent;
    animation: spin 10s linear infinite;
}

.text-rotate .circle {
    width: 166px;
    height: 166px;
    border-radius: 50%;
    position: relative;
}

.text-rotate .text span {
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: 0 83px;
    color: var(--black);
    text-transform: uppercase;
    padding-top: 4px;
}

.wg-curve-text {
    position: relative;
    display: inline-flex;
    box-shadow: var(--shadow-4);
    background-color: var(--white);
    border-radius: 50%;
}

.wg-curve-text .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wg-curve-text.style-2 {
    box-shadow: var(--shadow-3);
    backdrop-filter: blur(12px);
    border: 1px solid var(--white-8);
    background: var(--black-56);
}

.wg-curve-text.style-2 .circle {
    width: 156px;
    height: 156px;
}

.wg-curve-text.style-2 .text span {
    transform-origin: 0 78px;
    color: var(--white-72);
}

.wg-curve-text.style-2 .icon path {
    fill: var(--white-72);
}

.flip-image-list {
    position: relative;
}

.flip-image {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    transform: translateX(150vw);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: all;
}

.flip-image img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.flip-image:hover img {
    transform: translateY(-20px);
}

.wrap-hover-award {
    margin: 67px auto 106px;
}

@media (min-width: 576px) {
    .wrap-hover-award {
        width: 237px;
        height: 336px;
        perspective: 1000px;
        margin: 67px auto 106px 106px;
    }
    .wrap-hover-award .award-inner {
        position: relative;
        height: 100%;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }
    .wrap-hover-award img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wrap-hover-award .award-front,
    .wrap-hover-award .award-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 20px;
    }
    .wrap-hover-award .award-front {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .wrap-hover-award .award-back {
        transform: rotateY(180deg);
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .wrap-hover-award .award-small {
        pointer-events: none;
        transform-style: preserve-3d;
        z-index: 1;
        flex: none;
        position: absolute;
        inset: 0;
        overflow: visible;
    }
    .wrap-hover-award .image-small {
        -webkit-user-select: none;
        user-select: none;
        transform-style: preserve-3d;
        z-index: 1;
        flex: none;
        position: absolute;
        width: 124px;
        height: 175px;
        top: 40%;
        left: 40%;
        overflow: visible;
        transition: all 0.8s;
        transform: scale(0.5);
    }
    .wrap-hover-award:hover .award-inner,
    .wrap-hover-award.active .award-inner {
        transform: rotateY(180deg);
    }
    .wrap-hover-award:hover .image-small,
    .wrap-hover-award.active .image-small {
        transform: scale(1);
        border-radius: 3px;
        overflow: hidden;
    }
    .wrap-hover-award:hover .image-small:nth-child(1),
    .wrap-hover-award.active .image-small:nth-child(1) {
        top: 80%;
        left: 72%;
    }
    .wrap-hover-award:hover .image-small:nth-child(2),
    .wrap-hover-award.active .image-small:nth-child(2) {
        top: 35%;
        left: 84%;
    }
    .wrap-hover-award:hover .image-small:nth-child(3),
    .wrap-hover-award.active .image-small:nth-child(3) {
        top: 65%;
        left: -15%;
        z-index: 2;
    }
    .wrap-hover-award:hover .image-small:nth-child(4),
    .wrap-hover-award.active .image-small:nth-child(4) {
        top: -20%;
        left: 74%;
    }
    .wrap-hover-award:hover .image-small:nth-child(5),
    .wrap-hover-award.active .image-small:nth-child(5) {
        top: -19.5%;
        left: -9%;
        z-index: 2;
    }
    .wrap-hover-award:hover .image-small:nth-child(6),
    .wrap-hover-award.active .image-small:nth-child(6) {
        top: 21%;
        left: -39%;
    }
}

.scribble-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.scribble {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scribble.is-drawn {
    opacity: 1;
}

.scribble path {
    stroke-dasharray: var(--len, 1000);
    stroke-dashoffset: var(--len, 1000);
    transition: stroke-dashoffset 1.8s ease-out;
}

.scribble.is-drawn path {
    stroke-dashoffset: 0;
}

.text-typing {
    position: relative;
}

.text-typing #typed {
    display: inline-block;
    position: relative;
    padding-right: 0.25rem;
}

.text-typing #typed::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: currentColor;
    animation: blink 1s steps(2, start) infinite;
    transform: translateX(6px);
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

.avaiable-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.avaiable-dot .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.avaiable-dot .dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--primary);
    animation: rippleFade 1.8s ease-out infinite;
}

.avaiable-dot.vertical {
    flex-direction: column;
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: 1px solid #E5E5EA;
    border-radius: 3px;
    padding: 10px 20px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    /* float: left; */
    font-size: 16px;
    font-weight: 400;
    /* text-transform: capitalize; */
    outline: none;
    position: relative;
    transition: all linear 0.2s;
    user-select: none;
    white-space: nowrap;
    width: 100%;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 1.7px solid #3A3A3C;
    border-right: 1.7px solid #3A3A3C;
    content: "";
    height: 8px;
    width: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    width: 100%;
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    width: 100%;
    font-size: 14px;
    max-height: 160px;
    overflow: auto;
}

.nice-select .list.style {
    max-height: unset;
}

.nice-select .list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.nice-select .list::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.nice-select .list::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: 600;
    color: #111;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
    pointer-events: none;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*-- CSS Custom --*/

.nice-select {
    background-color: transparent;
    border: 0;
    padding: 0;
    border-bottom: 1px solid var(--white-16);
    padding-bottom: 15px;
}

.nice-select .list {
    background-color: var(--black);
    border-radius: 0;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
}

.nice-select::after {
    content: none;
}

.nice-select::before {
    content: "\e906";
    font-family: "icomoon";
    position: absolute;
    right: 9px;
    top: 7px;
    font-size: 10px;
    line-height: 1;
    color: var(--white-64);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nice-select .option {
    background-color: transparent !important;
    color: var(--white-64);
}

.nice-select .option.selected {
    color: var(--primary);
}

.nice-select .option:hover {
    color: var(--primary);
}

.nice-select.open {
    border-color: var(--primary);
}

.nice-select.open::before {
    transform: rotate(180deg);
}

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.ic-accordion-custom {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s linear;
}

.ic-accordion-custom::after,
.ic-accordion-custom::before {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--black);
}

.ic-accordion-custom::before {
    height: 100%;
    width: 2px;
}

.ic-accordion-custom::after {
    height: 2px;
    width: 100%;
}

.accordion-action {
    padding-top: 32px;
    padding-bottom: 0;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.accordion-action .ic-accordion-custom::before {
    transform: rotate(90deg);
}

.accordion-action .ic-accordion-custom::after {
    transform: rotate(180deg);
}

.accordion-action.collapsed {
    margin-bottom: 0px;
    padding-bottom: 32px;
}

.accordion-action.collapsed .ic-accordion-custom::before {
    transform: rotate(0deg);
}

.accordion-action.collapsed .ic-accordion-custom::after {
    transform: rotate(0deg);
}

@media (max-width: 991px) {
    .accordion-action {
        padding-top: 20px;
    }
    .accordion-action.collapsed {
        padding-bottom: 20px;
    }
}

.service-accordion_item .ic-accordion-custom {
    width: 12px;
    height: 12px;
}

.service-accordion_item .ic-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--black-15);
}

.service-accordion_item .accordion-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.service-accordion_item .accordion-action:not(.collapsed) {
    padding-bottom: 32px;
}

.service-accordion_item .tf-grid-layout {
    gap: 12px;
    margin-bottom: 32px;
}

.service-accordion_item .service-image {
    padding: 4px;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service-accordion_item .service-image .wrap_image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--black-6);
}

.service-accordion_item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.service-accordion_item .accordion-content {
    margin-bottom: 32px;
}

.service-accordion_item .service-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-accordion_item .service-tag .tag-item {
    padding: 6px 12px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 999px;
}

.service-accordion_item:last-child .accordion-action.collapsed {
    padding-bottom: 0;
}

.service-accordion_item:last-child .accordion-content {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .service-accordion_item .service-image:nth-child(2) {
        transform: translateX(calc(-100% + 76px));
    }
    .service-accordion_item .accordion-content:hover .service-image:nth-child(2) {
        transform: translateX(0);
    }
}

/*------------ Footer ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.tf-footer .quote-text {
    margin-bottom: 8px;
}

.tf-footer .br-line {
    margin-top: 64px;
    margin-bottom: 64px;
    background-color: var(--black-6);
}

.tf-footer .foot-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
}

.tf-footer .foot-inner .isak {
    max-width: 354px;
    width: 100%;
}

.tf-footer .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
}

.tf-footer .foot-bottom .isak {
    max-width: 428px;
    width: 100%;
}

.tf-footer .f-logo {
    background-color: var(--white);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.tf-footer .text-nocopy {
    white-space: nowrap;
}

.tf-footer .isak {
    width: auto;
}

@media (max-width: 767px) {
    .tf-footer .f-logo {
        width: 40px;
        height: 40px;
    }
    .tf-footer .f-logo .logo {
        width: 20px;
        padding-bottom: 4px;
    }
    .tf-footer .br-line {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/*------------ Mode ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.body-background {
    position: fixed;
    inset: 0;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.body-background .bg-video {
    position: absolute;
    inset: 0;
    display: none;
}

.body-background .bg-item {
    position: absolute;
    inset: 0;
    opacity: 0.72;
    display: none;
}

.body-background .bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-background .video-dark {
    display: none;
}

.body-background .video-light {
    display: block;
    z-index: -1;
}

.body-background .video-light .overlay-1 {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.82);
    mix-blend-mode: overlay;
}

.body-background .video-light .box-video {
    position: absolute;
    left: -240px;
    right: -240px;
}

.body-bg-item:not(.dark-mode) .body-background .bg-item {
    display: block;
}

/*-- Light Mode --*/

.body-v1:not(.dark-mode) .body-background {
    background: linear-gradient(180deg, #BDC5DB 0%, #E1EAEF 100%);
}

.body-v1:not(.dark-mode) .sidebar-user .user-image {
    background: linear-gradient(180deg, #BDC5DB 0%, #E1EAEF 100%);
}

.body-v2:not(.dark-mode) .body-background {
    background: linear-gradient(180deg, #B7BAD1 0%, #D1CAD6 50%, #D5D8E4 100%);
}

.body-v2:not(.dark-mode) .sidebar-user .user-image {
    background: linear-gradient(180deg, #B7BAD1 0%, #D1CAD6 50%, #D5D8E4 100%);
}

.body-v3:not(.dark-mode) .body-background {
    background: linear-gradient(180deg, #AAC7CF 0%, #D8E2D6 100%);
}

.body-v3:not(.dark-mode) .sidebar-user .user-image {
    background: linear-gradient(180deg, #AAC7CF 0%, #D8E2D6 100%);
}

/*-- Dark Mode --*/

.dark-v1.dark-mode .body-background {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v1.dark-mode .sidebar-user .user-image {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v2.dark-mode .body-background {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v2.dark-mode .sidebar-user .user-image {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v3.dark-mode .body-background {
    background: linear-gradient(0deg, #0D1210, #0D1210), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v3.dark-mode .sidebar-user .user-image {
    background: linear-gradient(0deg, #0D1210, #0D1210), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.dark-v4.dark-mode .body-background {
    background: linear-gradient(0deg, #12151C, #12151C);
}

.dark-v4.dark-mode .body-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: 1;
}

.dark-v4.dark-mode .sidebar-user .user-image {
    background: linear-gradient(0deg, #12151C, #12151C);
}

.dark-v4.dark-mode .sidebar-user .user-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-v1 .bg-video {
    display: block;
}

.video-v1 .bg-video {
    z-index: 1;
}

.video-v1 .bg-video .overlay-1 {
    position: absolute;
    inset: 0;
    background-blend-mode: normal, luminosity;
    z-index: 0;
}

.video-v1 .bg-video .video {
    opacity: 0.1;
}

.video-v1.dark-mode .bg-video .overlay-1 {
    background: rgba(0, 0, 0, 0.2);
}

.video-v1.dark-mode .bg-video .video {
    opacity: 0.2;
}

.dark-mode {
    /*-- Core Color --*/
    --white-8: rgba(0, 0, 0, 0.08);
    --white-36: rgba(0, 0, 0, 0.36);
    --white-40: rgba(0, 0, 0, 0.40);
    --white-56: rgba(0, 0, 0, 0.56);
    --white-72: rgba(0, 0, 0, 0.72);
    --white-92: rgba(0, 0, 0, 0.92);
    --black-6: rgba(255, 255, 255, 0.06);
    --black-4: rgba(255, 255, 255, 0.04);
    --black-8: rgba(255, 255, 255, 0.08);
    --black-15: rgba(255, 255, 255, 0.15);
    --black-36: rgba(255, 255, 255, 0.36);
    --black-40: rgba(255, 255, 255, 0.40);
    --black-50: rgba(255, 255, 255, 0.50);
    --black-56: rgba(255, 255, 255, 0.56);
    --black-72: rgba(255, 255, 255, 0.72);
    --dark: #0F0F0F;
    color: var(--white);
    background: var(--dark);
}

.dark-mode .text-white {
    color: var(--black) !important;
}

.dark-mode .text-black {
    color: var(--white) !important;
}

.dark-mode .sect-tag {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.dark-mode .section-intro .intro-title span:not(.type-2) {
    color: var(--white);
}

.dark-mode .section-intro .intro-title span::after {
    background: linear-gradient(180deg, #00DE51 0%, rgba(0, 222, 81, 0.4) 100%);
}

.dark-mode .section-intro .intro-title span.type-2::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.dark-mode .sidebar-tools .tf-btn-icon,
.dark-mode .sidebar-tools .item-link {
    color: var(--black-36);
}

.dark-mode .sidebar-tools .tf-btn-icon:hover,
.dark-mode .sidebar-tools .tf-btn-icon.active,
.dark-mode .sidebar-tools .item-link:hover,
.dark-mode .sidebar-tools .item-link.active {
    color: var(--primary);
}

.dark-mode .sidebar-tools .nav-top,
.dark-mode .sidebar-tools .nav-bottom,
.dark-mode .sidebar-tools .nav-list {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .sidebar-tools .item-link .tool-tip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    color: var(--black-72);
}

.dark-mode .sidebar-tools .nav-list .br-line {
    background-color: var(--black-8);
}

.dark-mode .sidebar-user .user-image {
    background: var(--dark);
}

.dark-mode .sidebar-user .user-image img {
    filter: grayscale(100%);
}

.dark-mode .sidebar-user .user-image .bg-item-svg svg rect {
    fill: var(--dark);
}

.dark-mode .sidebar-user .wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
}

.dark-mode .sidebar-user .user-image .avaiable {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    color: var(--black-72);
}

.dark-mode .sidebar-user .user-info .greeting {
    color: var(--black-72) !important;
}

.dark-mode .sidebar-user .user-info .introduce {
    color: var(--black-56) !important;
}

.dark-mode .sidebar-user .user-info .br-line {
    background-color: var(--black-8);
}

.dark-mode .tf-btn-action .text,
.dark-mode .tf-btn-action .icon {
    color: var(--black);
}

.dark-mode .action-down {
    color: var(--black-72);
}

.dark-mode .wg-work {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
}

.dark-mode .wg-work .wrap {
    --white-8: rgba(255, 255, 255, 0.08);
    --white-40: rgba(255, 255, 255, 0.40);
    --white-56: rgba(255, 255, 255, 0.56);
    --white-72: rgba(255, 255, 255, 0.72);
    --white-92: rgba(255, 255, 255, 0.92);
    --black-6: rgba(0, 0, 0, 0.06);
    --black-15: rgba(0, 0, 0, 0.15);
    --black-40: rgba(0, 0, 0, 0.40);
    --black-50: rgba(0, 0, 0, 0.50);
    --black-56: rgba(0, 0, 0, 0.56);
    --black-72: rgba(0, 0, 0, 0.72);
}

.dark-mode .wg-work .wrap .work-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
}

.dark-mode .wg-work .wrap .tf-btn-action.style-white .icon,
.dark-mode .wg-work .wrap .tf-btn-action.style-white .text {
    color: var(--black);
}

.dark-mode .service-accordion_item .service-image {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
}

.dark-mode .service-accordion_item .service-tag .tag-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
}

.dark-mode .ic-accordion-custom::after,
.dark-mode .ic-accordion-custom::before {
    background-color: var(--black-36);
}

.dark-mode .wg-tech .tech-progress {
    background-color: var(--black-4);
}

.dark-mode .wg-tech .tech-progress .progress-line {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .wg-tech .tech-progress .progress-num {
    background: rgba(0, 0, 0, 0.5607843137);
    border: 1px solid rgba(255, 255, 255, 0.0784313725);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5607843137), 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.031372549), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.031372549), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.031372549), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.1215686275) inset, 0px 1px 2px 0px rgba(255, 255, 255, 0.0392156863) inset, 0px 12px 12px -3px rgba(0, 0, 0, 0.0588235294), 0px 12px 32px -3px rgba(0, 0, 0, 0.1215686275);
    color: rgba(255, 255, 255, 0.7215686275);
}

.dark-mode .wg-tech .tech_image {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .section-testimonial .head-image {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .sw-nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .tf-btn {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
    color: var(--white);
}

.dark-mode .tf-footer .foot-inner .isak path {
    fill: #fff;
}

.dark-mode .tf-footer .foot-bottom .isak path {
    stroke: #fff;
}

.dark-mode .tf-footer .f-logo {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .infiniteSlide-brand .infiniteslide_wrap {
    opacity: 0.72;
}

.dark-mode .wg-curve-text {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.04) 100%);
}

.dark-mode .wg-curve-text:not(.style-2) {
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(10px);
}

.dark-mode .wg-curve-text .text span {
    color: var(--white);
}

.dark-mode .wg-curve-text .icon path {
    fill: #fff;
}

.dark-mode .wg-curve-text.style-2 .text span {
    color: var(--black-72);
}

.dark-mode .wg-curve-text.style-2 .icon path {
    fill: var(--black-72);
}

.dark-mode .tf-social-icon-2 a {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0px 0.5px 0.5px 0px rgba(0, 0, 0, 0.0588235294), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px -1.5px rgba(0, 0, 0, 0.0588235294), 0px 5px 5px -2.5px rgba(0, 0, 0, 0.1215686275), 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.0784313725) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.031372549) inset, 0px -4px 12px 0px rgba(255, 255, 255, 0.0392156863) inset;
    backdrop-filter: blur(12px);
}

.dark-mode .tf-social-icon-2 a svg path {
    fill: #fff;
}

.dark-mode .tf-btn-action.style-white .icon,
.dark-mode .tf-btn-action.style-white .text {
    color: var(--white);
}

.dark-mode .scribble-wrap stop:not(.bred) {
    stop-color: #0F0F0F;
}

.dark-mode .timeline-item.active .timeline-role {
    color: var(--white) !important;
}

.dark-mode .tf-btn-icon.style-2 {
    box-shadow: var(--shadow-5);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
}

.dark-mode .nav-mobile-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 991px) {
    .dark-mode .tf-header-wrap.header-sticky {
        background: var(--bg-3);
        box-shadow: 0 1px 10px rgba(255, 255, 255, 0.05);
    }
}

.dark-mode .sidebar-user .user-info .avaiable-dot {
    color: var(--black-72);
}

.dark-mode .sw-dot-default .swiper-pagination-bullet {
    background: var(--white);
}

.tf-left-bar {
    position: fixed;
    top: 120px;
    right: 16px;
    z-index: 97;
}

.tf-left-bar .btn-setting-color {
    font-size: 18px;
}

@media (min-width: 1600px) {
    .tf-left-bar {
        right: 48px;
    }
}

@media (max-width: 1199px) {
    .tf-left-bar {
        top: 100px;
    }
}

@media (max-width: 767px) {
    .tf-left-bar {
        top: 50%;
        transform: translateY(-50%);
    }
}

.settings-color {
    display: grid;
    gap: 16px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.choose-item .text {
    color: var(--white);
}

.choose-item .color {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.choose-item .color.type-body-v1 {
    background: linear-gradient(180deg, #BDC5DB 0%, #E1EAEF 100%);
}

.choose-item .color.type-body-v2 {
    background: linear-gradient(180deg, #B7BAD1 0%, #D1CAD6 50%, #D5D8E4 100%);
}

.choose-item .color.type-body-v3 {
    background: linear-gradient(180deg, #AAC7CF 0%, #D8E2D6 100%);
}

.choose-item .color.type-dark-v1 {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.choose-item .color.type-dark-v2 {
    background: linear-gradient(0deg, #14151A, #14151A), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.choose-item .color.type-dark-v3 {
    background: linear-gradient(0deg, #0D1210, #0D1210), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.choose-item .color::before {
    position: absolute;
    content: "";
    border: 1px solid #fff;
    border-radius: 50%;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.choose-item.active .color::before {
    opacity: 1;
}

/*------------ Landing ---------------- */

/* ---------------------------------------------------------
    * Name: SCYDE. - Web Developer
    * Version: 1.0.0
    * Author: SCYDE
    * Author URI: http://scyde.dev

	* Abstracts variable

    * Core CSS

    * Components
        * Blog
        * Layout
        * Header
        * Accordion
        * Animation
        * Box Icon
        * Button
        * Carousel
        * Form
        * Hover
        * Nice Select
        * Popup
        * Section
        * Slider
        * Tabs
        * Testimonial
        * Widget
        * Footer

 ------------------------------------------------------------------------------ */

/*--------- Abstracts variable ---------- */

.bg-landing {
    background-color: #0c0c0c;
}

.title-border-shape {
    position: relative;
    max-width: max-content;
    padding: 8px;
}

.title-border-shape .shape span {
    position: absolute;
    display: block;
    height: 12px;
    width: 12px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    z-index: 1;
}

.title-border-shape .shape .shape-1 {
    left: -7px;
    top: -7px;
}

.title-border-shape .shape .shape-2 {
    right: -4px;
    top: -7px;
}

.title-border-shape .shape .shape-3 {
    right: -5px;
    bottom: -5px;
}

.title-border-shape .shape .shape-4 {
    left: -7px;
    bottom: -7px;
}

.title-border-shape .line-horizontal {
    background-color: var(--primary);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
}

.title-border-shape .line-vertical {
    background-color: var(--primary);
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
}

.title-border-shape .vertical-1 {
    right: 0;
}

.title-border-shape .vertical-2 {
    left: 0;
}

.title-border-shape .horizontal-1 {
    top: 0;
}

.title-border-shape .horizontal-2 {
    bottom: 0;
}

.landing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
}

.landing-header .logo-site {
    font-size: 36px;
    padding: 0 10px;
    color: var(--White);
}

.landing-title {
    text-align: center;
    padding: 99px 0;
    position: relative;
}

.landing-title .title-border-shape {
    background-color: #101010;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 991px) {
    .landing-title {
        padding: 50px 0;
    }
}

.landing-demo {
    display: grid;
    gap: 10px;
}

.landing-demo .title-theme {
    margin-bottom: 20px;
}

.landing-demo:not(:last-child) {
    margin-bottom: 50px;
}

.demo-box {
    padding: 8px;
    padding-bottom: 12px;
    background: linear-gradient(123.51deg, rgba(215, 237, 237, 0.1) -61.8%, rgba(204, 235, 235, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1019607843);
    border-radius: 12px;
    text-align: center;
}

.demo-box .title {
    padding-top: 12px;
}

.demo-box .thumbs {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.demo-box .thumbs img {
    width: 100%;
    object-fit: cover;
}

.demo-box .thumbs::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(12, 8, 44, 0) 0%, var(--primary) 200%);
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.demo-box .action-demo {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    z-index: 1;
}

.demo-box:hover .thumbs::after {
    height: 131px;
}

.demo-box:hover .tf-btn {
    transform: translateY(0);
    opacity: 1;
}

.demo-box:hover .action-demo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

@media (max-width: 767px) {
    .demo-box {
        padding: 8px 8px 16px;
        border-radius: 16px;
    }
    .demo-box .title {
        padding-top: 12px;
    }
    .demo-box .thumbs {
        border-radius: 8px;
    }
}

.overlay-link {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.landing-footer {
    position: relative;
    z-index: 3;
    text-align: center;
}

.landing-footer .title-border-shape {
    background-color: #101010;
    padding-left: 20px;
    padding-right: 20px;
}

.landing-footer .content {
    position: relative;
    z-index: 3;
}

.landing-footer .bg-footer {
    position: absolute;
    inset: 0;
}

.landing-footer .item {
    top: 33px;
    right: 9.2%;
}

@media (max-width: 991px) {
    .landing-footer .item {
        display: none;
    }
}

@media (max-width: 767px) {
    .landing-footer .content {
        padding-top: 0;
    }
}

.main-landing .intro-title span::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.main-landing .intro-title span.type-2 {
    color: var(--white);
}

.main-landing .intro-title span.type-2::after {
    background: linear-gradient(180deg, #00DE51 0%, rgba(0, 222, 81, 0.4) 100%);
}

/*# sourceMappingURL=styles.css.map */