:root {
    --top: 4.65vw;
    --top2: 8.33vw;
    --top3: 9vw;
    --left: 1.39vw;
    --left2: 13.4vw;
    --grey: #AFBAC2;
    --orange: #FF6A3D;
    --Inter: "Inter", sans-serif;
}

.lenis-disabled,
.lenis-disabled body {
    height: 100vh !important;
    overflow-y: scroll;
}

body {
    /*13px*/
    margin: 0;
    color: black;
    font-size: 0.9vw;
    font-style: normal;
    font-weight: 600;
    line-height: 1.38;
    font-family: var(--Inter);
    position: relative;
    overflow: auto;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: 600;
    font-family: var(--Inter);
    margin: 0;
}

h1,
.h1 {
    /*120px*/
    font-size: 8.33vw;
    line-height: 1;
    letter-spacing: -0.5vw;
}

h2,
.h2 {
    /*60px*/
    font-size: 4.17vw;
    line-height: 1.08;
    letter-spacing: -0.2vw;
    margin-bottom: 2vw;
}

h3,
.h3 {
    /*40px*/
    font-size: 2.083vw;
    line-height: 1.29;
    letter-spacing: -0.021vw;
    margin-bottom: 0.781vw;
}

h4,
.h4,
.quiz-holder legend.gfield_label {
    /*20px*/
    font-size: 1.39vw;
    line-height: 1.3;
    letter-spacing: -0.03vw;
    margin-bottom: 1vw;
}

h5,
.h5,
header,
footer a,
.cursor,
.preloader {
    /*12px*/
    font-size: 0.83vw;
    line-height: 1.5;
    letter-spacing: -0.03vw;
    margin-bottom: 1vw;
}

h6,
.h6 {
    /*12px*/
    color: var(--grey) !important;
    font-size: 0.83vw;
    line-height: 1.5;
    letter-spacing: -0.03vw;
    text-transform: uppercase;
    margin-bottom: 3.82vw;
}

a {
    color: inherit;
}

p {
    margin: 0;
    margin-bottom: 1.25vw;
}

p:last-of-type {
    margin-bottom: 0;
}

img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

svg {
    display: block;
    width: 100%;
}

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

ul {
    margin-bottom: 3.333vw;
    padding-left: 1.2vw;
}

* {
    box-sizing: border-box;
}

.home section {
    overflow: hidden;
}

/* ======================== 
    Header
==========================*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.04vw var(--left);
    margin: 0;
    z-index: 10;
}

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

.menu ul a {
    display: block;
    color: black;
    text-align: right;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
}

.dark-header .menu ul a {
    color: white;
}

.dark-header header {
    color: white;
}

.menu ul a:hover {
    color: var(--orange) !important;
}

.gradient-line {
    width: 100%;
    height: 0.42vw;
    background: linear-gradient(90deg, #EDE6DB 0%, #FF6EC7 29.81%, #03FFFF 63.94%, #FF6A3D 96.15%);
}

header .gradient-line {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.mobile-header {
    display: none;
}

/* ======================== 
    Preloader
==========================*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--left);
    background-color: #0d0d0c;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.preloader video {
    width: 25vw;
}

.preloader-txt {
    width: 10vw;
}

div#progress {
    text-align: right;
}

.preloader .gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.42vw;
    transition: width .2s;
}

.preloader-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 101;
}

#bg {
    position: fixed;
    bottom: -.4vw;
    left: 50%;
    transform: translateX(-50%) translateY(10%) scale(0.25);
    transform-origin: bottom;
    width: 100%;
    z-index: 101;
    margin-bottom: calc(49svh);
    opacity: 0;
}

/* ======================== 
    Cursor
==========================*/
@media (min-width: 1024px) {
    body {
        cursor: none;
    }

    a,
    button,
    input[type=submit] {
        cursor: none !important;
    }
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    margin: 0;
    text-transform: uppercase;
}

.default-cursor {
    width: 1.4vw;
    position: relative;
    top: 0.5vw;
    left: 0.5vw;
}

.extra-cursor {
    position: absolute;
    top: 1.8vw;
    left: 2vw;
    opacity: 0;
}

.extra-cursor.scroll-down,
.extra-cursor.read-more {
    width: 7.78vw;
    color: white;
    background-color: black;
    text-align: center;
    padding: 0.28vw 0.76vw;
    border: 2px solid white;
    background-clip: padding-box;
}

.extra-cursor.image {
    width: 21.81vw;
}

/* ======================== 
    Common
==========================*/
.top {
    padding-top: var(--top);
}

.top2 {
    padding-top: var(--top2);
}

.bottom {
    padding-bottom: var(--top);
}

.left {
    padding-left: var(--left);
}

.right {
    padding-right: var(--left);
}

.bg-black {
    color: white;
    background-color: black;
}

.text-reveal {
    color: var(--grey);
}

