/*!
Theme Name: twentyfourkarat
Theme URI: https://24karat.io/
Author: Underscores.me
Author URI: https://24karat.io/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: twentyfourkarat
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== Reset CSS ========== */

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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: var(--font-inter);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ========== Common CSS ========== */

:root {
    --font-inter: 'Inter', sans-serif;

    --primary: #FFFFFF;
    --secondary: #FF3875;
    --accent: #463488;

    --neutral-black: #222222;
    --neutral-gray: #AAAAAA;
    --neutral-white: #F5F5F5;

    --system-error: #E8094B;
    --system--success: #008821;

    --container: 1084px;
}

.text-secondary {
    color: var(--secondary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 20px;
    color: #5C5E64;
}

/* Typography */

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

h1 {
    font-size: 64px;
    line-height: 77px;
}

h2 {
    font-size: 40px;
    line-height: 48px;
}

h3 {
    font-size: 32px;
    line-height: 39px;
}

h4 {
    font-size: 24px;
    line-height: 29px;
}

.subtitle1 {
    font-size: 24px;
    line-height: 36px;
}

.subtitle2 {
    font-size: 20px;
    line-height: 30px;
}


button {
    background: transparent;
    border: 0;
}

button:hover {
    cursor: pointer;
}

.button {
    font-size: 16px;
    line-height: 19px;
    background: var(--secondary);
    padding: 17px 60px;
    border-radius: 5px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-inter);
    display: inline-block;
}

/* button:hover, */
.button:hover {
    background-color: #B52853;
}


.body1 {
    font-size: 20px;
    line-height: 30px;
}

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

.caption, .footer li {
    font-size: 14px;
    line-height: 21px;
}

.text-gradiant {
    background: linear-gradient(to right, #463488, #FF3875);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.text-accent {
    color: var(--accent);
}

/* Container */

.container {
    max-width: var(--container);
    margin: 0 auto;
}

.margin-auto {
    margin: 0 auto;
}

/* Flex */

.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-initial {
    flex: 0 1 auto;
}

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

.flex-none {
    flex: none;
}

.justify-start {
    justify-content: flex-start;
}

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

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

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

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

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

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

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

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

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

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

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

/* ========== Wordpress CSS ========== */

/* ========== Block Css ========== */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #463488;
    overflow: hidden;
}

#loading svg {
    animation: loadingBounce .5s ease-in infinite alternate;
}

@keyframes loadingBounce {
    0% {
        transform: translateY(-1vw);
    }

    50% {}

    100% {
        transform: translateY(1vw);
    }
}

.loaded {
    animation: loadedAnimation 1s ease-out;
}

@keyframes loadedAnimation {
    0% {
        opacity: 1;
        /* scale: 1; */
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        /* scale: 10; */
        pointer-events: none;
        transform: translateX(-100%);
    }
}

/* Header */

header {
    background-color: var(--accent);
    backdrop-filter: blur(35px);
    height: 68px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    color: #fff;
}

header::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 1px 17px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

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

header .right {
    display: flex;
    align-items: center;
}

header .menu {
    display: flex;
}

header .menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 30px;
    height: 68px;
    line-height: 68px;
    display: inline-block;
    position: relative;
}

header .menu .active::after,
header .menu a:hover::after,
header .menu .current-menu-item a::after {
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: var(--secondary);
    position: absolute;
}

header .lang {
    position: relative;
    z-index: 100;
}

header .lang li {}

header .lang a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    padding: 7px 12px;
    position: static;
    display: block;
    display: flex;
    align-items: center;
}

header .lang img {
    width: 20px !important;
    height: 20px !important;
    object-fit: cover;
    border-radius: 50%;
	margin-top: 4px;
}

header .lang a span {
    margin-left: 0.3em;
    margin-top: 4px;
}

header .lang .current-lang {
    background-color: var(--accent) !important;
    border-radius: 4px !important;
    position: static !important;
    display: block !important;
}

header .lang .current-lang a {
    background-color: var(--accent) !important;
    color: #fff !important;
    border-radius: 4px;
}

header .lang:hover .current-lang a {
    background: #6451a7 !important;
    pointer-events: none;
    cursor: default
}

header .lang .lang-item {
    position: absolute;
    display: none;
    background-color: #fff;
    color: var(--accent);
    top: 100%;
    width: 70px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

header .lang .lang-item a {
    background-color: #fff;
    color: var(--accent);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

header .lang:hover .lang-item {
    display: block;
}

header .mobile-menu {
    display: none;
}

header .contact-mobile {
	margin-top: 12px;
	margin-left: 12px;
}

header .contact-desktop {
	margin-left: 12px;
	display: none;
}

@media screen and (min-width: 767px) {
	header .contact-mobile {
		display: none;
	}
	
	header .contact-desktop {
		display: block;
	}
}

/* Intro  */
#gradient-canvas {
    --gradient-color-1: #A25EFC;
    --gradient-color-2: #EC9CFF;
    --gradient-color-3: #2F3294;
    --gradient-color-4: #A06BBB;
    --gradient-color-4: #8BB0FF;
    background: var(--accent);

    width: 100%;
    height: 100%;

    z-index: -1;

    position: absolute;
}

.intro {
    position: relative;
    color: var(--primary);
    overflow: hidden;
}

.intro .container {
    padding: 120px 0 180px 0;
    display: flex;
}

.intro .left {
    width: 552px;
    flex: none;
    margin-right: 0px;
}

.intro .right {
    width: 100%;
}

.intro h1 {
    margin-bottom: 40px;
}

.intro .body1 {
    margin-bottom: 40px;
}

.intro img {
    max-height: 600px;
    max-width: inherit;
}

/* .intro div {
    overflow: hidden;
} */

.statistic .wrap {
    background: #FAFAFA;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transform: translateY(-60px);
    display: flex;
}

.statistic .item {
    padding: 24px;
    text-align: center;
    font-weight: 700;
    width: 33.3333333%;
}

.statistic .item:not(:last-child) {
    border-right: 1.5px solid #D3D3D3;
}

.statistic h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 12px;
}

.statistic p {
    font-size: 24px;
    line-height: 29px;
}

.brand-about-bg {
    background-image: url(images/about-bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.brand {
    display: flex;
    flex-wrap: nowrap;
    animation: swipe 50s linear infinite backwards;
    -webkit-animation: brandSwipe 50s linear infinite backwards;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 80px;
}

.brand:hover {
    animation-play-state: paused;
}

.brand::-webkit-scrollbar {
    display: none;
    width: 0px;
    height: 0px;
}

@keyframes brandSwipe {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-200%);
    }
}

.brand a:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.brand img {
    height: 100px;
    max-width: fit-content;
    margin: 0 40px;
}


.about {
    padding-bottom: 120px;
}

.about .header {
    margin-bottom: 50px;
}

.about h2 {
    margin-bottom: 24px;
}

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

