﻿@charset "UTF-8";
/**
  * Name: Vineta - Multipurpose eCommerce HTML Template
  * Version: 1.0.1
  * Author: Themesflat
  * Author URI: http://www.themesflat.com
*/
@import "responsive.css";
@import "animate.css";
@import "swiper.css";
@import "../dist/font-awesome.css";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import "bootstrap.css";

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

html {
    scroll-behavior: smooth;
}

.main-header .logo-box {
    position: relative;
    z-index: 10;
}

.main-header .logo-box .logo img {
    display: inline-block;
    max-width: 100%;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .logo-box .logo {
    position: relative;
}

.main-header .header-lower {
    position: relative;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-header .header-lower .inner-container {
    padding: 0 60px;
}

.main-header .header-lower .nav-outer {
    position: relative;
}

/* Main Menu */
.main-header .main-menu {
    position: relative;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-menu .navbar-collapse {
    padding: 0px;
    display: block;
}

.main-header .header-lower .main-menu .navigation {
    position: relative;
}

.main-header .main-menu .navigation>li {
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    margin-right: 64px;
}

/*Sticky Header*/
.main-header .main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    color: #fff;
    text-transform: capitalize;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation .label {
    position: absolute;
    top: -7px;
    left: 100%;
    padding: 2px 6px;
    border-radius: 99px;
    background-color: #A42EFF;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    line-height: 12.6px;
}

.main-header .navigation>li:last-child {
    margin-right: 0 !important;
}

.main-header .sticky-header .navigation>li {
    position: relative;
}

.main-header .sticky-header .navigation>li:last-child {
    margin-right: 0;
}

.main-header .navigation>li>a:hover {
    opacity: 1;
    color: rgba(228, 49, 49, 1);
}

/*** 

====================================================================
	Mobile Menu
====================================================================

***/
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    background: #000;
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.08);
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
}

.mobile-menu .bottom-canvas {
    padding: 30px 20px 30px;
}

.mobile-menu-visible {
    overflow: hidden;
}

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

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -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;
}

.mobile-menu-visible .mobile-menu .menu-box {
    left: 0px;
    -webkit-overflow-scrolling: touch;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease 0s;
    visibility: hidden;
    opacity: 0;
}

.mobile-menu .menu-box {
    position: absolute;
    left: -300px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background-color: #fff;
    z-index: 5;
    border-radius: 0px;
    -webkit-overflow-scrolling: touch;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
}

.close-btn::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    font-size: 33px;
    font-weight: 100;
}