.bg-black .text-reveal {
    color: #595F62;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.302vw;
}

.btn {
    font-size: 0.83vw;
    line-height: 150%;
    letter-spacing: -0.03vw;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0.42vw 0.69vw;
    color: white;
    border: 1px solid transparent;
    background-color: black;
    font-family: var(--Inter);
    text-transform: uppercase;
    transition: .3s;
}

.btn-white {
    color: black !important;
    background-color: white;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.69vw;
    transition: 0.3s;
    overflow: hidden;
}

.btn-arrow img {
    display: block;
    width: 0.76vw;
    position: relative;
    filter: invert(1) brightness(1000%);
    transition: .3s;
}

.btn-arrow span {
    flex-shrink: 0;
    display: block;
    position: relative;
    transition: .3s;
}

.btn-arrow.btn-white img {
    filter: none;
}

.btn:hover {
    color: black !important;
    background-color: var(--orange) !important;
}

.btn-arrow:hover img {
    filter: invert(0) brightness(100%);
}

.btn-arrow svg {
    display: block;
    width: 0.76vw;
}

.btn-arrow path {
    fill: white;
    transition: .3s;
}

.btn-arrow.btn-white path {
    fill: black;
}

.btn-arrow:hover path {
    fill: black;
}

/* ======================== 
    Home
==========================*/
.home-section {
    width: 100%;
    height: 100svh;
    min-height: 40vw;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.home-holder {
    margin-top: auto;
}

.home-txt {
    display: flex;
    justify-content: flex-end;
    padding: 0 var(--left);
}

.home-txt * {
    width: 26vw;
}

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

.home-bg {
    height: 31.18vw;
    clip-path: url(#shape);
    overflow: hidden;
    margin-bottom: -.4vw;
}

.home-bg img,
.home-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 61%;
}

.home-section .home-bg img,
.home-section .home-bg video {
    transform: scale(1.1);
}

.mobile-scroll-down {
    display: none;
}

.home-about {
    padding: var(--top2) var(--left);
    padding-right: 9.72vw;
    position: relative;
}

.home-about h2 {
    width: 64.44vw;
}

.home-about-txt {
    width: 24.72vw;
    margin-top: 11.04vw;
    margin-left: auto;
}

.home-about-txt h4 {
    margin-bottom: 1.81vw;
}

.home-product {
    padding: var(--top2) var(--left) 0;
}

.title-holder {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.36vw;
}

.title-holder * {
    margin-bottom: 0;
}

.home-product-title h2 {
    width: 70vw;
    margin-bottom: 1vw;
}

.home-product-row {
    display: flex;
    margin: -0.38vw;
}

.home-product-col {
    width: 25%;
    padding: 0.38vw;
}

.home-product-box {
    height: 36.67vw;
    padding: 1.11vw 1.11vw 2.01vw;
    background-color: #EDE6DB;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
}

.home-product-box:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .5) 100%);
    transition: .6s;
    opacity: 0;
    z-index: 2;
}

.product-box-title {
    font-size: 3.06vw;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.09vw;
}

.product-box-title span {
    display: block;
    font-weight: 200;
}

.product-box-desc {
    margin-top: auto;
    position: relative;
    z-index: 3;
    transition: .6s;
}

.home-product-box img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    transition: .6s ease;
    height: 0;
    opacity: 0;
}

@media only screen and (min-width: 768px) {
    .home-product-box:hover img {
        height: 27vw;
        opacity: 1;
    }

    .home-product-box:hover:before {
        opacity: 1;
    }

    .home-product-box:hover .product-box-desc {
        color: white;
    }
}

.features-section {
    padding: var(--top2) var(--left);
    padding-bottom: 0;
    /*temporary only*/
}

.features-row {
    display: flex;
    margin-top: 3.82vw;
}

.features-left {
    width: 44.58vw;
}

.features-right {
    width: 40.56vw;
    margin-left: auto;
}

.features-item {
    position: relative;
    padding: 2.08vw 0;
}

.features-item:first-child {
    padding-top: 0;
}

.features-item .border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    border-top: 1px solid black;
    width: 0%;
}

.features-item h5 {
    opacity: 0;
    color: var(--grey);
    position: relative;
    top: 1vw;
}

.features-item h4 {
    opacity: 0;
    margin-bottom: 0;
    position: relative;
    top: 1vw;
}

.work-section {
    padding: var(--top2) var(--left);
}

.work-title-holder h2 {
    width: 48.61vw;
}

.work-row {
    display: flex;
    flex-wrap: wrap;
    margin: -3.47vw -0.56vw;
}

.work-col {
    width: 35%;
    padding: 3.47vw 0.56vw;
}

.work-col:nth-child(4n + 1),
.work-col:nth-child(4n + 4),
.work-col:nth-child(4n + 5) {
    width: 65%;
}

.work-img img {
    width: 100%;
    height: 21.53vw;
    object-fit: cover;
}

