@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'), url('../fonts/ClashDisplay-Medium.woff') format('woff'), url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'), url('../fonts/ClashDisplay-Semibold.woff') format('woff'), url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'), url('../fonts/ClashDisplay-Bold.woff') format('woff'), url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: url('../fonts/Inter-Regular-1.eot') format('embedded-opentype'), url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff'), url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.eot');
    src: url('../fonts/Inter-Bold-1.eot') format('embedded-opentype'), url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff'), url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.eot');
    src: url('../fonts/Inter-Medium-1.eot') format('embedded-opentype'), url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff'), url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.eot');
    src: url('../fonts/Inter-SemiBold-1.eot') format('embedded-opentype'), url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff'), url('../fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --background-body: #0E1015;
    --background-light-body: #13151C;
    --text-color-body: #CFCFD0;
    --background-button: #26272C;
    --text-color-button: #ffffff;
    --background-button-sec: #C3E774;
    --text-color-button-sec: #000000;
    --heading-color: #ffffff;
    --border-color: #272C37;
    --theme-green: #C3E774;
}

body {
    background-color: var(--background-body);
    color: var(--text-color-body);
    font-size: 14px;
    font-family: 'Inter';
    margin: 0;
    padding: 0;
}

.spacing {
    padding: 65px 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'ClashDisplay';
    font-weight: 600;
    color: var(--heading-color);
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 20px;
}

.text24 {
    font-size: 24px;
}

.text20 {
    font-size: 20px;
}

.container {
    max-width: 1700px;
}

.button {
    padding: 14px 34px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 600;
    border-radius: 90px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    margin: 5px 0;
}

.button:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.button-primary {
    background-color: var(--background-button);
    color: var(--text-color-button);
}

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

.button:hover:before {
    left: 0;
    width: 100%;
}

.button-primary:hover:before {
    background-color: var(--background-button-sec);
}

.button-secondary:hover:before {
    background-color: var(--background-button);
}

.button-primary:hover {
    color: var(--text-color-button-sec);
}

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

.header-wrapper {
    padding: 20px 0;
}

.header-wrapper .navbar-toggler {
    background-image: unset;
    width: 32px;
    height: 30px;
    padding: 0;
}

.navbar-toggler span:after,
.navbar-toggler span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
}

.navbar-toggler .navbar-toggler-icon:after {
    top: 9px;
}

.navbar-toggler .navbar-toggler-icon {
    position: relative;
    display: block;
    color: var(--text-color-button);
}

.navbar-toggler span,
.navbar-toggler span:after,
.navbar-toggler span:before {
    width: 100%;
    height: 2px;
    background-color: var(--text-color-button);
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
    background-image: unset;
}


/* on activation */

.navbar-toggler[aria-expanded="true"] span {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] span:before {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:after {
    transform: rotate(-45deg) translate(7px, -8px);
}

.navbar-nav .nav-item .nav-link {
    color: var(--text-color-body);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    margin: 0 10px;
    text-align: center;
}

.navbar-nav .nav-item .nav-link span {
    position: absolute;
    bottom: -20%;
    display: inline-block;
    left: 0;
    right: 0;
    opacity: 0;
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--heading-color);
}

.navbar-nav .nav-item .nav-link.active span {
    opacity: 1;
}

.banner-text {
    max-width: 1130px;
    margin: auto;
    text-align: center;
    position: relative;
}

.banner-text h1 {
    line-height: 0.9;
}

.h1-large {
    font-size: 118px;
}

.highlighted-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
    line-height: unset;
}

.banner-text p {
    color: var(--text-color-body);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.24px;
}

.content-w-small {
    max-width: 644px;
    margin: 40px auto;
}

.arrow-cursive {
    display: inline-block;
    margin-left: 34px;
    position: absolute;
    bottom: 0;
}

.image-full-wrapper {
    margin-top: 80px;
    overflow: hidden;
}

.image-full-wrapper .img-fluid {
    width: 100%;
}

.image-inner-item {
    display: flex;
    grid-gap: 25px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    -webkit-animation: marquee 28s linear infinite;
    animation: marquee 28s linear infinite;
}

.image-item-card {
    flex: 0 0 auto;
    max-width: 100%;
}

.image-item-card .img-fluid {
    width: auto;
}

.strokebox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    padding: 5px 18px;
    border-radius: 80px;
    margin-bottom: 10px;
    font-family: 'ClashDisplay';
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    text-transform: uppercase;
}

.support-inner-box {
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 40px;
}

.support-text-box {
    padding: 40px;
}

.support-text-box h3 {
    font-family: 'Inter';
    margin-bottom: 24px;
}

.support-text-box p {
    margin-bottom: 26px;
}