.mobile-menu-visible .close-btn {
    visibility: visible;
    opacity: 1;
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li.dropdown2 .dropdown2-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    text-align: end;
    line-height: 44px;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown2 .dropdown2-btn::before {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 600;
    color: #120A21;
}

.mobile-menu .navigation li.dropdown2>ul li a {
    border-bottom: unset;
}

.mobile-menu .navigation li.dropdown2 .dropdown2-btn span {
    opacity: 0;
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
    background: #FFE7EC;
    padding: 15px 20px;
    border-radius: 10px;
}

.mobile-menu .navigation li>ul>li,
.mobile-menu .navigation li>ul>li>ul>li {
    margin-bottom: 0;
}

.mobile-menu .navigation li>ul>li>a,
.mobile-menu .navigation li>ul>li>ul>li>a {
    padding: 7px 0px !important;
    font-size: 14px !important;
    font-weight: 500;
}

.mobile-menu .navigation li>ul>li>ul {
    padding-left: 15px;
}

.mobile-menu .navigation li>ul>li>ul>li>a {
    padding-left: 40px;
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    font-weight: 600;
    line-height: 24px;
    margin: 0 !important;
    padding: 10px 0px;
    font-size: 15px;
    color: #120A21;
    text-transform: capitalize;
}

.mobile-menu .navigation li>a .label {
    display: none;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: rgba(228, 49, 49, 1);
}

.mobile-menu .menu-outer {
    margin-bottom: 30px;
}

.main-header .sticky-header .navbar-header {
    display: none;
}

.main-header .outer-box {
    position: relative;
}

.main-header .sticky-header .main-menu .navigation>li>a {
    padding: 22px 0px;
}

.mobile-button {
    display: none;
    width: 26px;
    height: 26px;
    float: right;
    top: 50%;
    right: 15px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0s ease;
    -webkit-transform: translateY(-0%);
    -ms-transform: translateY(-0%);
    -o-transform: translateY(-0%);
    transform: translateY(-0%);
}

.mobile-button::before,
.mobile-button::after,
.mobile-button span {
    background-color: #4A885C;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.mobile-button::before,
.mobile-button::after {
    content: "";
    position: absolute;
    top: 0;
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.mobile-button span {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    overflow: hidden;
    text-indent: 200%;
}

.mobile-button::before {
    -webkit-transform: translate3d(0, -9px, 0);
    -moz-transform: translate3d(0, -9px, 0);
    transform: translate3d(0, -9px, 0);
}

.mobile-button::after {
    -webkit-transform: translate3d(0, 9px, 0);
    -moz-transform: translate3d(0, 9px, 0);
    transform: translate3d(0, 9px, 0);
}

.mobile-button.active span {
    opacity: 0;
}

.mobile-button.active::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.mobile-button.active::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.mobile-button.mobi-style::before,
.mobile-button.mobi-style::after,
.mobile-button.mobi-style span {
    background-color: #fff;
}
/**
  	* Reset Browsers
	* Elements
  	* Forms
	* Typography
	* Extra classes
	* link style
    * search
    * Header Fixed
    * Pagination
    * Scroll Top
    * PreLoad
    * heading 
    * dropdown
    * progress bar
    * map
    * up load 
    * price range 
*/
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;
}

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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
}

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

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

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

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

.center {
    text-align: center;
}

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

.container-1 {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-2 {
    max-width: 1640px;
    width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
}

textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
    border: 1px solid #FFFFFF1A;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    padding: 6px 6px;
    width: 100%;
    background: #FFFFFF1A;
    color: #fff;
    backdrop-filter: blur(12px);
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
    color: #4D4E4F;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    -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;
}

/* Placeholder color */
::-webkit-input-placeholder {
    color: #8A8AA0;
}

:-moz-placeholder {
    color: #8A8AA0;
}

::-moz-placeholder {
    color: #8A8AA0;
    opacity: 1;
}

.error {
    font-size: 16px;
    color: #120A21;
    margin-bottom: 10px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
    color: #8A8AA0;
}

/* Typography
-------------------------------------------------------------- */

.font-Plus-Jakarta-Sans {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

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

.title-display {
    font-size: 80px;
    line-height: 88px;
}

h1,
.h1 {
    font-size: 48px;
    line-height: 77px;
}

h2,
.h2 {
    font-size: 44px;
    line-height: 50px;
}

h3,
.h3 {
    font-size: 40px;
    line-height: 48px;
}

h4,
.h4 {
    font-size: 30px;
    line-height: 42px;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 30px;
}

h6,
.h6 {
    font-size: 20px;
    line-height: 28px;
}

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

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

.text-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.text-button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.text-btn-uppercase {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.text-btn-uppercase2 {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.text-caption-1 {
    font-size: 14px;
    line-height: 22px;
}

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

.light_skew_hover {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.light_skew_hover:after {
    background-image: linear-gradient(90deg, transparent, rgba(59, 222, 185, 1), transparent);
    content: "";
    left: 150%;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    width: 200%;
    z-index: -1;
}

.light_skew_hover.type-white:after {
    background-image: linear-gradient(90deg, transparent, rgb(255 255 255 / 38%), transparent);
    content: "";
    left: 150%;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    width: 200%;
    z-index: -1;
}

.light_skew_hover:hover::after {
    -webkit-animation: shine .75s cubic-bezier(.01, .56, 1, 1);
    animation: shine .75s cubic-bezier(.01, .56, 1, 1);
}

@keyframes shine {
    100% {
      left: -200%;
    }
}

.tf-btn-1 {
    font-weight: 700;
    font-size: 14px;
    line-height: 17.64px;
    padding: 15px 36px;
    border-radius: 99px;
    background-color: #4A885C;
}

.tf-btn-2 {
    font-weight: 700;
    font-size: 14px;
    line-height: 17.64px;
    padding: 14px 35px;
    border-radius: 99px;
    background-color: #575757;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-btn-3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 17.64px;
    padding: 14px 59px;
    border-radius: 99px;
    background-color: transparent;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-btn-3.px-39 {
    padding-left: 39px;
    padding-right: 39px;
}

.tf-btn-4 {
    padding: 15px 36px;
    border-radius: 99px;
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    /* animation: bghover 5s linear infinite;
    background-size: 400% 400%; */
}

.tf-btn-4:hover {
    color: #000000;
}

.tf-btn {
    padding: 16px 40px;
    background: linear-gradient(270deg, #C3105F 0%, #3073DF 98.88%);
    border-radius: 99px;
    position: relative;
    white-space: nowrap;
    border: 0;
    /* animation: bghover 5s linear infinite;
    background-size: 400% 400%; */
}

.tf-btn * {
    position: relative;
    z-index: 5;
}

.tf-btn.style-fill {
    padding: 15px 39px;
    background: transparent !important;
    border: 1px solid rgba(228, 49, 49, 1);
}

.tf-btn.style-fill:hover {
    background: rgba(228, 49, 49, 1) !important;
}

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

/* Extra classes
-------------------------------------------------------------- */
.msg-success {
    background: linear-gradient(to right, #E250E5, #4B50E6, #E250E5);
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 700;
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    transition: color 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

label.error {
    color: red;
}

.shaw-box {
    padding: 50px;
    margin: -50px;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.center,
.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.flex-none {
    flex: none !important;
}

.text-t {
    text-transform: capitalize;
}

.text-u {
    text-transform: uppercase;
}

.text-unset {
    text-transform: unset !important;
}

.text-line {
    text-decoration-line: underline !important;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.justify-space {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.text-end {
    text-align: end;
}

.font-italic {
    font-style: italic;
}

.show-boder {
    margin-top: -140px !important;
    padding-top: 140px !important;
}

#wrapper {
    position: relative;
    max-width: 100%;
    height: 100%;
}

.wrapper-style {
    background: #FAF8FF;
}

button {
    cursor: pointer;
}

.fw-1 {
    font-weight: 100;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fw-8 {
    font-weight: 800;
}

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

.fs-13 {
    font-size: 13px;
}

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

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

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

.fs-22 {
    font-size: 22px;
}

.fs-26 {
    font-size: 26px;
}

.fs-30 {
    font-size: 30px;
}

.fs-40 {
    font-size: 40px;
}

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

.br-10 {
    border-radius: 10px;
}

.tf-section {
    padding: 100px 0;
    position: relative;
}

.tf-section1 {
    padding: 40px 0;
    position: relative;
}

.tf-section2 {
    padding: 100px 0 72px 0;
}

.tf-section3 {
    padding: 100px 0 68px 0;
}

.bg-1 {
    background-color: #F5F5F5;
}

.bg-white {
    background-color: #fff;
}

.img-border {
    border-radius: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr_24 {
    margin-right: -24px;
}

.gap-10 {
    gap: 10px;
}

.gap-60 {
    gap: 60px;
}

.mw-382 {
    max-width: 382px;
}

.mw-398 {
    max-width: 398px;
}

.text-green {
    color: #7DB134 !important;
}
.text-red-1 {
    color: #FF8080 !important;
}
.line-1 {
    border: 1px solid #FFFFFF66 !important;
}

.text-gradient {
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
}

.text-gradient.style-1 {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 124.61%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    animation: none;
    background-size: 400% 400%;
}

.text-gradient.style-2 {
    background: linear-gradient(90deg, #72AD66 0%, #FFEDCB 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
}

.text-gradient.style-3 {
    background: linear-gradient(242.03deg, #7DD350 0%, #C0F899 42.22%, #E2FC4D 88.12%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
}

.text-gradient.style-4 {
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 124.61%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
}

.text-gradient.style-5 {
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    color: #000;
    background-size: 100% 100%;
    -webkit-text-fill-color: #000;
    -webkit-background-clip: text;
    -webkit-text-stroke: 3px transparent;
}

.animation-none {
    animation-name: none !important;
    background-size: 100% 100% !important;
}

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

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

}

/* link style
-------------------------------------------------------------- */
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;
    color: unset;
    -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;
    display: inline-block;
}

a:focus,
a:hover {
    -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;
    outline: 0;
    color: unset;
}

@keyframes rainbow {
    0% {
        background-position: left;
    }

    50% {
        background-position: right;
    }

    100% {
        background-position: left;
    }
}

.text-color-1 {
    color: #fff !important;
}

.text-color-2 {
    color: #000 !important;
}

.text-color-3 {
    color: rgba(228, 49, 49, 1) !important;
}

.text-color-4 {
    color: #8E8E93 !important;
}

.text-color-5 {
    color: #F6F6F6 !important;
}

.text-color-6 {
    color: #FFE7EC !important;
}

.text-color-7 {
    color: #3A3A3C !important;
}

.text-color-8 {
    color: #F1FAEE;
}

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

header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    z-index: 888;
    margin-bottom: -90px;
}

.main-header .main-menu .navigation>li>a {
    margin: 35px 0;
}

header.is-small .header-lower {
    background-color: #12131699;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

/* Scroll Top
-------------------------------------------------------------- */
.button-go {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 99px;
    z-index: 999;
    right: -20px;
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    animation: bghover 5s linear infinite;
    background-size: 400% 400%;
}

.button-go.show {
    right: 80px;
    opacity: 1;
    visibility: visible;
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

body .dribbble {
    position: fixed;
    display: block;
    right: 20px;
    bottom: 20px;
}

body .dribbble img {
    display: block;
    height: 28px;
}

.box-tag {
    position: relative;
    display: flex;
    gap: 10px;
    width: max-content;
    font-weight: 700;
    font-size: 14px;
    line-height: 17.64px;
    padding: 14px 35px;
    background-color: #000;
    border-radius: 99px;
    border: 1px solid transparent;
    z-index: 2;
}

.box-tag::before {
    position: absolute;
    content: '';
    inset: -1px;
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    animation: bghover 5s linear infinite;
    z-index: -2;
    border-radius: 99px;
    background-size: 400% 400%;
}

.box-tag::after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: #000;
    z-index: -1;
    border-radius: 99px;
}

.box-tag span {
    position: relative;
    z-index: 5;
}

.box-tag .eff {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100px;
    z-index: 4;
}

.box-tag .eff::after {
    background-image: linear-gradient(90deg, transparent, rgba(59, 222, 185, 1), transparent);
    content: "";
    left: 150%;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    width: 200%;
    -webkit-animation: shine2 5s cubic-bezier(.01, .56, 1, 1) infinite;
    animation: shine2 5s cubic-bezier(.01, .56, 1, 1) infinite;
}

@keyframes shine2 {
    20% {
      left: -200%;
    }
  
    100% {
      left: -200%;
    }
  }

.heading-section {
    margin-bottom: 40px;
    position: relative;
}

.heading-section.mb-60 {
    margin-bottom: 60px;
}

.heading-section >.img-bg {
    position: absolute;
    top: -172px;
    left: -205px;
    z-index: -1;
}

.heading-section .sub-title {
    margin-bottom: 19px;
}

.heading-section .heading {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 48px;
    line-height: 60.48px;
}

.heading-section p {
    color: #A0A0A0;
}

.heading-section.center .img-bg {
    top: -211px;
    left: 50%;
    transform: translateX(-50%);
}

.heading-section.center .sub-title {
    margin-left: auto;
    margin-right: auto;
}

.heading-section.style-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 15px;
}

.dropdown>a {
    position: relative;
    display: block;
    padding: 0px 13px 0px 0px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    border-radius: 4px;
    color: #fff;
    -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;
    z-index: 10;
}

.dropdown>a::after {
    font-family: "Font Awesome 5 Pro";
    font-size: 10px;
    font-weight: 500;
    content: "\f078";
    position: absolute;
    color: #fff;
    right: 0px;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dropdown>a ul {
    position: absolute;
}

.seclect-box.style-2 .dropdown>a:after {
    right: 15px;
}

.dropdown ul.show {
    opacity: 1;
    position: absolute;
    width: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(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;
}

.dropdown li {
    border-top: 0.5px solid rgba(122, 121, 138, 0.1);
    background: #fff;
    color: #000;
    width: 100%;
    padding: 9px 10px 8px 16px;
    list-style: none;
    display: inline-block;
    margin: 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;
    font-size: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.dropdown .country {
    position: absolute;
    z-index: 99;
    margin-left: 13px;
    margin-top: 5px;
    color: #818089;
}

.dropdown ul,
.dropdown li.active,
.dropdown ul,
.dropdown li:hover {
    background: #e0e0e0;
}

.dropdown.style-2 ul {
    min-width: 100px;
}

/* home box */
.home-box {
    position: relative;
    margin-bottom: 23px;
    border-radius: 20px;
    padding: 1px;
}

.home-box::before {
    position: absolute;
    content: '';
    inset: 0px;
    border-radius: 20px;
    background: #3c3c3c;
    z-index: 1;
}

.home-box::after {
    position: absolute;
    content: '';
    inset: 0;
    opacity: 0;
    border-radius: 20px;
    background: linear-gradient(294.64deg, #3BDEB9 0%, #77E590 50%, #CCFF9B 100%);
    z-index: 2;
    transition: all 0.3s linear;
}

.home-box.active {
    padding: 2px;
}

/* .home-box.active .innerbox {
    padding: 29px 18px 22px;
} */

.home-box.active::after,
.home-box:hover::after {
    opacity: 1;
}

.home-box .innerbox {
    padding: 30px 18px 23px;
    position: relative;
    z-index: 5;
    background: #121212;
    border-radius: 20px;
}

.home-box .dot {
    position: absolute;
    top: 12px;
    left: 18px;
    display: flex;
    gap: 8px;

}

.home-box .dot span {
    display: flex;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D9D9D9;
}

.home-box .thumb {
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.12);
    overflow: hidden;
}

.home-box .thumb .image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    aspect-ratio: calc(430 / 405);
}

.home-box .thumb .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-box .thumb .image::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 94.74%);
    transition: 0.3s all linear;
}

.home-box:hover .thumb .image::after {
    top: 40%;
}

.home-box .thumb .demo-full-link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    right: 20px;
    transform: translateX(-50%);
    width: max-content;
    opacity: 0;
    transition: 0.3s all linear;
}

.home-box:hover .thumb .demo-full-link {
    opacity: 1;
    bottom: 20px;
}

.home-box .content {
    display: flex;
    align-items: center;
    gap:  5px;
}

.home-box .title-box {
    flex-grow: 1;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.home-box .title-box:hover {
    color: #4A885C;
}

.home-box .tags {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.home-box .tag-item {
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}

.home-box .tag-item.tag-hot {
    background-color: #6BC044;
}

.home-box .tag-item.tag-new {
    background-color: #C06344;
}

.coming-soon .innerbox {
    height: 100%;
    place-content: center;
}

.coming-soon-wrap .text {
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes bghover {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* cursor */

.tfmouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.tfmouseCursor.cursor-outer {
    margin-left: -18px;
    margin-top: -18px;
    width: 35px;
    height: 35px;
    background: rgba(59, 222, 185, 1);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .2;
    transition: all 0.02s ease-out;
}

.tfmouseCursor.cursor-outer.cursor-hover {
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    opacity: .1;
}

.tfmouseCursor.cursor-inner {
    margin-left: -4px;
    margin-top: -4px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: rgba(59, 222, 185, 1);
    transition: width 0.02s ease-in-out, height 0.02s ease-in-out, margin 0.02s ease-in-out, opacity 0.02s ease-in-out;
}

.tfmouseCursor.cursor-inner.cursor-hover {
    opacity: 0;
}

/* animation class */

.ani1 {
    -webkit-animation: ani1 7s infinite linear;
    animation: ani1 7s infinite linear;
}

.ani2 {
    -webkit-animation: ani2 7s infinite linear;
    animation: ani2 7s infinite linear;
}

@keyframes ani1 {

    0%,
    100% {
        transform: translateX(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;
    }

    50% {
        transform: translateX(20px);
        -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;
    }
}

@keyframes ani2 {

    0%,
    100% {
        transform: translateX(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;
    }

    50% {
        transform: translateX(-20px);
        -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;
    }
}

/* preloader */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #ffffff;
    display: table;
    text-align: center;
}

.loader {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    position: relative;
    width: 200px;
    height: 200px;
}

.pulse-loader {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0px auto;
}

.double-bounce3,
.double-bounce4 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(107, 192, 68, 1);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce4 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@keyframes sk-bounce {

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

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.no-padding {
    padding: 0 !important;
}

.font-playfair-display {
    font-family: "Playfair Display" !important;
}

/* hero slider */
.slider {
    position: relative;
    background-image: url(../../assets/images/bg/bg-slider.png);
    background-size: cover;
    background-position: center center;
}

.slider >.item-1 {
    position: absolute;
    z-index: 0;
    top: 61px;
    left: -128px;
    width: 400px;
    
}

.slider >.item-2 {
    position: absolute;
    z-index: 0;
    bottom: 64px;
    right: 48%;
    width: 240px;
}

.slider >.item-3 {
    position: absolute;
    z-index: 0;
    top: 120px;
    right: 67px;
    width: 170px;
}

.item-circle-1 {
    animation: moveleft 10s infinite linear;
}

.item-circle-2 {
    animation: rotate1 10s infinite linear;
    opacity: 0.7;
    filter: blur(1px);
}

.item-circle-3 {
    animation: movedown 10s infinite linear;
}

.rotate1 {
    animation: rotate1 10s infinite linear;
}

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

.zoom {
    animation: zoom 10s infinite linear;
}

@keyframes zoom {
    0% {
      transform: scale3d(1.0, 1.0, 1.0);
    }
    50% {
        transform: scale3d(1.5, 1.5, 1.5);
    }
    100% {
        transform: scale3d(1.0, 1.0, 1.0);
    }
}

.slider .slider-inner {
    position: relative;
    padding: 142px 15px 91px;
    max-width: 1736px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 40px 30px;
}

.slider .inner-content {
    padding-left: 70px;
    padding-top: 80px;
}

.slider .inner-content .sub-title {
    margin-bottom: 27px;
}

.slider .inner-content .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 84px;
    margin-bottom: 18px;
}

.slider .inner-content .text {
    margin-bottom: 54px;
}

.slider .bot-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.slider .bot-icon {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slider .swiper-wrap {
    max-width: 791px;
    height: 729px;
    margin-right: unset;
}

.slider .swiper-wrap .image {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.slider .swiper-wrap .image img {
    width: 100%;
}

.slider .swiper-wrap .swiper-slide {
    position: relative;
}

.slider .swiper-wrap .swiper-slide::after {
    position: absolute;
    content: '';
    inset: 0;
    background: #00000099;
    transition: all 0.3s linear;
}

.slider .swiper-wrap .swiper-slide-next::after,
.slider .swiper-wrap .swiper-slide-prev::after {
    background: #00000033;
}

.slider .swiper-wrap .swiper-slide-active::after {
    background: transparent;
}

.slider .swiper-wrap .swiper-button-next,
.slider .swiper-wrap .swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #6F6D6DCC;
    border-radius: 13px;
    border: 1px solid #fff;
    transition: all 0.3s linear;
}

.slider .swiper-wrap .swiper-button-next:hover,
.slider .swiper-wrap .swiper-button-prev:hover {
    background-color: #4A885C;
}

.slider .swiper-wrap .swiper-button-next::after,
.slider .swiper-wrap .swiper-button-prev::after {
    display: none;
}

/* section-marquee */
.section-marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.section-marquee::after {
    position: absolute;
    content: '';
    width: 100%;
    max-width: 1320px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(170, 244, 150, 0) 0%, #9DF095 50%, rgba(143, 236, 147, 0) 100%);
}

.section-marquee::before {
        position: absolute;
    content: '';
    width: 100%;
    max-width: 1320px;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(170, 244, 150, 0) 0%, #9DF095 50%, rgba(143, 236, 147, 0) 100%);
}

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

.section-marquee .marquee-wrapper:hover {
    animation-play-state: paused !important;
}

.section-marquee .marquee-child-item {
    padding-left: 30px;
    padding-right: 30px;
    display: inline-flex;
}

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

.section-marquee-1 .text-1 {
    font-family: "Playfair Display";
    font-weight: 400;
    font-style: italic;
    font-size: 96px;
    line-height: 128px;
    text-align: center;
}

/* card demo */
.section-demo {
    padding-top: 119px;
    position: relative;
    overflow: hidden;
}

.section-demo .heading-section .heading {
    margin-top: -21px;
}

.section-demo .heading-section > svg {
    max-width: 100%;
}

.menu-tab-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: max-content;
    padding: 4px;
    border-radius: 15px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 58px;
    overflow-x: auto;
}

.menu-tab-line::-webkit-scrollbar {
    height: 4px;
}

.menu-tab-line a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #00000099;
    width: max-content;
    min-width: 193px;
    padding: 15px 17px;
    border-radius: 11px;
    overflow-x: auto;
    overflow-y: hidden;
}

.menu-tab-line a.active {
    background: linear-gradient(97.32deg, #866FE3 0%, #4A885C 100%);
    box-shadow: 2px 2px 8px 0px #00000040 inset;
    color: #FFFFFF;
}

.posttype-filter2,
.posttype-filter1,
.posttype-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    overflow-x: auto;
}

.posttype-filter2::-webkit-scrollbar,
.posttype-filter1::-webkit-scrollbar,
.posttype-filter::-webkit-scrollbar {
    height: 0px;
}

.posttype-filter2 li,
.posttype-filter1 li,
.posttype-filter li {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 99px;
    padding: 2px;
}

.posttype-filter2 a,
.posttype-filter1 a,
.posttype-filter a {
    position: relative;
    padding: 10px 23px;
    color: #fff;
    border-radius: 99px;
    background: #292929B2;
    border: 1px solid #707070;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

.posttype-filter2 li:hover a,
.posttype-filter2 li.active a,
.posttype-filter1 li:hover a,
.posttype-filter1 li.active a,
.posttype-filter li:hover a,
.posttype-filter li.active a {
    background-color: #4A885C;
    border-color: #4A885C;
}

/* tabs */
.flat-animate-tab {
    overflow: hidden;
}

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

/* mobile */
.section-mobile {
    position: relative;
    overflow: hidden;
    padding-top: 188px;
    padding-bottom: 100px;
}

.section-mobile >.item-1 {
    position: absolute;
    width: 171px;
    height: 170px;
    top: 85px;
    right: 30%;
}

.section-mobile .heading-section {
    margin-bottom: 50px;
}

.section-mobile .heading-section .sub-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 4px;
} 

.section-mobile .heading-section .heading {
    position: relative;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 64px;
    line-height: 81px;
}

.section-mobile .heading-section .heading div {
    position: absolute;
    left: -128px;
    top: 50%;
    transform: translateY(-68%);

}

.section-mobile .heading-section .heading img {
    animation: move1 3s infinite linear alternate;
}

@keyframes move1 {
    0% {
      -webkit-transform: translate(0);
      transform: translate(0);
    }
    100% {
        -webkit-transform: translate(20px, 7px);
        transform: translate(20px, 7px);
    }
}

.section-mobile .heading-section .heading1 {
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 24px;
}

.mobile-view-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.mobile-view-wrap .box-bg {
    position: absolute;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: 942px;
    height: 387px;
    background: rgb(105 163 77 / 40%);
    filter: blur(100px);
}

.mobile-view-item {
    display: flex;
    flex: 0 0 calc(25% - 29px);
}

.mobile-view-item .wrap-video {
    position: relative;
    display: flex;
    padding: 14px;
    background-color: #303030;
    border-radius: 24px;
}

.mobile-view-item .wrap-video video {
    border-radius: 17px;
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* features */
.section-features {
    position: relative;
    overflow: hidden;
    padding-top: 162px;
}

.section-features .heading-section >.img-bg {
    width: 367px;
}

.section-features .img-item {
    position: absolute;
    right: -232px;
    top: 30%;
    width: 640px;
}

.feature-box {
    border-radius: 10px;
    background: #292929B2;
    border: 1px solid #3c3c3c;
    backdrop-filter: blur(4px);
    padding-top: 24px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    overflow: hidden;
    transition: all 0.3s linear;
}

.feature-box.pt-37 {
    padding-top: 37px;
}

.feature-box:hover {
    border-color: #77E590;
}

.feature-box .content {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.feature-box .content .sub {
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    text-align: center;
}

.feature-box .content .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 9px;
}

.feature-box .content p {
    color: #A0A0A0;
}

.feature-box.style-row {
    display: flex;
    justify-content: center;
    row-gap: 20px;
}

.feature-box.type-1 .image {
    padding-top: 45px;
}

/* section-packed */
.section-packed .packed-wrap .box-icon-item {
    position: relative;
}

.section-packed .packed-wrap .box-icon-item:not(:last-child)::after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(94, 94, 94, 0) 0%, #5E5E5E 50%, rgba(94, 94, 94, 0) 100%);
    width: 1px;
    height: 112px;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.wrap-grid-box {
    display: grid;
    gap: 40px 20px;
}

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

.box-icon-item .wrap-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.box-icon-item .wrap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(36, 39, 78, 1);
    position: relative;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.box-icon-item .wrap-icon::before {
    position: absolute;
    content: '';
    inset: 0 0;
    z-index: 1;
    background: linear-gradient(270deg, #C3105E 0%, #BDFFF5 48.94%, #9978FA 98.88%) !important;
    background-size: 100% 100% !important;
    border-radius: 50%;
    -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;
}

.box-icon-item:hover .wrap-icon::before {
    background-size: 200% 200% !important;
}

.box-icon-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 34px;
    transition: all 0.5s linear;
}

.box-icon-item:hover .icon {
    transform: rotateY(180deg);
}

.box-icon-item p {
    color: rgba(255, 255, 255, 0.7);
}

.wrap-grid-box.style-1 {
    gap: 20px 60px;
}

/* section-help */
.box-icon-item.style-1 .wrap-icon {
    margin: 0;
}

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

.box-icon-item.style-1 {
    display: flex;
    gap: 20px 28px;
}

.box-icon-item.style-1 .btns-link {
    text-decoration: underline;
}

.box-icon-item.style-1 .btns-link:hover {
    color: rgba(228, 49, 49, 1);
}

.ani-y {
    animation: movedown 3s infinite linear alternate;
}

@keyframes movedown {
    0% {
      -webkit-transform: translate(0);
      transform: translate(0);
    }
    50% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.ani-x {
    animation: moveleft 3s infinite linear alternate;
}

@keyframes moveleft {
    0% {
      -webkit-transform: translate(0);
      transform: translate(0);
    }
    50% {
        -webkit-transform: translate(-40px);
        transform: translate(-40px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.section-developed {
    padding: 172px 0 0;
}

.section-developed .boost-features-wrap, 
.section-developed .maximum-wrap, 
.section-developed .made-by-wrap, 
.section-developed .wrap-content {
    margin-bottom: 28px;
    height: calc(100% - 28px);
}

.list-icon {
    display: flex;
    gap: 15px 38px;
    flex-wrap: wrap;
}

.made-by-wrap {
    position: relative;
    border-radius: 20px;
    border: 1px solid #707070;
    background-color: #15100D;
    padding: 67px 15px 55px;
    text-align: center;
    overflow: hidden;
}

.made-by-wrap::before {
    position: absolute;
    content: '';
    top: 14px;
    max-width: 100%;
    width: 275px;
    height: 275px;
    left: 50%;
    transform: translateX(-50%);
    background: #E182464D;
    filter: blur(157px);
}

.made-by-wrap .image {
    position: relative;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    background-color: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 58px;
    margin-left: auto;
    margin-right: auto;
}

.made-by-wrap .image::after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: #232323;
    border-radius: 50%;
    z-index: 0;
}

.made-by-wrap .image::before {
    position: absolute;
    content: '';
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F38844 0%, #FFCBCB 100%);
    z-index: 0;
}

.made-by-wrap .image img {
    position: relative;
    z-index: 5;
}

.made-by-wrap .desc {
    position: relative;
    z-index: 7;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.made-by-wrap .desc .text {
    font-weight: 700;
    font-size: 32px;
    line-height: 44.8px;
    color: #F38844;
}

.made-by-wrap .desc .text1 {
    color: #78B203;
}

.maximum-wrap {
    position: relative;
    padding: 53px 35px 40px;
    border-radius: 20px;
    border: 1px solid #707070;
    background-image: url(../../assets/images/item/bg-maximum.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.maximum-wrap .img-item {
    position: absolute;
    top: -91px;
    right: -2px;
}

.maximum-wrap .heading {
    font-weight: 800;
    font-size: 36px;
    line-height: 50.4px;
    margin-bottom: 19px;
    max-width: 345px;
    position: relative;
    z-index: 5;
}

.maximum-wrap .desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 36px;
    max-width: 376px;
    position: relative;
    z-index: 5;
}

.box-performance {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 15.5px 62px 11.5px 66px;
    background-color: #06060699;
    border: 1px solid #A1A1A1;
    width: max-content;
    border-radius: 14px;
    position: relative;
    z-index: 5;
}

.line {
    width: 1px;
    height: 45px;
    background-image: linear-gradient(0deg, rgba(82, 82, 82, 0) 0%, #C3C3C3 50%, rgba(82, 82, 82, 0) 100%);
}

.box-performance .text {
    background: linear-gradient(90deg, #72AD66 0%, #FFEDCB 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 64px;
    line-height: 89.6px;
}

.box-performance .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 16.8px;
}

.box-performance .counter {
    display: flex;
    font-weight: 700;
    font-size: 36px;
    line-height: 50.4px;
    background: linear-gradient(90deg, #72AD66 0%, #FFEDCB 100%);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0px transparent;
    -webkit-text-fill-color: transparent;
}

.box-performance .counter .number {
    display: flex;
    min-width: 50px;
}

.tf-brand.style-1 {
    gap: 60px;
}

.tf-brand.style-2 {
    gap: 10px;
}

.tf-brand.style-3 {
    gap: 30px;
}

.boost-item {
    background-color: #414141 !important;
    border: 1px solid #595959;
    padding: 12px 18px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.boost-features-wrap {
    position: relative;
    padding: 77px 0 63px;
    border-radius: 20px;
    border: 1px solid #4B4B4B;
    overflow: hidden;
}

.boost-features-wrap::before {
    position: absolute;
    content: '';
    inset: 0;
    background-image: url(../../assets/images/item/bg-boost-features.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: -2;
}

.boost-features-wrap .brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 52px;
}

.boost-features-wrap .text {
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    padding: 0 15px;
}

/* section-innerpage */
.section-innerpage {
    padding-top: 136px;
}

.section-innerpage .heading-section.center {
    margin-bottom: 49px;
}

.section-innerpage .heading-section.center .sub-title {
    margin-bottom: 22px;
}

.section-innerpage .brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.section-innerpage .brand-wrap::after {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 15.87%, rgba(0, 0, 0, 0) 85.97%, #000000 100%);
}

.section-innerpage .brand-wrap .brand-item {
    width: 420px;
    border-radius: 10px;
    overflow: hidden;
}

/* section-get */
.section-get {
    padding: 156px 0 123px;
    position: relative;
}

.section-get > .item-1 {
    position: absolute;
    width: 118px;
    top: 92px;
    left: 50%;
}

.section-get > .item-2 {
    position: absolute;
    width: 199px;
    bottom: 125px;
    left: 45%;
    z-index: -1;
}

.section-get > .item-3 {
    position: absolute;
    width: 246px;
    right: 69px;
    top: 69px;
}

.section-get .heading-section .heading {
    margin-bottom: 35px;
}

.section-get .content {
    padding-top: 54px;
}

.section-get .content .heading1 {
    position: relative;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    display: flex;
    gap: 3px;
    align-items: center;
    max-width: 476px;
}

.section-get .content .heading1 span {
    height: 2px;
    flex-grow: 1;
    transform: translateY(2px);
    background-color: #fff;
}

.section-get .heading-section {
    margin-bottom: 40px;
}

.matter-box {
    max-width: 664px;
    height: 469px;
    margin-left: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.matter-box::before {
    position: absolute;
    content: '';
    inset: -1px -1px 0px -1px;
    background-image: url(../../assets/images/bg/bg-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

.matter-box canvas {
    overflow: hidden;
    border: none !important;
    margin: 0;
    padding: 0;
    display: block; 
    box-sizing: border-box;
    display: block;
    border-radius: 28px;
    padding-bottom: 1px;
}

/* section-faqs */
.section-faqs {
    position: relative;
    overflow: hidden;
    padding-top: 134px;
    padding-bottom: 160px;
}

.section-faqs > img {
    position: absolute;
    right: -232px;
    top: 120px;
    width: 640px;
    z-index: -1;
}

.section-faqs .heading-section {
    margin-bottom: 52px;
}

.accordion-wrap {
    display: flex;
    gap: 20px;
    flex-direction: column;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-wrap .accordion-item {
    position: relative;
    background: #292929B2;
    border: 1px solid #707070;
    border-radius: 10px;
}

.accordion-wrap .accordion-item .accordion-title {
    padding: 29px;
    width: 100%;
}

.accordion-wrap .accordion-item .accordion-title .text {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #9B9B9B;
    transition: all 0.3s linear;
}

.accordion-wrap .accordion-item .accordion-title:not(.collapsed) .text {
    color: #fff;
}

.accordion-wrap .accordion-item .accordion-title span {
    position: absolute;
    top: 29px;
    right: 29px;
    display: flex;
    transition: all 0.3s linear;
    z-index: 5;
    transform: rotate(0deg);
}

.accordion-wrap .accordion-item .accordion-title:not(.collapsed) span {
    transform: rotate(180deg);
}

.accordion-wrap .accordion-item .accordion-faqs-content {
    padding-top: 16px;
    transition: all 0.3s linear;
}

.accordion-wrap .accordion-item .accordion-faqs-content p {
    color: #CBCBCB;
}

.section-exclusive {
    padding-bottom: 80px;
}

.section-exclusive .heading-section {
    margin-bottom: 48px;
}

.exclusive-wrap {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1182px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-item {
    flex: 0 0 auto;
    max-width: 378px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 9px;
    background-color: #292929B2;
    border-radius: 99px;
    border: 1px solid #2E2E2E;
}

.exclusive-item .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid #7A910B;
}

.exclusive-item .image img {
    max-width: 33px;
}

.exclusive-item .text {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
}

/* section-unlock */
.section-unlock {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.section-unlock > .item-1 {
    position: absolute;
    top: -50%;
    left: -76px;
    z-index: -1;
    width: 367px;
}

.section-unlock-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    background-color: #202020;
    border: 1px solid #7A910B;
    overflow: hidden;
}

.section-unlock-wrap > img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-unlock-wrap .content {
    padding: 61px 0 53px 61px;
    max-width: 619px;
}

.section-unlock-wrap .heading-section .heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 40.32px;
}

.section-unlock-wrap .heading-section p {
    margin-bottom: 40px;
}

.section-unlock-wrap .image {
    flex-grow: 1;
    text-align: end;
    position: relative;
    padding: 46px 101px 20px 0px;
}

.section-unlock-wrap .image .item-1 {
    position: absolute; 
    top: -26px;
    left: 0;
    background-color: #ED6B6B96;
    filter: blur(100px);
    width: 180px;
    height: 180px;
}

.section-unlock-wrap .image .item-2 {
    position: absolute; 
    bottom: -90px;
    left: 92px;
    background: #6BA3ED96;
    filter: blur(100px);
    width: 180px;
    height: 180px;
}

.section-unlock-wrap .image .item-3 {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #9D6BED96;
    filter: blur(100px);
    width: 180px;
    height: 180px;
}

.section-unlock-wrap .image .item-4 {
    position: absolute; 
    bottom: -94px;
    right: -73px;
    background: #94ED6B96;
    filter: blur(100px);
    width: 147px;
    height: 147px;
}

/* footer */
footer {
    padding: 48px 0 32px;
    text-align: center;
}

footer .line-row {
    width: 100%;
    max-width: 451px;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, rgba(185, 205, 153, 0) 0%, #72AD66 37.04%, #FFEDCB 67.18%, rgba(255, 237, 203, 0) 100%);
    margin-bottom: 48px;
}

footer .text {
    font-weight: 500;
    font-size: 32px;
    line-height: 51px;
    margin-bottom: 18px;
}

footer .text-1 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 27px;
    color: #A0A0A0;
}

footer .btn-buy {
    margin-bottom: 82px;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    display: flex;
    gap: 10px;
    align-items: center;
}

footer .line-row1 {
    width: 100%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, rgba(170, 244, 150, 0) 0%, #9DF095 50%, rgba(143, 236, 147, 0) 100%);
    margin-bottom: 32px;
}

footer .copyright {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #A0A0A0;
}

footer .copyright a:hover {
    color: #4A885C !important;
}