.work-col:nth-child(4n + 1) img,
.work-col:nth-child(4n + 4) img,
.work-col:nth-child(4n + 5) img {
    height: 40.56vw;
}

.work-desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.81vw;
    margin-bottom: 0;
}

.work-desc h3 {
    margin-bottom: 0 !important;
}

.work-category {
    display: flex;
    gap: 0.69vw;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}

.strategy-section {
    padding: var(--top2) var(--left) var(--top);
    overflow: hidden;
}

.strategy-title-holder h2 {
    width: 57.64vw;
}

.strategy-title-holder p {
    width: 10.76vw;
}

.strategy-title-holder ol {
    padding-left: 1vw;
    margin-top: 1vw;
}

.strategy-row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.56vw;
}

.strategy-col {
    width: 50%;
    padding: 0.56vw;
}

.strategy-box {
    position: relative;
    height: 45.28vw;
}

.strategy-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.strategy-txt {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 1.67vw;
    padding-left: 4vw;
    padding-bottom: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.strategy-big-text {
    font-size: 14.5vw;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.3vw;
    transform: scale(0.375);
    transform-origin: 100% 0%;
    transition: .6s;
}

.strategy-big-text span {
    display: block;
    font-weight: 200;
}

.strategy-small-text {
    width: 15.3vw;
    margin-left: auto;
    transform: translateY(-26.5vw);
    transition: .6s;
}

.strategy-box .gradient-line {
    opacity: 0;
    transition: .6s;
}

@media only screen and (min-width: 768px) {
    .strategy-box:hover .strategy-big-text {
        transform: scale(1);
    }

    .strategy-box:hover .strategy-small-text {
        transform: translateY(0) scale(1.5);
        transform-origin: bottom right;
    }

    .strategy-box:hover .gradient-line {
        opacity: 1;
    }

    .strategy-box:hover img {
        filter: saturate(4) brightness(0.6);
    }
}

.subscribe-section {
    padding: 0 var(--left) var(--top2);
}

.subscribe-row {
    display: flex;
    flex-wrap: wrap;
}

.subscribe-left {
    width: 34.03vw;
    padding-right: 1vw;
}

.subscribe-left h2 {
    margin-bottom: 3.26vw;
}

.subscribe-left form {
    position: relative;
    margin-top: 1vw;
    width: 23.47vw;
}

.subscribe-left input[type="email"] {
    width: 100%;
    height: auto;
    padding-right: 28% !important;
}

.subscribe-left input[type=submit] {
    position: absolute;
    top: 50%;
    right: 1.5%;
    transform: translateY(-50%);
    height: 78% !important;
    padding: 0.42vw 0.69vw !important;
}

.subscribe-left .btn {
    margin-top: 5.76vw;
}

.subscribe-right {
    flex: 1;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
    margin: -1.6vw -0.42vw;
}

.blog-col {
    width: 33.33%;
    padding: 1.6vw 0.42vw;
}

.home .blog-col {
    width: 50%;
}

a.blog-box {
    text-decoration: none;
}

.blog-thumb {
    width: 100%;
    height: 20.49vw;
    margin-bottom: 1.18vw;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

a.blog-box:hover .blog-thumb img {
    transform: scale(1.08);
}

.date {
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0;
}

.blog-desc .date {
    margin-bottom: .5vw;
}

.blog-desc h4 {
    margin-bottom: 0.5vw;
}

.blog-desc p {
    color: var(--grey);
}

/* ======================== 
    About
==========================*/
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    margin-bottom: 3.82vw;
}

.breadcrumb-item {
    display: flex;
    padding-right: 1vw;
}

.breadcrumb-item:after {
    content: "/";
    display: block;
    margin-left: 1vw;
}

.breadcrumbs a {
    color: var(--grey);
    text-decoration: none;
    transition: .3s;
}

.breadcrumbs a:hover {
    color: black;
}

.bg-black .breadcrumbs a:hover {
    color: white;
}

.breadcrumb-item:last-child:after {
    display: none;
}

.about-section {
    padding: var(--top3) var(--left2) var(--top);
}

.about-banner img {
    width: 100%;
}

.strategy-section .btn-holder {
    text-align: right;
    margin-top: 1.5vw;
}

/* ======================== 
    Blogs
==========================*/
.featured-blog-section {
    padding: var(--top3) var(--left) 0;
}

.featured-blog {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
}

.featured-blog-img {
    width: 55.63vw;
    height: 33.13vw;
    overflow: hidden;
}

.featured-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.featured-blog:hover .featured-blog-img img {
    transform: scale(1.08);
}

.featured-blog:hover .btn-arrow {
    color: black;
    background-color: var(--orange);
}

.featured-blog:hover .btn-arrow path {
    fill: black;
}

.featured-blog-desc {
    flex: 1;
    padding: 1.39vw 3.26vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-blog-desc .excerpt {
    margin-bottom: auto;
}

.blog-section {
    padding: var(--top2) var(--left);
}

.blog-section .btn-holder {
    text-align: center;
    margin-top: 2.5vw;
}

/* ======================== 
    Blog Inner
==========================*/
.blog-inner-section {
    padding: var(--top2) var(--left) 0;
}

.blog-inner-row {
    display: flex;
    flex-wrap: wrap;
}

.blog-inner-left {
    width: 55.63vw;
}

a.btn-back {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.04vw;
    margin-bottom: 0.83vw;
    text-decoration: none;
    transition: .3s;
}

a.btn-back * {
    margin-bottom: 0;
}

.back-box {
    width: 2.78vw;
    height: 2.78vw;
    padding: 1vw;
    background-color: black;
    transition: .3s;
}

.back-box img {
    width: 100%;
    filter: invert(1);
    transition: .3s;
}

a.btn-back:hover .back-box {
    background-color: var(--orange);
}

a.btn-back:hover img {
    filter: none;
}

.share-holder {
    display: flex;
    gap: 1.74vw;
    margin-top: 1.74vw;
}

.share-social a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.share-social a:hover {
    color: var(--grey);
}

.blog-inner-right {
    flex: 1;
    padding: 5vw 3.26vw 2vw;
}

.blog-inner-right h1 {
    margin-bottom: 1.04vw;
}

.author {
    margin-bottom: 3.33vw;
}

.author span {
    color: var(--grey);
}

.related-section {
    background-color: white;
    position: relative;
}

/* ======================== 
    Product page
==========================*/
.products-title-section {
    padding: var(--top3) var(--left) 0;
}

.products-title-section h4 {
    margin-bottom: 0;
}

.product-section {
    padding: var(--top2) var(--left);
    background-color: black;
}

.product-item {
    margin-top: -5vw;
    margin-bottom: 1.11vw;
    position: relative;
}

.product-item-title {
    padding: 0.76vw 1.04vw 1.11vw;
    background-color: white;
}

.product-item-title h2 {
    font-weight: 900;
    margin-bottom: 0;
}

.product-item-title h2 span {
    font-weight: 200;
}

.product-item-bg {
    position: relative;
    height: 44vw;
    overflow: hidden;
}

.product-item-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.product-item-bg:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.product-item-content {
    position: relative;
}

.product-content-row {
    position: absolute;
    bottom: 1.74vw;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 0 1.04vw;
    color: white;
}

.product-content-left,
.product-content-right {
    width: 50%;
    padding-right: 10.42vw;
}

.product-content-list {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
    margin-bottom: 0.56vw;
}

.product-content-list img {
    display: block;
    width: 1.11vw;
    margin-top: .25vw;
}

.product-content-list h4,
.product-content-list>div {
    flex: 1;
    margin-bottom: 0;
}

.quiz-section {
    padding: var(--top2) 10vw;
}

.quiz-holder .gform-theme--foundation {
    margin-top: 3.5vw;
}

.quiz-holder .gform-theme--foundation .gform_fields {
    row-gap: 2.5vw !important;
}

.quiz-holder legend.gfield_label {
    font-weight: 600;
    margin-bottom: 1.04vw;
}

.quiz-holder .gfield--type-choice .gfield_radio {
    flex-direction: row !important;
}

.quiz-holder .gchoice {
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    width: 14.51vw;
    display: flex !important;
    align-items: center;
}

.quiz-holder .gchoice * {
    font: inherit !important;
}

.quiz-holder .gchoice label {
    margin-left: 0;
    padding: .4vw .8vw;
}

.quiz-holder .gchoice input {
    border: 2px solid var(--grey) !important;
}

.quiz-holder .gchoice input:focus {
    border: 2px solid var(--grey) !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    background-color: var(--orange) !important;
}

.quiz-holder span.gfield_required,
.quiz-holder .gform_footer {
    display: none !important;
}

.gform-theme--framework input[type=radio] {
    width: 1.5vw !important;
    height: 1.5vw !important;
}

.gform-theme--framework input[type=radio]::before {
    width: .7vw !important;
    height: .7vw !important;
}

.results {
    margin-top: 3vw;
}

.result {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3vw 2vw;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    margin: 1vw 0;
    position: relative;
}

.result:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.result * {
    position: relative;
    z-index: 2;
}

.result.gradient {
    background: linear-gradient(90deg, #EA5022 0%, #D62599 100%);
}

.result.gradient:before {
    display: none;
}

.result h2 {
    font-size: 4.24vw;
    font-weight: 900;
    margin-bottom: 0;
    width: 30vw;
}

.result h2 span {
    font-weight: 200;
}

.result-desc {
    width: 33vw;
    margin-left: auto;
    margin-right: 2vw;
}

/* ======================== 
    Contact page
==========================*/
.contact-section {
    min-height: 100vh;
    position: relative;
    padding-top: var(--top3);
    padding-left: var(--left2);
    display: flex;
    flex-direction: column;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    position: relative;
    background-color: white;
    padding: 1.81vw var(--left);
    margin-top: auto;
}

.contact-form .breadcrumbs {
    margin-bottom: 1vw;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2vw;
}

.contact-left {
    width: 42%;
    display: flex;
    flex-direction: column;
}

.contact-left h4 {
    margin-bottom: 0.5vw;
}

.contact-left a {
    text-decoration: none;
    transition: .3s;
}

.contact-left a:hover {
    color: var(--orange);
}

.contact-info {
    margin-bottom: auto;
}

.address {
    color: var(--grey);
    /*    margin-bottom: 4.17vw;*/
}

.social-link {
    display: flex;
    gap: 1.74vw;
    text-transform: uppercase;
}

.contact-right {
    flex: 1;
    min-height: 40vh;
}

.gform-theme--foundation .gform-grid-row,
.gform-theme--foundation .gform_fields {
    column-gap: 1.11vw !important;
    row-gap: 1.25vw !important;
    margin-inline: 0 !important;
}

.gform-theme--foundation .gform-grid-col {
    padding-inline: 0 !important;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"]:not(.adminbar-input),
input[type="url"],
select,
textarea {
    color: black !important;
    font-size: 0.83vw !important;
    line-height: 120% !important;
    font-weight: 600 !important;
    letter-spacing: -0.03vw !important;
    height: auto !important;
    padding: 1.2vw !important;
    border: 1px solid #ECECEC !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
}

form textarea {
    min-height: 3vw !important;
    min-block-size: 3vw !important;
    height: 8vw !important;
}

input[type="date"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--grey) !important;
    outline: 0 !important;
}

.gform-theme--foundation .gform_footer,
.gform-theme--foundation .gform_page_footer {
    margin-block-start: 1.67vw !important;
}

.gform_footer {
    position: relative !important;
    display: inline-block !important;
}

.gform_footer img.submit-arrow {
    position: absolute;
    top: 50%;
    right: 0.69vw;
    transform: translateY(-50%);
    width: 0.76vw;
    filter: invert(1) brightness(1000%);
    z-index: 2;
    transition: .3s;
}

.gform_footer:before {
    content: "";
    display: block;
    background-image: url(https://kult.mydemobb.com/wp-content/uploads/2025/06/icon-arrow-right.svg);
    width: 0.76vw;
    height: 0.76vw;
    background-size: contain;
    filter: invert(1) brightness(1000%);
    position: absolute;
    right: 0.69vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: .3s;
}

.gform_footer:hover img.submit-arrow,
.gform_footer:hover:before {
    filter: none;
}

input[type=button],
input[type=reset],
input[type=submit] {
    font-size: 0.83vw !important;
    line-height: 150% !important;
    letter-spacing: -0.03vw !important;
    padding: 0.42vw 0.69vw !important;
    padding-right: 2.22vw !important;
    height: auto !important;
    min-height: unset !important;
    color: white !important;
    border: none !important;
    background-color: black !important;
    font-family: var(--Inter) !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    transition: .3s !important;
}

input[type=submit]:hover {
    color: black !important;
    background-color: var(--orange) !important;
}

.gform-theme--framework .gform_validation_errors {
    margin-bottom: 1vw !important;
    background-color: white !important;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error {
    font: inherit !important;
}

.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    font: inherit !important;
}

.gform-theme--framework .gform_validation_errors ol {
    display: none;
}

/* ======================== 
    404 page
==========================*/
.section.error-404 {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--top3) var(--left);
    text-align: center;
    text-transform: uppercase;
}

.error-404 * {
    color: white;
}

.error-404-page footer,
.contact-page footer {
    display: none;
}

/* ======================== 
    Footer
==========================*/
footer {
    background-color: white;
    position: relative;
}

.cta {
    display: flex;
    align-items: flex-end;
    gap: 2vw;
    padding: 3vw var(--left) 2vw;
}

.cta-img {
    position: relative;
}

.cta-img:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.cta-img img {
    width: 100%;
}

.cta-img h4 {
    position: absolute;
    bottom: 3.82vw;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    margin-bottom: 0;
    z-index: 2;
}

.cta h2.h1 {
    margin-bottom: 0;
}

.cta a.btn {
    margin-bottom: 1.1vw;
}

.cta-gradient-line {
    width: 100%;
    height: 1.32vw;
    background: linear-gradient(90deg, #EDE6DB 0%, #FF6EC7 29.81%, #03FFFF 63.94%, #FF6A3D 96.15%);
    position: relative;
    z-index: 2;
}

.footer-holder {
    padding: 1.53vw 3.68vw;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6.67vw;
}

footer a {
    margin-bottom: 0;
    transition: .3s;
}

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

a.footer-logo img {
    display: block;
    width: 15.97vw;
    margin-bottom: 1.18vw;
}

a.footer-contact {
    display: block;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-right {
    display: flex;
    gap: 10.21vw;
}

.footer-link a {
    display: block;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-copyright {
    color: #595F62;
}

#scrollTopBtn {
    position: absolute;
    bottom: 2vw;
    right: var(--left);
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5vw;
}

#scrollTopBtn img {
    width: 100%;
    filter: invert(1) brightness(1000%);
    transition: .3s;
}

#scrollTopBtn:hover img {
    filter: none;

}

/* ======================== 
    Ipad
==========================*/
@media only screen and (max-width: 1200px) {
    body {
        font-size: 1.2vw;
    }

    h5,
    .h5,
    header,
    footer a,
    .cursor,
    .preloader {
        font-size: 1vw;
    }

    .cursor {
        display: none !important;
    }

    .strategy-title-holder p {
        width: 15vw;
    }
}

/* ======================== 
    Mobile
==========================*/
@media only screen and (max-width: 767px) {
    :root {
        --top: 15vw;
        --top2: 20vw;
        --top3: 35vw;
        --left: 4vw;
        --left2: 4vw;
    }

    body {
        font-size: 3vw;
    }

    h1,
    .h1 {
        font-size: 14vw;
        letter-spacing: -0.8vw;
    }

    h2,
    .h2 {
        font-size: 10vw;
        letter-spacing: -0.4vw;
        margin-bottom: 4vw;
    }

    h3,
    .h3 {
        font-size: 6vw;
        letter-spacing: -0.06vw;
        margin-bottom: 2vw;
    }

    h4,
    .h4,
    .quiz-holder legend.gfield_label {
        font-size: 4vw;
        letter-spacing: -0.06vw;
        margin-bottom: 4vw;
    }

    h5,
    .h5,
    header,
    footer a,
    .cursor,
    .preloader {
        font-size: 3vw;
        letter-spacing: -0.08vw;
        margin-bottom: 2vw;
    }

    h6,
    .h6 {
        font-size: 3vw;
        letter-spacing: -0.06vw;
        margin-bottom: 6vw;
    }

    /*header*/
    header {
        position: fixed;
        top: 2vw;
        padding: 5vw var(--left);
        transition: .2s;
    }

    header.scrolled {
        padding: 3vw var(--left);
        background-color: white;
    }

    .header-left {
        display: none;
    }

    .mobile-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 101;
    }

    a.header-logo img {
        width: 32vw;
        transition: .3s;
    }

    .btn-menu {
        cursor: pointer;
        position: relative;
        height: 8vw;
        width: 9vw;
    }

    .btn-menu div {
        background-color: black;
        width: 100%;
        height: .5vw;
        position: absolute;
        top: calc(50% - 2px);
        transition: 300ms;
    }

    .btn-menu div:before,
    .btn-menu div:after {
        display: block;
        content: "";
        background-color: black;
        width: 100%;
        height: .5vw;
        position: absolute;
        transition: 300ms;
    }

    .btn-menu div:before {
        top: 2.5vw;
    }

    .btn-menu div:after {
        bottom: 2.5vw;
    }

    .btn-menu.active div {
        background-color: transparent !important;
        transition: 300ms;
    }

    .btn-menu.active div:before {
        top: 0;
        transition: 300ms;
        transform: rotate(-45deg);
        background-color: white !important;
    }

    .btn-menu.active div:after {
        bottom: 0;
        transition: 300ms;
        transform-origin: center center;
        transform: rotate(45deg);
        background-color: white !important;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        overflow-y: auto;
        z-index: 100;
        margin-right: -100%;
        transition: .4s;
    }

    .header-right.active {
        margin-right: 0;
    }

    .menu {
        padding: 30vw 5vw 10vw;
    }

    .menu ul a {
        font-size: 5vw;
        padding: 2vw 0;
        color: white;
    }

    header.active a.header-logo img {
        opacity: 0;
    }

    .dark-header a.header-logo img {
        filter: invert(1) brightness(1000%);
    }

    .dark-header .btn-menu div,
    .dark-header .btn-menu div:before,
    .dark-header .btn-menu div:after {
        background-color: white;
    }

    .dark-header header.scrolled a.header-logo img {
        filter: none;
    }

    .dark-header header.scrolled .btn-menu div,
    .dark-header header.scrolled .btn-menu div:before,
    .dark-header header.scrolled .btn-menu div:after {
        background-color: black;
    }

    /*common*/
    .btn {
        font-size: 3vw;
        letter-spacing: -0.06vw;
        padding: 2vw 3vw;
    }

    .btn-arrow {
        gap: 2vw;
    }

    .btn-arrow svg {
        width: 2.5vw;
    }

    .title-holder {
        flex-wrap: wrap;
        gap: 5vw;
        margin-bottom: 6vw;
    }

    .remove-br br {
        display: none;
    }

    .gradient-line,
    .preloader .gradient-line {
        height: 2vw;
    }

    .breadcrumbs {
        margin-bottom: 6vw;
    }

    .breadcrumb-item {
        padding-right: 2vw;
    }

    .breadcrumb-item:after {
        margin-left: 2vw;
    }

    /*#bg {
        transform: translateX(-50%) translateY(10%) scale(0.3);
        margin-bottom: calc(50svh);
    }*/

    #bg {
        bottom: auto;
        top: 50%;
        transform: translateX(-50%) translateY(-50%) scale(0.3);
        transform-origin: center;
        margin-bottom: 0;
    }

    /*home*/
    .home-section {
        min-height: 100vw;
        position: relative;
    }

    .home-holder {
        margin: auto 0;
        position: relative;
    }

    .home-txt {
        flex-direction: column-reverse;
        padding: 0;
        position: absolute;
        bottom: 30vw;
        right: var(--left);
    }

    .home-txt * {
        width: auto;
    }

    .mobile-scroll-down {
        display: block;
        position: absolute;
        bottom: 6vw;
        left: 0;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .home-about {
        padding: var(--top2) var(--left);
    }

    .home-about h2 {
        width: auto;
    }

    .home-about-txt {
        width: auto;
        margin-top: 5vw;
        margin-left: auto;
    }

    .home-about-txt h4 {
        margin-bottom: 6vw;
    }

    .home-product-title h2 {
        width: auto;
    }

    .home-product-row {
        flex-wrap: wrap;
        margin: -3vw;
    }

    .home-product-col {
        width: 100%;
        padding: 3vw;
    }

    .home-product-box {
        height: 90vw;
        padding: 5vw 4vw;
    }

    .home-product-box:before {
        opacity: 1;
        z-index: 2;
    }

    .product-box-title {
        font-size: 9vw;
    }

    .home-product-box img {
        height: 62vw;
        opacity: 1;
    }

    .product-box-desc {
        color: white;
    }

    .features-row {
        flex-wrap: wrap;
        margin-top: 7vw;
    }

    .features-left {
        width: auto;
        margin-bottom: 6vw;
    }

    .features-right {
        width: auto;
    }

    .features-item {
        padding: 5vw 0;
    }

    .work-title-holder h2 {
        width: auto;
    }

    .work-row {
        margin: -5vw;
    }

    .work-col {
        width: 100%;
        padding: 5vw;
    }

    .work-col:nth-child(4n + 1),
    .work-col:nth-child(4n + 4),
    .work-col:nth-child(4n + 5) {
        width: 100%;
    }

    .work-img img,
    .work-col:nth-child(4n + 1) img,
    .work-col:nth-child(4n + 4) img,
    .work-col:nth-child(4n + 5) img {
        height: 55vw;
    }

    .work-desc {
        margin-top: 2vw;
    }

    .strategy-title-holder h2 {
        width: auto;
    }

    .strategy-title-holder p {
        width: auto;
    }

    .strategy-title-holder ol {
        padding-left: 3vw;
        margin-top: 2vw;
    }

    .strategy-row {
        margin: -3vw;
    }

    .strategy-col {
        width: 100%;
        padding: 3vw;
    }

    .strategy-box {
        height: 80vw;
    }

    .strategy-txt {
        padding: 5vw 4vw;
    }

    .strategy-big-text {
        transform: scale(1);
    }

    .strategy-small-text {
        width: 37vw;
        transform: translateY(0);
    }

    .strategy-section .btn-holder {
        text-align: left;
        margin-top: 7vw;
    }

    .subscribe-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10vw;
    }

    .subscribe-left h2 {
        margin-bottom: 6vw;
    }

    .subscribe-left form {
        margin-top: 3vw;
        width: auto;
    }

    .blog-row {
        margin: -3vw;
    }

    .blog-col {
        width: 100%;
        padding: 3vw;
    }

    .home .blog-col {
        width: 100%;
    }

    .blog-thumb {
        height: 55vw;
        margin-bottom: 3vw;
    }

    .blog-desc .date {
        margin-bottom: 1.5vw;
    }

    .blog-desc h4 {
        margin-bottom: 2vw;
    }

    /*contact*/
    input[type="date"],
    input[type="email"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="text"]:not(.adminbar-input),
    input[type="url"],
    select,
    textarea {
        font-size: 3vw !important;
        letter-spacing: -0.06vw !important;
        padding: 4vw !important;
    }

    input[type=button],
    input[type=reset],
    input[type=submit] {
        font-size: 3vw !important;
        letter-spacing: -0.06vw !important;
        padding: 2vw 3vw !important;
        padding-right: 8vw !important;
    }

    .subscribe-left input[type=submit] {
        height: 78% !important;
        padding: 1vw 3vw !important;
    }

    /*blogs*/
    .featured-blog-img {
        width: 100%;
        height: 55vw;
        margin-bottom: 3vw;
    }

    .featured-blog-desc {
        padding: 0;
    }

    .featured-blog-desc .excerpt {
        margin-bottom: 5vw;
    }

    .blog-section .btn-holder {
        margin-top: 6vw;
    }

    /*blog inner*/
    .blog-inner-section {
        padding: var(--top3) var(--left) 0;
    }

    .blog-inner-left {
        width: 100%;
        margin-bottom: 6vw;
    }

    a.btn-back {
        gap: 3vw;
        margin-bottom: 3vw;
    }

    .back-box {
        width: 6vw;
        height: 6vw;
        padding: 1.5vw;
    }

    .share-holder {
        gap: 4vw;
        margin-top: 4vw;
    }

    .share-social a {
        display: block;
        margin-bottom: 1vw;
    }

    .blog-inner-right {
        padding: 5vw 0;
        background: white;
        position: relative;
    }

    .blog-inner-right h1 {
        margin-bottom: 3vw;
    }

    .author {
        margin-bottom: 8vw;
    }

    /*products*/
    .product-section {
        overflow: hidden;
    }

    .product-item {
        margin-top: 0;
        margin-bottom: 0;
    }

    .product-item-title {
        padding: 5vw 3vw 4vw;
    }

    .product-item-title h2 {
        margin-bottom: 1vw;
    }

    .product-item-bg {
        height: 50vw;
    }

    .product-item-bg:after {
        height: 80%;
    }

    .product-content-row {
        position: static;
        bottom: 0;
        padding: 5vw 0 0;
        gap: 5vw;
        background: transparent;
    }

    .product-content-left,
    .product-content-right {
        width: 100%;
        padding-right: 0;
    }

    .product-content-list {
        gap: 3vw;
        margin-bottom: 2vw;
    }

    .product-content-list img {
        display: block;
        width: 3.8vw;
        margin-top: 1vw;
    }

    .product-content-right .product-content-list img {
        margin-top: 0;
    }

    .quiz-section {
        padding: var(--top2) var(--left2);
    }

    .quiz-holder .gform-theme--foundation .gform_fields {
        row-gap: 7vw !important;
    }

    .quiz-holder .gform-theme--foundation {
        margin-top: 6vw;
    }

    .quiz-holder .gchoice {
        width: 30%;
    }

    .quiz-holder .gchoice label {
        padding: 1vw 2vw;
    }

    .gform-theme--framework input[type=radio] {
        width: 5vw !important;
        height: 5vw !important;
    }

    .gform-theme--framework input[type=radio]::before {
        width: 1.7vw !important;
        height: 1.7vw !important;
    }

    .results {
        margin-top: 6vw;
    }

    .result {
        gap: 3vw;
        padding: 5vw 4vw;
        margin: 2vw 0;
    }

    .result h2 {
        font-size: 10vw;
        width: 100%;
    }

    .result-desc {
        width: 100%;
    }

    /*contact*/
    .contact-form {
        padding: 5vw var(--left);
    }

    .contact-form .breadcrumbs {
        margin-bottom: 3vw;
    }

    .contact-row {
        margin-top: 8vw;
        gap: 6vw;
    }

    .contact-left {
        width: 100%;
    }

    .contact-left h4 {
        margin-bottom: 1vw;
    }

    .contact-info {
        margin-bottom: 4vw;
    }

    .address {
        color: var(--grey);
        /*        margin-bottom: 6vw;*/
    }

    .social-link {
        gap: 3vw;
    }

    .contact-right {
        min-height: 30vh;
    }

    .gform-theme--foundation .gform-grid-row,
    .gform-theme--foundation .gform_fields {
        row-gap: 3vw !important;
    }

    form textarea {
        min-height: 30vw !important;
        min-block-size: 30vw !important;
        height: 30vw !important;
    }

    .gform-theme--foundation .gform_footer,
    .gform-theme--foundation .gform_page_footer {
        margin-block-start: 5vw !important;
    }

    .gform_footer:before {
        width: 2.5vw;
        height: 2.5vw;
        right: 2.5vw;
    }

    /*footer*/
    .cta {
        flex-wrap: wrap;
        gap: 6vw;
        padding: 8vw var(--left) 5vw;
    }

    .cta a.btn {
        margin-bottom: 0;
    }

    .cta-img h4 {
        bottom: 6vw;
    }

    .footer-holder {
        padding: 10vw var(--left) 5vw;
    }

    .footer-row {
        flex-wrap: wrap;
        margin-bottom: 10vw;
    }

    a.footer-logo img {
        width: 30vw;
        margin-bottom: 6vw;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 5vw;
    }

    .footer-right {
        width: 100%;
        display: flex;
        gap: 0;
    }

    .footer-link {
        width: 50%;
    }

    .footer-link a {
        margin-bottom: 1vw;
    }

    #scrollTopBtn {
        bottom: 5vw;
        width: 9vw;
        height: 9vw;
        padding: 2.3vw;
    }

}