.gradient-bg {
    display: inline-block;
    border-radius: 9px;
    background: linear-gradient(93deg, #7027D7 47.12%, #FF3232 103.49%);
    padding: 8px 17px;
    color: #FFF;
    font-family: "ClashDisplay";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 18px;
}

.support-text-box h4 {
    font-size: 80px;
    text-transform: uppercase;
}

.heading-wrapper {
    margin-bottom: 50px;
}

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

.anythings-items {
    border: 1px solid var(--border-color);
    margin-left: -1px;
    margin-bottom: -1px;
}

.anythings-inner-card {
    padding: 60px;
    display: grid;
    grid-gap: 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.anythings-inner-card .bg-layer {
    position: absolute;
    bottom: -70px;
    right: -70px;
    content: "";
    width: 160px;
    height: 160px;
    border-radius: 50%;
    transition: 0.6s ease;
    z-index: -1;
    background-color: var(--theme-green);
    opacity: 0;
}

.anythings-inner-card:hover .bg-layer {
    width: 150%;
    height: 150%;
    border-radius: 0;
    opacity: 1;
    /* animation: criss-cross-left 0.8s both;
    animation-direction: alternate; */
}

.anythings-inner-card .img-fluid {
    display: block;
    margin: 0 auto 20px;
}

.anythings-inner-card p {
    font-size: 18px;
}

.exolore-features-content p {
    font-size: 30px;
    margin: 20px 0 40px;
}

.exolore-features-theme {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.exolore-features-content {
    flex: 0 0 auto;
    max-width: 50%;
    padding: 2% 6% 2% 12%;
}

.theme-feat-img {
    flex: 0 0 auto;
    max-width: 50%;
}

.theme-feat-img .img-fluid {
    width: 100%;
}

.green-text {
    color: var(--theme-green);
}

.testimonials-slider-wrapper {
    max-width: calc(100% - 90px);
    margin: 0 auto;
}

.testimonials-slider-wrapper .slick-track,
.testimonials-slider-wrapper .slick-list {
    display: flex;
}

.testimonials-slider-wrapper .slick-slide {
    padding: 40px 12px;
    height: 100%;
}

.testimonials-slider-wrapper .slick-slide>div,
.testimonials-slider-wrapper .slick-slide .testimonials-item {
    height: 100%;
}

.testimonials-item-card {
    padding: 110px 50px 70px;
    background-color: var(--background-light-body);
    position: relative;
    height: 100%;
}

.testimonial_box-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    position: absolute;
    left: 50px;
    top: -30px;
}

.quote-icon {
    position: absolute;
    top: 46px;
    right: 48px;
}

.quote-icon img {
    max-width: 100%;
}

.testimonial_box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial_box-name h4 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 18px;
}

.testimonial_box-name p {
    font-size: 16px;
    font-weight: 600;
}

.testimonial_box-text p {
    color: var(--text-color-body);
    font-family: Inter;
    font-size: 23px;
    font-weight: 300;
    line-height: 31px;
}

.testimonials-slider-wrapper .slick-arrow {
    width: 33px;
    height: 28px;
}

.testimonials-slider-wrapper .slick-arrow.slick-prev {
    left: -40px;
}

.testimonials-slider-wrapper .slick-arrow.slick-next {
    right: -40px;
}

.testimonials-slider-wrapper .slick-arrow.slick-prev:before {
    display: block;
    content: "";
    background: url('../images/left-arrow.svg')no-repeat center/contain;
    width: 33px;
    height: 28px;
}

.testimonials-slider-wrapper .slick-arrow.slick-next:before {
    display: block;
    content: "";
    background: url('../images/right-arrow.svg')no-repeat center/contain;
    width: 33px;
    height: 28px;
}

.heading-wrapper h2 span {
    position: relative;
}

.heading-wrapper h2 span svg {
    position: absolute;
    bottom: 0;
    right: 0;
}

.premium-theme-section {
    position: relative;
}

.image-wrapper .shape-box {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    z-index: -1;
    margin: auto;
    width: auto;
    height: 744px;
}

.text-marquee-section {
    overflow: hidden;
}

.text-marquee-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    -webkit-animation: marquee 24s linear infinite;
    animation: marquee 24s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.text-marquee-item {
    text-transform: uppercase;
}

.text-marquee-item .text-marquee-heading {
    font-size: 140px;
    line-height: 1;
    margin: 0;
}

.footer-wrapper {
    padding: 46px 0;
    border-top: 1px solid var(--border-color);
}

.footer-inner-row {
    display: flex;
    justify-content: space-between;
}

.footer-items h6,
.footer-items h4 {
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-items ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-items ul a {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color-body);
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-items ul a span {
    display: inline-block;
    margin-right: 14px;
}

.head-box {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 20px;
    padding: 32px 50px;
    border-bottom: 1px solid var(--border-color);
}

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

.left-cont-theme p {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.01em;
    text-align: left;
}

.theme-titles .theme-name {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    margin-right: 20px;
    text-align: center;
}

.theme-titles .theme-value {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    padding: 8px 20px;
    background: var(--border-color);
    display: inline-block;
    border-radius: 60px;
    color: var(--heading-color);
}

.theme-image {
    padding: 32px 50px;
}

.theme-links {
    padding: 0 50px 32px;
}

.theme-links .button:not(:last-child) {
    margin-right: 12px;
}

.theme-image .img-fluid {
    display: block;
    margin: auto;
}

.contact-us-content {
    max-width: 560px;
}

.contact-form-box .form-label {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: -0.02em;
    text-align: left;
}

.contact-form-box .form-control {
    width: 100%;
    border: 1px solid #5e626c;
    background: transparent;
    margin: 0 0 5px;
    padding: 10px;
    background: #1e1e1f;
    border-radius: 0;
    color: #fff;
}

.wrapper-file-input {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.input-box {
    border: 1px dashed var(--border-color);
    color: var(--text-color-body);
    font-size: 16px;
    overflow: hidden;
    padding: 10px;
    position: relative;
    resize: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    vertical-align: middle;
    min-width: 300px;
}

.input-box [type=file] {
    cursor: pointer !important;
    display: block;
    filter: alpha(opacity=0);
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0px;
    z-index: 1;
    line-height: normal;
    height: auto;
    min-height: 1px;
    margin: 0;
}

.background-light {
    background-color: var(--background-light-body);
    margin-bottom: 15px;
}
.banner-section.spacing.bg-clr {
    background: #14161b;
    margin-bottom: 30px;
}

.theme-doc-content p {
    max-width: 500px;
    margin: 10px 0 30px;
}

.support-help-center-card {
    padding: 0 10px;
}

.support-help-center-card h3 {
    margin-bottom: 15px;
}

.support-help-center-card p {
    margin-bottom: 30px;
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 18px;
}

.support-list ul {
    list-style: none;
    padding: 0;
}

.support-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 23px;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

.theme-feat-cont {
    text-align: left;
}

.theme-feat-cont p {
    margin-left: 0;
    text-align: left;
}

.price-box {
    font-family: 'ClashDisplay';
    font-size: 56px;
    font-weight: 600;
    line-height: 51px;
    letter-spacing: -0.04em;
    text-align: left;
    margin: 30px 0;
}

.price-box small {
    margin-left: 16px;
    font-size: 36px;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: -0.04em;
    text-align: left;
    opacity: 0.6;
    vertical-align: middle;
}

.left-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.right-shape {
    position: absolute;
    right: 0px;
    bottom: -90%;
}

.button-box .button:not(:last-child) {
    margin-right: 16px;
}

.theme-images-box {
    display: grid;
    grid-template-columns: 0.48fr 1fr;
    grid-gap: 40px;
    margin-top: 40px;
}

.theme-presets-store .left-cont-theme h5 small {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-color-body);
    margin-left: 14px;
    padding-bottom: 4px;
    display: inline-block;
}

.classic-style-head {
    max-width: 1200px;
    margin: 0 auto;
}

.classic-style-head h2 .gradient-bg {
    font-size: inherit;
    margin: 0;
}

.classic-style-head p {
    max-width: 930px;
    margin: 0px auto;
}

.theme-styles-img {
    margin-top: -56px;
}

.theme-styles-img .img-fluid {
    width: 100%;
}

.online-store-sec .image-wrapper {
    margin-bottom: -70px;
}


/* ============ Theme Doc ============ */

.banner-section.doc-banner {
    background: url('../images/docum-banner.png')no-repeat center / cover;
}

.doc-banner h1 {
    line-height: normal;
}

.theme-cate-box .container {
    max-width: 1260px;
}

.theme-cate-list .theme-icon {
    margin-bottom: 30px;
}

.theme-cate-list a {
    text-decoration: none;
    color: #fff;
    width: 100%;
    display: grid;
    text-align: center;
    padding: 70px 20px;
    background: #171920;
    border: 2px solid #323744;
    border-radius: 20px;
}

.theme-cate-list a:hover {
    border-color: #C3E774;
}

.theme-cate-list a h5 {
    margin: 0;
}

.theme-cate-list a p {
    margin: 0;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.01em;
    text-align: center;
    opacity: 0.5;
}

.content-wrapper {
    margin-bottom: 40px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}

/*.contact-side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}*/

.contact-side-drawer.modal .modal-dialog {
    margin: 0;
    height: 100%;
    margin-left: auto;
    transform: translate(100%,0px);
}

.contact-side-drawer.show .modal-dialog {
    transform: translate(0);
}

.contact-side-drawer .modal-header {
    border-color: #5e626c;
    padding-top: 0;
}

.contact-side-drawer .modal-dialog .modal-content {
    background-color: #1e1e1f;
    padding: 30px;
    max-width: 600px;
    border-radius: 0;
    height: 100vh;
    border-left: 2px solid #262424;
}

.contact-side-drawer .modal-header .btn-close {
    padding: 0;
    width: 36px;
    height: 36px;
}

.contact-side-drawer .wrapper-file-input {
    grid-template-columns: 1fr;
}

form .error {
    color: #b81111;
}