.about .text-gradiant1 {
    background: linear-gradient(to right, #463488, #953680);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.about .text-gradiant2 {
    background: linear-gradient(to right, #953680, #FF3875);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.about .text-gradiant2 {
    position: relative;
}

.about .text-gradiant2::after {
    content: "";
    bottom: -10px;
    left: 0px;
    height: 10px;
    position: absolute;
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    background: linear-gradient(180deg, #FF3875 0%, rgba(217, 217, 217, 0) 162.23%);
    filter: blur(4px);
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 150%;
}

.about .video {
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 160px;
}

.about .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 20px;
}

.about .video .border {
    position: absolute;
    background: linear-gradient(to right bottom, #463488, #FF3875);
    width: calc(100% + 40px);
    height: 100%;
    z-index: 1;
    top: 20px;
    left: -20px;
    border-radius: 21px;
}
.about .video .border::after {
	content: "";
    position: absolute;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #fff;
    border-radius: 20px;
    left: 2px;
}

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

.about .wrap-1 .right {
    padding: 10px;
    position: relative;
    width: 550px;
    margin-left: 30px;
}

.about .wrap-1 .right::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(90deg, #9C37FD, #ED74F8, transparent, transparent, transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about .wrap-1 .right .border {
    position: relative;
    padding: 20px;
}

.about .wrap-1 .right .border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    opacity: .3;
    background: linear-gradient(135deg, #CAB8E1, #9747FF);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about .wrap-1 .right .border .body2 {
    margin-left: 20px;
    padding-left: 30px;
    background-image: url(images/about-icon.png);
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: 0 2px;
}

.about .wrap-1 .right .border div:not(:last-child) {
    margin-bottom: 20px;
}

.about .wrap-2 {
    margin-top: 100px;
    background-image: url(images/about-line.png);
    background-repeat: no-repeat;
    background-position: 26% 125%;
    padding-bottom: 100px;
    display: flex;
}

.about .wrap-2 .left {
    position: relative;
    width: 510px;
    padding-top: 100px;
}

.about .wrap-2 .left .subtitle1 {
    margin-bottom: 20px;
}

.about .wrap-3 {
    display: flex;
    text-align: center;
}

.about .wrap-3 .item {
    width: 33.333333%;
    margin: 20px 0;
}

.about .wrap-3 .item:not(:last-child) {
    margin-right: 48px;
}

/* Products */

.product {}

.product .header {
    text-align: center;
    padding-bottom: 45px;
    max-width: 300px;
    margin: 0 auto;
    background-image: url(images/product-header-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.product h2,
.product .subtitle2 {
    margin-bottom: 20px;
}

.product .bg {
    background-image: url(images/product-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 35px 0 40px 0;
    background-color: #463488;
    color: #fff;
    position: relative;
}

.product .bg::before {
    height: 210px;
    content: "";
    position: absolute;
    top: -1px;
    width: 100%;
    background: #fff;
}

.product .wrap {
    display: flex;
}

.product .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: var(--secondary);
    border-radius: 4px;
}

.product .left {
    width: 736px;
    margin-right: 92px;
}

.product .left .slide {
    overflow: hidden;
}

.product .left img {
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

.product .left .thumbnail {
    margin-bottom: 20px;
    height: 400px;
}

.product .left .store img {
    margin-right: 20px;
    display: inline-block;
}

.product .right {
    margin-top: 210px;
}

.product .right .select {
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 16px;
    border-width: 1px;
    border-color: var(--neutral-gray);
    background: #ffffff;
    cursor: pointer;
    color: #5C5E64;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    border-style: solid;
}

.product .right .select .mobile {
    display: none;
}

.product .right .select:hover {
    box-shadow: 1px 1px 10px 2px rgba(255, 56, 117, 0.62);
}

.product .right .active {
    border-width: 1px 1px 1px 3px;
    border-color: var(--secondary);
    color: var(--secondary);
}

.product .left .code-typing {
    border-radius: 20px;
    line-height: 25px;
    font-size: 16px;
    font-family: monospace;
    box-shadow: 0px 0px 17px rgba(225, 169, 255, 0.24);
    margin: 10px;
    background: radial-gradient(99.11% 99.11% at 50% 50%, #0E0E0F 18.23%, rgba(14, 14, 15, 0.71) 100%) !important;
    backdrop-filter: blur(5px);
    padding: 16px;
    height: 358px !important;
    display: block;
    overflow: hidden;
}

.product .left .code-typing::-webkit-scrollbar {
    display: none;
}

.product .left .code-typing::after {
    content: "|";
    font-weight: bolder;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.partners-wrapper {
    background: url(images/features-bg.png) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

/* Enterprises */
.enterprises {
    padding: 120px 0 60px 0;
}

.enterprises-list {
    padding: 32px 0;
}

.enterprises-list div {
    width: 25%;
}

.enterprises-list div img {
    width: 100%;
}

.enterprises .more {
    color: var(--neutral-gray);
}

/* Creators */
.creators {
    padding: 60px 0 0 0;
}

.creators-list {
    padding: 32px 0;
}

.creators-list div {
    width: calc(100%/12);
}

.creators-list div img {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.creators .more {
    color: var(--neutral-gray);
}

/* Features */
.feature {
    padding: 120px 0;
}

.feature .header {
    max-width: 464px;
}

.feature .header h2 {
    margin-bottom: 20px;
}

.feature .item {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature .reverse {
    flex-direction: row-reverse;
}

.feature .item .content {
    max-width: 414px;
}

.feature .image {
    width: 320px;
    max-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.feature .image-large {
    width: 440px;
}

.feature .image img {
    width: 100%;
}

.feature .item h4 {
    margin-bottom: 12px;
}

/* Experience */

.experience {}

.experience .header {
    max-width: 513px;
    margin-bottom: 48px;
}

.experience .header h2 {
    margin-bottom: 20px;
}

.experience .wrap {
    display: flex;
}

.experience .item {
    width: 33.333333%;
    padding: 40px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.experience .item:not(:last-child) {
    margin-right: 20px;
}

.experience .item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--secondary), #FFFFFF, var(--accent));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.experience .item img {
    height: 122px;
    margin-bottom: 40px;
}

.experience .item h4 {
    margin-bottom: 12px;
}

/* Blog */
.blog {
    padding: 120px 0;
    position: relative;
}

.blog .blob {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
}

.blog .header {
    margin-bottom: 40px;
}

.blog .header h2 {
    margin-bottom: 20px;
}

.blog .slide {
    position: relative;
}

.blog .slide .swiper-slide {
    width: 261px !important;
}

.blog .slide .swiper-slide-active {
    scale: 1.3333333333333333333333;
}

.blog .posts {
    margin: 0 80px 48px 80px;
    padding: 80px 10px;
    /* overflow: hidden; */
    /* position: relative; */
    overflow: hidden;
}

.blog .posts .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: var(--secondary);
    border-radius: 4px;
}

.blog .posts .post {
    background: #FFFFFF;
    box-shadow: 0px 7.5px 11.25px -2.25px rgba(0, 0, 0, 0.1), 0px 3px 4.5px -3px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    overflow: hidden;
}

.blog .posts .post img {
    border-radius: 9px;
    margin-bottom: 24px;
}

.blog .posts .post h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-top: 24px;
    margin-bottom: 18px;
}

.blog .posts .post .title {
    color: var(--neutral-black);
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
}

.blog .posts .post .info {
    padding: 15px;
}

.blog .posts .post .category {
    background: #463488;
    border-radius: 6px;
    color: white;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 600px;
}

.blog .posts .post .date {
    color: #AAAAAA;
    font-size: 12px;
    padding-top: 9px;
    border-top: 1px solid #D7D6D6;
}

.blog .prev,
.blog .next {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 30px);
    z-index: 1000;
    background-color: white;
    cursor: pointer;
    z-index: 1000;
}

.blog .prev {
    left: 0;
}

.blog .next {
    right: 0;
}

/* Whitepaper */
.whitepaper .bg {
    background-image: url(images/whitepaper-bg.png);
    padding: 115px 92px;
    background-repeat: no-repeat;
    background-position: right center;
    color: white;
}

.whitepaper h3 {
    margin-bottom: 20px;
}

.whitepaper .wrap {
    display: flex;
    align-items: center;
}

.whitepaper .left {
    width: 497px;
}

.whitepaper .right {
    display: flex;
    flex: 1 1 0%;
    justify-content: end;
    align-items: center;
}

.contact {
    padding: 120px 0;
    position: relative;
}

.contact .blob {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -30%;
}

.contact .container {
    max-width: 720px;
}

.contact h3 {
    margin-bottom: 20px;
}

.contact .wrap {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.contact .wrap div {
    grid-column: span 12 / span 12;
}

.contact .wrap .w1-2 {
    grid-column: span 6 / span 6;
}

.wpcf7-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-black);
}

.wpcf7-form input,
.wpcf7-form textarea {
    display: block;
    border: 1px solid #D7D6D6;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    background: #ffffff;
    padding: 12px;
    width: calc(100% - 24px);
    font-family: var(--font-inter);
    margin-top: 8px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #AAAAAA;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none !important;
    border: 1.5px solid var(--accent);
}

.wpcf7-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.wpcf7-form>p:nth-child(-n+3) {
    grid-column: span 6 / span 12;
}

.wpcf7-form>p,
.wpcf7-form .submit,
.wpcf7-form .wpcf7-response-output {
    grid-column: span 12 / span 12;
}

.wpcf7-form .wpcf7-not-valid-tip {
    margin-top: 4px;
    color: #E8094B;
}

.wpcf7-form .submit {
    text-align: center;
}

.wpcf7-form .submit p {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wpcf7-form .wpcf7-submit {
    background: var(--secondary);
    border: 0;
    display: inline-block;
    width: auto;
    padding: 17px 60px;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #B52853;
    cursor: pointer;
}

.wpcf7-form .wpcf7-submit:disabled {
    background: #FFB0C8;
}

.wpcf7-form .wpcf7-spinner {
    display: none;
}

.wpcf7-form .wpcf7-response-output {
    margin: 0;
    border-radius: 12px;
    font-size: 16px;
    padding: 16px;
    text-align: center;
}

.footer {
    background-color: var(--accent);
    color: #ffffff;
}

.footer .wrap {
    padding: 80px 0;
    display: flex;
}

.footer .footer-1 {
    width: 535px;
}

.footer .footer-2 {
    display: flex;
}

.footer .footer-2 .item {
    width: 33.33333333%;
    overflow-wrap: break-word;
}


.footer img,
.footer p {
    margin-bottom: 20px;
}

.footer p {}

.footer--icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0px 2.25px 18px rgba(247, 158, 14, 0.4);
    margin-right: 20px;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    color: var(--secondary);
}

.footer .subtitle2 {
    margin-bottom: 16px;
    position: relative;
}

.footer .subtitle2::before {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 9px;
    border-radius: 1px;
    background-color: #fff;
}

.footer .subtitle2::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 14px;
    height: 2px;
    width: 21px;
    border-radius: 1px;
    background-color: #fff;
}

.footer li {
    margin-bottom: 12px;
}

.footer .text-secondary, .footer .current-menu-item a {
    color: var(--secondary);
}

.footer--copyright {
    color: rgba(255, 255, 255, 0.5);
    padding: 16px;
    text-align: center;
    border-top: .75px solid #FFFFFF;
    font-size: 14px;
}


/* ========== Mobile CSS ========== */
@media screen and (max-width: 766px) {
    .mobile-hidden {
        display: none;
    }

    h1 {
        font-size: 40px;
        line-height: 60px;
    }

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

    h3 {
        font-size: 24px;
        line-height: 36px;
    }

    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .subtitle1 {
        font-size: 20px;
        line-height: 30px;
    }

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

    button,
    .button {
        font-size: 14px;
        line-height: 21px;
    }

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

    .body2 {
        font-size: 14px;
        line-height: 21px;
    }

    .caption, .footer li {
        font-size: 12px;
        line-height: 18px;
    }

    .container {
        padding: 0 16px;
    }

    header .container {
        height: 68px;
    }

    header .menu {
        display: block;
    }

    header .mobile-menu {
        display: flex;
        align-items: center;
        width: 40px;
        justify-content: center;
        padding: 5px 0;
    }

    header .menu .active,
    header .menu .current-menu-item a {
        color: var(--secondary)
    }

    header .menu a {
        display: block;
        margin: 0;
        padding: 0 30px;
    }

    header .menu a:hover {
        background: #3B2B74;
    }

    header .menu .active::after,
    header .menu a:hover::after,
    header .menu .current-menu-item a::after {
        content: none;
    }

    header .menu-mobile-active {
        display: block;
        position: absolute;
        background-color: #463488;
        width: 100%;
        height: calc(100vh - 68px);
        z-index: 1;
        top: 68px;
        left: 0;
    }


    .intro .container {
        flex-direction: column-reverse;
        padding: 20px 16px 80px 16px;
    }

    .intro .left {
        width: 100%;
    }

    .intro h1 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 20px;
    }

    .intro .right img {
        max-width: 100%;
    }

    .statistic .wrap {
        transform: translateY(-31px);
    }

    .statistic .item {
        padding: 8px;
    }

    .statistic h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 2px;
    }

    .statistic p {
        font-size: 12px;
        line-height: 15px;
    }

    .brand {
        margin-bottom: 40px;
    }

    .brand img {
        height: 40px;
        margin: 0 10px;
    }
    
    .about {
        padding-bottom: 60px;
    }

    .about .wrap-1 {
        display: block;
    }

    .about .wrap-1 .left {
        margin-bottom: 40px;
        text-align: center;
    }

    .about .wrap-1 .right {
        width: calc(100% - 20px);
        margin-left: 0px;
    }

    .about .wrap-2 {
        flex-direction: column-reverse;
        padding-bottom: 200px;
        background-size: 60% auto;
        background-position: 26% 100%;
    }

    .about .wrap-2 .left {
        width: 100%;
        padding-top: 10px;
    }

    .about .wrap-2 .right {
        margin-bottom: 40px;
        text-align: center;
    }

    .about .wrap-3 {
        display: block;
    }

    .about .wrap-3 .item {
        width: 100%;
        margin-right: 0;
    }
	
	.about .video {
		margin-left: 16px;
    	margin-right: 16px;
	}

    .product h2 {
        margin-bottom: 0;
    }

    .product .bg {
        padding: 40px 0;
    }

    .product .wrap {
        flex-direction: column-reverse;
    }

    .product .left {
        width: 100%;
        margin-right: 0;
    }

    .product .left .code-typing {
        max-height: 250px;
        font-size: 14px;
        margin: 0;
    }

    .product .left .thumbnail {
        height: auto !important;
    }

    .product .right {
        display: flex;
        background: #FFFFFF;
        border: 0.5px solid #FFFFFF;
        box-shadow: 0px -0.1px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        margin-top: 0;
        z-index: 1;
        margin-bottom: 20px;
    }

    .product .right .select {
        padding: 8px 0;
        margin-bottom: 0;
        border-color: transparent;
        text-align: center;
    }

    .product .right .select:nth-child(1) {
        width: 14%;
    }

    .product .right .select:nth-child(2) {
        width: 14%;
    }

    .product .right .select:nth-child(3) {
        width: 38%;
    }

    .product .right .select:nth-child(4) {
        width: 34%;
    }

    .product .right .select:hover {
        box-shadow: none;
    }

    .product .right .active {
        border-width: 1px 1px 3px 1px;
        border-color: var(--secondary);
    }

    .product .right .select .mobile {
        display: block;
    }

    .product .right .select .desktop {
        display: none;
    }
    
    .enterprises-list div {
        width: calc(100%/3);
    }
    
    .creators-list div {
        width: calc(100%/7);
    }
    
    .creators-list div img {
        padding: 6px;
    }

    .feature .header {
        max-width: 303px;
    }

    .feature .item {
        display: block;
        text-align: center;
        padding: 20px 0;
    }

    .feature .image {
        width: 154px;
        max-height: 154px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .feature .image img {
        width: 100%;
    }

    .feature .image-large {
        width: 250px;
    }
    
    .experience {
        margin-bottom: 60px;
    }

    .experience .header {
        max-width: 303px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 32px;
    }

    .experience .wrap {
        flex-direction: column;
        align-items: center;
    }

    .experience .item {
        width: 100%;
        max-width: 237px;
        padding: 20px;
    }

    .experience .item:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .blog {
        padding: 60px 0;
    }

    .blog .posts {
        margin: 0;
        padding: 20px 0 40px 0;
    }

    .blog .prev,
    .blog .next {
        display: none;
    }

    .blog .slide .swiper-slide {
        width: 100% !important;
    }

    .blog .slide .swiper-slide-active {
        scale: 1;
    }

    .whitepaper .bg {
        background-size: auto 100%;
        padding: 100px 60px;
        background-position: center center;
        margin: -30px -16px;
    }

    .whitepaper .wrap {
        display: block;
    }

    .whitepaper .left {
        width: 100%;
        margin-bottom: 32px;
    }

    .whitepaper .right {
        display: block;
    }

    .whitepaper .right a {
        display: block;
        text-align: center;
    }

    .contact {
        padding: 60px 0;
    }

    .contact .container {
        padding: 0 36px;
    }

    .contact .wrap .w1-2 {
        grid-column: span 12 / span 12;
    }

    .footer .wrap {
        display: block;
        padding: 40px 0 80px 0;
    }

    .footer .footer-1 {
        width: 100%;
        margin-bottom: 40px;
    }
}

/* ========== Tablet CSS ========== */
@media screen and (min-width: 767px) and (max-width: 1084px) {
    .container {
        padding: 0 32px;
    }

    .intro .container {
        padding: 120px 32px 180px 32px;
        display: flex;
    }

    .intro .left {
        width: 408px;
        margin-right: 0;
    }

    .intro h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .intro img {
        max-height: 373px;
    }

    .brand img {
        height: 68px;
        margin: 0 16px;
    }

    .about .wrap-1 {
        display: block;
    }

    .about .wrap-1 .left {
        margin-bottom: 40px;
        text-align: center;
    }

    .about .wrap-1 .right {
        width: 100%;
        margin-left: 0px;
    }

    .about .wrap-2 {
        flex-direction: column-reverse;
        padding-bottom: 250px;
        background-size: 60% auto;
        background-position: 26% 115%;
    }

    .about .wrap-2 .left {
        width: 100%;
        padding-top: 10px;
    }

    .about .wrap-2 .right {
        margin-bottom: 40px;
        text-align: center;
    }

    .about .wrap-3 {
        display: block;
    }

    .about .wrap-3 .item {
        width: 100%;
        margin-right: 0;
    }

    .product .wrap {
        flex-direction: column-reverse;
    }

    .product .left {
        width: 100%;
        margin-right: 0;
    }

    .product .left .thumbnail {
        width: 564px;
        margin: 0 auto;
    }

    .product .left .code-typing {
        max-height: 350px;
        font-size: 14px;
        margin: 0;
    }

    .product .left .thumbnail {
        height: auto !important;
    }

    /* .product .left  */

    .product .right {
        width: 564px;
        margin: 0 auto;
        display: flex;
        background: #FFFFFF;
        border: 0.5px solid #FFFFFF;
        box-shadow: 0px -0.1px 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        margin-top: 0;
        z-index: 1;
        margin-bottom: 20px;
    }

    .product .right .select {
        padding: 8px 7.5px;
        margin-bottom: 0;
        border-color: transparent;
        text-align: center;
    }

    .product .right .select:nth-child(1),
    .product .right .select:nth-child(2) {
        width: 20%;
    }

    .product .right .select:nth-child(3),
    .product .right .select:nth-child(4) {
        width: 30%;
    }

    .product .right .select:hover {
        box-shadow: none;
    }

    .product .right .active {
        border-width: 1px 1px 3px 1px;
        border-color: var(--secondary);
    }

    .product .right .select .mobile {
        display: block;
    }

    .product .right .select .desktop {
        display: none;
    }
    
     .enterprises-list div {
        width: calc(100%/3);
    }
    
    .creators-list div {
        width: calc(100%/7);
    }
    
    .creators-list div img {
        padding: 12px;
    }

    .feature .image {
        width: 260px;
        max-height: 260px;
    }

    .feature .image-large {
        width: 340px;
    }

    .feature .item .content {
        max-width: 340px;
    }

    .experience .header {
        margin: 0 auto;
        text-align: center;
        margin-bottom: 48px;
    }

    .experience .wrap {
        justify-content: center;
        flex-wrap: wrap;
    }

    .experience .item {
        width: calc(50% - 100px);
    }

    .experience .item:not(:last-child) {
        margin-bottom: 20px;
    }

    .blog .posts {
        margin: 0 0 48px 0;
        padding: 80px 50px;
    }

    .blog .prev,
    .blog .next {
        display: none;
    }

    .whitepaper .container {
        padding: 0;
    }

    .whitepaper .bg {
        padding: 115px 32px;
    }

    .whitepaper .wrap {
        display: block;
    }

    .whitepaper .left {
        width: 100%;
    }

    .whitepaper .right {
        justify-content: start;
        margin-top: 20px;
    }

    .contact .container {
        max-width: 524px;
    }

    .footer .footer-1 {
        width: 240px;
    }


}

/* ========== About Page ========== */
.about-hero {}

.about-hero h1 {
    color: #FFFFFF;
    background: url(images/about-us-bg.png) no-repeat;
    padding-top: 100px;
    padding-bottom: 280px;
    background-size: 100%;
}

.about-hero .mission-vision {
    background-image: url(images/about-us-bg-2.png);
    padding-bottom: 250px;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-bottom: 100px;
}

.about-hero .mission {
    max-width: 636px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    box-shadow: 0px 20px 27px rgb(0 0 0 / 5%);
    backdrop-filter: blur(7.5px);
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, #411655 0%, #1E0E38 100%);
    margin-bottom: -30px;
    transform: translateY(-150px);
}

.about-hero .mission h2 {
    margin-bottom: 40px;
    color: #fff;
}

.about-hero .mission .subtitle2 {
    color: #FFFFFF;
}

.about-hero .vision h2 {
    color: #fff;
    margin-bottom: 80px;
}

.about-hero .vision .video {
    max-width: 900px;
    position: relative;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.about-hero .vision .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
}

.about-hero .wave img {
    width: 100%;
}

.our-team {
    margin-bottom: 84px;
}

.our-team h2 {
    margin-bottom: 60px;
}

.our-team .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 40px;
}

.our-team .item {
    border: 1px solid #F5F5F5;
    box-shadow: 0px 20px 27px rgb(0 0 0 / 5%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 56px;
}

.our-team .item .header {
    display: flex;
    align-items: end;
    margin-bottom: 20px;
    margin-top: -76px;
}

.our-team .item .header .avatar {
    margin-right: 20px;
}

.our-team .item .header .avatar img {
    width: 156px;
    height: 156px;
    border-radius: 100%;
    filter: drop-shadow(0px 20px 27px rgba(0, 0, 0, 0.05));
}

.our-team .item .header .name {
    flex: 1;
}

.our-team .item .header .name .subtitle1 {
    font-size: 24px;
    line-height: 36px;
}

.our-team .item .header .name p {
    font-size: 16px;
    line-height: 19px;
    color: #8C8C8C;
}

.our-team .item .body2 {}

.customer-say {
    margin-bottom: 100px;
}

.customer-say h2 {
    max-width: 453px;
    position: relative;
    margin-bottom: 40px;
}

.customer-say h2::before {
    content: "";
    background-image: url(images/double-quote.png);
    width: 120px;
    height: 102px;
    position: absolute;
    top: -36px;
    left: -24px;
}

.customer-say .left {
    width: 644px;
    margin-right: 92px;
    position: relative;
    overflow: hidden;
    padding: 15px 15px 60px 15px;
}

.customer-say .right {
    flex: 1;
}

.customer-say .swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
    background-color: var(--secondary);
    border-radius: 4px;
}

.customer-say .left .quote {
    padding: 40px;
    box-shadow: 0px 10px 15px -3px rgb(0 0 0 / 10%), 0px 4px 6px -4px rgb(0 0 0 / 10%);
    border-radius: 20px;
}

.customer-say .left .quote .small-double-quote {
    width: 38px;
}

.customer-say .left .quote .body2 {
    color: #8C8C8C;
    margin-bottom: 32px;
    margin-top: 12px;
}

.customer-say .left .customer {
    text-align: center;
}

.customer-say .left .customer img {
    width: 64px;
    margin: 0 auto;
    display: block;
    margin-bottom: 12px;
}

.customer-say .left .customer .subtitle2 {
    margin-bottom: 8px
}

.customer-say .left .customer p {
    color: #8C8C8C;
    font-size: 16px;
}

.customer-say .right img {}

.roadmap {
    background: url(images/roadmap-bg.png) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 120px 0 280px 0;
}

.roadmap .wrap {
    margin-top: 80px;
}

.roadmap .wrap .left,
.roadmap .wrap .right {
    display: flex;
    position: relative;
}

.roadmap .wrap .left {
    justify-content: left;
}

.roadmap .wrap .right {
    justify-content: right;
    flex-direction: row-reverse;
}

.roadmap .wrap .content {
    border-radius: 9px;
    position: relative;
    width: 442px;

    padding: 12px;
}

.roadmap .wrap .content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 4px;
}

.roadmap .wrap .left .content::before {
    background: linear-gradient(90deg, transparent, transparent, transparent, transparent, #A94BA0, #CF23BE, #9C37FD);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.roadmap .wrap .right .content::before {
    background: linear-gradient(90deg, #9C37FD, #CF23BE, #A94BA0, transparent, transparent, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.roadmap .wrap .content .inner-gradient {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    min-height: 105px;
}

.roadmap .wrap .content .inner-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9px;
    padding: 1px;
    background: linear-gradient(90deg, #463488, #FF3875);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.roadmap .wrap .left .date,
.roadmap .wrap .right .date {
    display: flex;
    align-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(157.56deg, #B0FFF9 1.93%, #4DA3FB 30.71%, #7745FF 51.72%, #8A38F7 64.5%, #9B2CF0 73.77%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.roadmap .wrap .left .date {
    margin-left: 125px;
}

.roadmap .wrap .right .date {
    margin-right: 125px;
}

.roadmap .wrap .left::before,
.roadmap .wrap .right::before {
    content: "";
    top: 0;
    position: absolute;
    border-right: 2px dashed #463488;
    height: 100%;
}

.roadmap .wrap .active::before {
    border-right: 4px solid #FF3875;
}

.roadmap .wrap .left::before {
    left: calc(50% - 1px);
}

.roadmap .wrap .right::before {
    left: calc(50% - 1px);
}

.roadmap .wrap .active::before {
    left: calc(50% - 2px);
}

.roadmap .wrap .active::before {
    left: calc(50% - 2px);
}

.roadmap .wrap .left::after,
.roadmap .wrap .right::after {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 12px);
    background: linear-gradient(92.04deg, #463488 0.57%, #FF3875 100%);
    box-shadow: 0px 0px 30px #CE1D92;
}

.roadmap .wrap .left::after {
    right: calc(50% - 12px);
}

.roadmap .wrap .right::after {
    left: calc(50% - 12px);
}

.roadmap .wrap .left .content::after,
.roadmap .wrap .right .content::after {
    content: "";
    position: absolute;
    top: 50%;
    border-top: 1px dashed #157efd;
}

.roadmap .wrap .left .content::after {
    right: -78px;
    width: 78px;
}

.roadmap .wrap .right .content::after {
    left: -78px;
    width: 78px;
}

.roadmap ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 8px;
}

.roadmap li {
    color: #D7D6D6;
    margin-bottom: 8px;
}

.values {
    margin-bottom: 120px;
}

.values h2 {
    margin-bottom: 90px;
}

.values .wrap {
    position: relative;
}

.values .slide {
    overflow: hidden;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
    margin-left: -15px;
    margin-right: -15px;
}

.values .prev,
.values .next {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 30px);
    z-index: 1000;
    background-color: white;
    cursor: pointer;
    z-index: 1000;
}

.values .wrap .prev {
    left: -30px;
}

.values .wrap .next {
    right: -30px;
}

.values .slide .swiper-slide {
    height: auto;
    display: flex;
}

.values .wrap .item {
    background: #FFFFFF;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
}

.values .wrap .item .header .subtitle1 {
    font-weight: 500;
}

.values .sticker {
    width: 73px;
    height: 81px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    background: #E2E2FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -73px;
    margin-bottom: 12px;
}

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

.values .header .number {
    font-size: 120px;
    color: rgba(255, 56, 117, 0.12);
    font-weight: 700;
    margin-left: -10px;
}


.our-team .members {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row-reverse;
}

.our-team .members img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-left: -20px;
    filter: drop-shadow(0px 20px 27px rgba(0, 0, 0, 0.05));
}

.our-team .members .more-member {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    color: white;
    background: linear-gradient(92.04deg, #463488 0.57%, #FF3875 100%);
    border: 4px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    filter: drop-shadow(0px 20px 27px rgba(0, 0, 0, 0.05));
    margin-left: -20px;
}

.our-team .be-part a {
    font-weight: 600;
    font-size: 20px;
}

.backed {
    margin-bottom: 120px;
}

.backed h2 {
    margin-bottom: 40px;
}

.backed .list {
    display: flex;
    justify-content: center;
    max-width: 500px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.backed .list img {
    margin: 20px 28px;
}

@media screen and (max-width: 766px) {
    .about-hero h1 {
        padding-top: 24px;
        padding-bottom: 74px;
        background-size: auto 100%;
    }

    .about-hero .mission-vision {
        background-image: url(images/about-us-bg-2-mobile.png);
        padding-bottom: 100px;
    }

    .about-hero .mission {
        margin: 0 16px 0px 16px;
        padding: 60px 20px 20px 20px;
        transform: translateY(-50px);
    }

    .about-hero .mission h2 {
        margin-bottom: 12px;
    }

    .about-hero .vision h2 {
        margin-bottom: 20px;
    }

    .about-hero .vision .video {
        margin: 0 16px;
    }

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

    .our-team .item {
        margin-top: 8px;
    }

    .our-team .item .header-active {
        margin-bottom: 10px !important;
    }

    .our-team .item .header {
        margin-bottom: 0;
        margin-top: 0;
        align-items: center;
        position: relative;
        padding-right: 20px;
    }

    .our-team .item .header::before,
    .our-team .item .header::after {
        content: "";
        position: absolute;
        background-color: #3A3D43;
        width: 3px;
        height: 9px;
        right: 10px;
    }

    .our-team .item .header::before {
        transform: translate(-2px, 0) rotate(-45deg);
    }

    .our-team .item .header::after {
        transform: translate(2px, 0) rotate(45deg);
    }

    .our-team .item .header-active::before {
        transform: translate(-2px, 0) rotate(45deg);
    }

    .our-team .item .header-active::after {
        transform: translate(2px, 0) rotate(-45deg);
    }

    .our-team .item .body2 {
        display: none;
    }

    .our-team .item .body2-active {
        display: block;
    }

    .our-team .item .header .name .subtitle1 {
        font-size: 20px;
        font-weight: 500;
    }

    .our-team .item .header .avatar img {
        width: 64px;
        height: 64px;
    }

    .backed {
        margin-bottom: 60px;
    }

    .backed .list img {
        margin: 16px 20px;
        max-height: 40px;

    }

    .roadmap .wrap {
        max-width: 375px;
    }

    .roadmap .wrap .right {
        flex-direction: row;
    }

    .roadmap .wrap .content {
        width: 241px;
    }

    .roadmap .wrap .right .content::before {
        background: linear-gradient(90deg, transparent, transparent, transparent, transparent, #A94BA0, #CF23BE, #9C37FD);
    }

    .roadmap .wrap .content {
        border-radius: 9px;
    }

    .roadmap .wrap .left,
    .roadmap .wrap .right {
        padding: 6px 0;
    }

    .roadmap .wrap .content .inner-gradient {
        padding: 8px;
    }

    .roadmap .wrap .active::before {
        border-right: 2px solid #FF3875;
        left: calc(82% - 1px);
    }

    .roadmap .wrap .left::after,
    .roadmap .wrap .right::after {
        right: calc(18% - 4px);
        width: 8px;
        height: 8px;
        left: auto;
        top: calc(50% - 4px);
    }

    .roadmap .wrap .right .content::after,
    .roadmap .wrap .left .content::after {
        right: -30px;
        width: 30px;
        left: auto;
    }

    .roadmap .wrap .right .date,
    .roadmap .wrap .left .date {
        margin-left: 0;
        margin-right: 0px;
        flex: 1;
        font-size: 12px;
        justify-content: right;
    }

    .roadmap .wrap .left::before,
    .roadmap .wrap .right::before {
        left: calc(82% - 1px);
    }

    .roadmap .wrap .content {
        padding: 8px;
    }

    .roadmap .wrap .content::before {
        padding: 2px;
    }

    .values .prev,
    .values .next {
        display: none;
    }
}

@media screen and (min-width: 767px) and (max-width: 1084px) {
    .about-hero h1 {
        font-size: 48px;
        background-size: auto 100%;
        background-position: center center;
    }

    .about-hero .vision h2 {
        margin-bottom: 40px;
    }

    .vision {
        padding: 0 32px;
    }

    .our-team .item .header .avatar img {
        width: 120px;
        height: 120px;
    }

    .our-team .item .header .name {
        flex: 1;
    }

    .our-team .item .header .name .harry {
        margin-bottom: -16px;
    }

    .our-team .item .header .name .subtitle1 {
        font-size: 20px;
    }

    .backed h2 {
        max-width: 372px;
        margin: 0 auto 40px auto;
    }

    .customer-say .left {
        width: 400px;
        margin-right: 0;
    }

    .roadmap .wrap {
        max-width: 768px;
        margin: 80px auto 0 auto;
    }

    .roadmap .wrap .content {
        width: 286px;
    }

    .roadmap .wrap .left .date {
        margin-left: 90px;
    }

    .roadmap .wrap .left .content::after {
        right: -60px;
        width: 60px;
    }

    .roadmap .wrap .right .date {
        margin-right: 90px;
    }

    .roadmap .wrap .right .content::after {
        left: -60px;
        width: 60px;
    }
}

.blog-header {
    text-align: center;
    padding: 100px 0;
    background-image: url(images/blog-header-bg.png);
    margin-bottom: 60px;
}


.blog-header h1 {
    color: #fff;
    margin-bottom: 40px;
}

.blog-header .search-form {
    display: flex;
    justify-content: center;
}

.blog-header .search-form label {
    background: #FFFFFF;
    border: 1px solid #D7D6D6;
    box-shadow: 0px 1px 2px rgb(0 0 0 / 5%);
    border-radius: 6px;
    display: flex;
    padding: 12px;
    width: 250px;
}

.blog-header .search-form label img {
    margin-right: 10px;
}

.blog-header .search-form label input {
    border: 0;
    outline: navajowhite;
    flex: 1;
    background-color: #fff;
}

.blog-categories {
    margin-bottom: 40px;
}

.blog-categories ul {
    display: flex;
    justify-content: center;
}

.blog-categories ul li {
    margin: 0 14px;
}

.blog-categories ul li a {
    display: inline-block;
    padding: 12px 20px;
    color: #AAAAAA;
    border-radius: 30px;
}

.blog-categories ul li .active {
    background: #FF3875;
    color: #fff;
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin: -20px;
    margin-bottom: 120px;
}

.blog-posts .categories a {
    background: #463488;
    border-radius: 8px;
    color: #fff;
    padding: 8px 12px;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.blog-posts .first-post {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    grid-column: 1 / span 3;
    padding: 20px;
    transition: box-shadow ease-in-out .2s;
	border: 1px solid transparent;
	border-radius: 32px;
}

.blog-posts .first-post:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
	border: 1px solid #F5F5F5;
}

.blog-posts .first-post .thumbnail {
    width: 492px;
    margin-left: 40px;
}

.blog-posts .first-post .thumbnail img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    height: auto;
    aspect-ratio: 16 / 9;
}

.blog-posts .first-post .details {
    flex: 1;
}

.blog-posts .first-post .categories {
    margin-bottom: 12px;
}

.blog-posts .first-post .details .title {
    color: #3A3D43;
    margin-bottom: 12px;
    display: block;
    line-height: 150%;
}

.blog-posts .first-post .details p {
    margin-bottom: 12px;
    line-height: 150%;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-posts .first-post .details .date {
    color: #AAAAAA;
}

.blog-posts .post {
    padding: 20px;
    transition: box-shadow ease-in-out .2s;
	border: 1px solid transparent;
	border-radius: 20px;
}

.blog-posts .post:hover {
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
	border: 1px solid #F5F5F5;
}

.blog-posts .post .thumbnail {
    margin-bottom: 24px;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.blog-posts .post .thumbnail img {
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-posts .post .details {}

.blog-posts .post .categories {
    margin-bottom: 4px;
}

.blog-posts .post .details .title {
    color: #3A3D43;
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
    line-height: 150%;
}

.blog-posts .post .details p {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.blog-posts .post .details .date {
    color: #AAAAAA;
    border-top: 1px solid #D7D6D6;
    margin-top: 16px;
    padding-top: 12px;
}

.subscribe {
    background: #463488;
    background-image: url(images/subscribe-bg-top.png), url(images/subscribe-bg-bottom.png);
    box-shadow: 0px 20px 27px rgb(0 0 0 / 5%);
    border-radius: 12px;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 120px;
    background-repeat: no-repeat;
    background-position: top right, bottom left;
}

.subscribe h3 {
    margin-bottom: 20px;
}

.subscribe .body1 {
    margin-bottom: 28px;
}

.subscribe .body2 {
    margin-top: 28px;
}

.subscribe .wpcf7-form {
	max-width: 650px;
    margin: 0 auto;
}

.subscribe form {
	display: block;
}

.subscribe .form-wrap {
	width: 100%;
    justify-content: center;
    display: flex;
}
.subscribe .form-wrap p {
	
}

.subscribe .wpcf7-form .wpcf7-submit {
	padding: 12px 16px;
    margin-left: 8px;
    width: 143px;
}

@media screen and (max-width: 766px) {
    .blog-header {
        background-position: center;
        background-size: cover;
    }

    .blog-header {
        padding: 40px 0;
    }

    .blog-header .search-form label {
        width: 100%;
        margin: 0 20px
    }

    .blog-categories ul {
        overflow-x: auto;
        justify-content: normal;
        white-space: nowrap;
    }

    .blog-posts {
        display: block;
        margin: 0px;
        margin-bottom: 60px;
    }

    .blog-posts .first-post,
    .blog-posts .post {
        box-shadow: 0px -1px 11px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        margin-bottom: 20px;
        display: block;
    }

    .blog-posts .first-post .thumbnail {
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .blog-posts .first-post .thumbnail img,
    .blog-posts .post .thumbnail img {
        border-radius: 12px;
    }

    .blog-posts .first-post .details .title {
        font-size: 20px;
    }

    .subscribe {
        padding: 60px 16px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1084px) {
    .blog-header h1 {
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
    }

    .blog-posts {
        grid-template-columns: 1fr 1fr;
        margin: 0px;
        margin-bottom: 80px;
    }

    .blog-posts .first-post {
        grid-column: 1 / span 2;
    }

    .blog-posts .first-post {
        box-shadow: 0px -1px 11px rgb(0 0 0 / 5%), 0px 10px 15px -3px rgb(0 0 0 / 10%), 0px 4px 6px -4px rgb(0 0 0 / 10%);
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .blog-posts .first-post .thumbnail {
        width: 332px;
        margin-left: 20px;
    }

    .blog-posts .first-post .details .title {
        font-weight: 700;
        font-size: 32px;
        line-height: 39px;
    }

    .blog-posts .first-post .details p {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        height: 72px;
        overflow: hidden;
    }

    .blog-posts .categories a {
        padding: 8px 12px;
    }

    .blog-posts .first-post .thumbnail img {
        border-radius: 12px;
    }

    .blog-posts .post {
        padding: 20px;
        box-shadow: 0px -1px 11px rgb(0 0 0 / 5%), 0px 10px 15px -3px rgb(0 0 0 / 10%), 0px 4px 6px -4px rgb(0 0 0 / 10%);
        border-radius: 20px;
    }
}

#post-detail {
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(images/blog-header-bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 50px 0 150px 0;
}

#post-detail .container {}

#post-detail .wrap {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 72px 92px;
    position: relative;
}

.post-detail {
    margin-bottom: 80px;
    border-bottom: 1px solid #D7D6D6;
    padding-bottom: 40px;
}

.post-detail .thumbnail {
    margin-bottom: 48px;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.post-detail .thumbnail img {
    width: 100%;
    border-radius: 32px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-detail .header {
    display: flex;
    margin-bottom: 40px;
}

.post-detail .header .left {
    flex: 1;
}

.post-detail .header .right {
    width: 167px;
    margin-left: 80px;
}

.post-detail .title {
    font-size: 40px;
    line-height: 48px;
}

.post-detail .categories {
    margin-bottom: 20px;
}

.post-detail .categories a {
    background: #463488;
    border-radius: 8px;
    color: #fff;
    padding: 8px 12px;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.post-detail .property {
    margin-bottom: 10px;
}

.post-detail .property .body2:nth-child(2) {
    color: #8C8C8C;
}

.post-detail .right .body2 {}

.post-detail .content {
	line-height: 150%;
}

.post-detail .share {
    position: absolute;
    right: -28px;
    height: 100%;
}

.post-detail .share ul {
    position: fixed;
}

.post-detail .share li {}

.post-detail .share li a,
.post-detail .share li button {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-post {
    text-align: center;
    margin-bottom: 120px;
}

.no-post img {
    margin-top: 40px;
}

.no-post h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.no-post .body2 {
    color: #AAAAAA;
}

@media screen and (max-width: 766px) {
    #post-detail .container {
        padding: 0;
    }

    #post-detail .wrap {
        padding: 16px;
        border-radius: 0;
    }

    #post-detail {
        padding: 0;
    }

    .post-detail .share {
        position: static;
        right: 0;
        margin-bottom: 24px;
    }

    .post-detail .share ul {
        display: flex;
        justify-content: end;
        position: relative;
    }
    
    .post-detail .share ul li:first-child {
        position: absolute;
        left: 0;
    }

    .post-detail .share li a,
    .post-detail .share li button {
        border: 1px solid #eee;
        margin-bottom: 0;
        margin-left: 12px;
    }

    .post-detail .thumbnail {
        margin-bottom: 20px;
    }

    .post-detail .header {
        margin-bottom: 40px;
        display: block;
    }

    .post-detail .title {
        margin-bottom: 12px;
    }

    .post-detail .header .right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1084px) {
    #post-detail {
        padding: 0;
        border-radius: 0;
    }

    #post-detail .container {
        padding: 0 76px;
    }

    #post-detail .wrap {
        padding: 40px;
    }

    .post-detail .share {
        right: -12px;
    }
}

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

.media-kit .header {
    color: #fff;
    text-align: center;
    padding: 100px 0 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(images/media-ki-bg.png);
}

.media-kit .header h1 {}

.media-kit .wrap {
    margin-top: 60px;
    display: flex;
}

.media-kit .left {
    width: 184px;
    margin-right: 72px;
}

.media-kit .left ul {
    padding: 40px 0px;
    background: #F9FBFC;
    border-radius: 12px;
}

.media-kit .left button {
    display: block;
    padding: 16px 32px;
}

.media-kit .left select {
    display: none;
}

.media-kit .left button:hover {
    color: var(--secondary);

}

.media-kit .left .active {
    font-style: normal;
    color: var(--secondary);
    font-weight: 600;
}

.media-kit .right {
    flex: 1;
    padding: 40px;
    background: #F9FBFC;
    border-radius: 12px;
}

.media-kit .right h3 {
    margin-bottom: 12px;
}

.media-kit .right h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.media-kit .right .block {
    margin-bottom: 40px;
}

.media-kit .right .box {
    border: 1px solid #D7D6D6;
    border-radius: 16px;
    padding: 40px;
}

.media-kit .properties {
    display: flex;
}

.media-kit .properties .content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
}

.media-kit .properties .image {
    width: 252px;
    margin-left: 66px;
}

.media-kit .properties .content h5 {
    color: #463488;
    font-weight: 600;
    padding: 4px 8px;
    background: #F5F5F5;
    width: 100%;
}

.media-kit .properties .content .key {
    width: 100px;
    margin-right: 40px;
    padding: 4px 8px;
}

.media-kit .properties .content .value {
    padding: 4px 8px;
}


.media-kit .right .images {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    align-items: flex-start;
}

.media-kit .right .images img {
    margin: 0 20px;
}

.media-kit .data .block {
	
}

.media-kit .data .label {
	text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
	margin-bottom: 12px;
}

.media-kit .data img {
	max-height: 104px;
    display: block;
    margin: 0 auto;
	margin-bottom: 24px;
}

.media-kit .data .download {
	text-align: center;
	font-size: 16px;
}

.media-kit .data .download a {
	display: inline-block;
    margin: 0 6px;
	    text-decoration: underline;
}

@media screen and (max-width: 766px) {
    .media-kit {
        margin-bottom: 60px;
    }

    .media-kit .header {
        padding: 40px 0 40px 0;
    }

    .media-kit .wrap {
        display: block;
        margin-top: 20px;
    }

    .media-kit .left {
        margin-bottom: 20px;
    }

    .media-kit .left ul {
        display: none;

    }

    .media-kit .left select {
        display: block;
        padding: 8px 16px;
        background: #F9FBFC;
        border: 1px solid #D7D6D6;
        border-radius: 4px;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: calc(100% - 16px) center;
        background-size: 1em;
        width: 152px;
    }

    .media-kit .right {
        border-radius: 12px;
        padding: 20px;
    }

    .media-kit .right .block {
        margin-bottom: 20px;
    }

    .media-kit .right .box {
        padding: 20px;
    }

    .media-kit .right .images {
        display: block;
        text-align: center;
    }

    .media-kit .properties {
        display: block;
    }

    .media-kit .properties .image {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1084px) {
    .media-kit .wrap {
        margin-top: 40px;
    }

    .media-kit .left {
        width: 161px;
        margin-right: 20px;
    }

    .media-kit .right {
        padding: 20px;
    }

    .media-kit .left ul {
        padding: 20px 0px;
    }

    .media-kit .properties {
        display: block;
    }

    .media-kit .properties .image {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

.faq {
    margin-bottom: 120px;
}

.faq .header {
    color: #fff;
    text-align: center;
    padding: 100px 0 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(images/faq-bg.png);
    background-position: center;
}

.faq h3 {
    margin-top: 60px;
    margin-bottom: 20px;
}

.faq .tabs-wrap {
    display: flex;
    justify-content: center;
}

.faq .tabs {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 40px;
}

.faq .tabs button {
    padding: 16px 20px;
    border-radius: 37px;
    font-size: 16px;
    color: #8C8C8C;
}

.faq .tabs .active {
    background: #FF3875;
    color: #fff;
    font-weight: 600;
}

.faq .questions {
    max-width: 716px;
    margin: 0 auto;
}

.faq .questions .question {
    box-shadow: 0px 0px 0.5px rgba(66, 71, 76, 0.65), 0px 4px 8px rgba(66, 71, 76, 0.1), 0px 4px 40px #EEEEEE;
    border-radius: 15px;
    padding: 32px 40px;
    margin-bottom: 20px;
}

.faq .questions .question .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq .questions .question .title img {
    width: 28px;
    height: 28px;
}

.faq .questions .question .content {
    margin-bottom: 23px;
}

@media screen and (max-width: 766px) {
    .faq {
        margin-bottom: 60px;
    }

    .faq .questions .question {
        padding: 20px 22px;
    }

    .faq .tabs button {
        padding: 12px;
        font-size: 14px;
    }

    .faq .tabs {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

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

}