@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');



* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------ Smooth Scroll */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ------------------------------------------ Custom Cursor */
.custom-cursor {
    position: fixed;
    z-index: 9999999999;
    width: 16px;
    height: 16px;
    background: rgb(0,0,0,1);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    filter: invert(1);
    mix-blend-mode: difference;
    backdrop-filter: none;
}

.custom-cursor.mouse-hover {
    width: 120px;
    height: 120px;
    background: rgb(0,0,0,0.65);
    filter: none;
    mix-blend-mode: unset;
    backdrop-filter: blur(4px);
}

.custom-cursor > div {
    font-size: 16px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0);
}

.custom-cursor.mouse-hover > div {
    opacity: 1;
    transform: scale(1);
}

/* ------------------------------------------ Header Menu */
@media screen and (min-width: 991px) {
    .nav-link:after {
        content: "";
        display: block;
        height: 2px;
        width: 0%;
        background-color: #000;
        position: absolute;
        left: 0;
        bottom: -5px;
        transition: all 0.3s ease-in-out;
    }

    .nav-link:hover:after, .nav-link.w--current:after {
        width: 100%;
    }
}

.w-nav-brand {
    float: none;
}

@media screen and (max-width: 767px) {
    .w-nav-brand {
        padding-left: 0!important;
    }
}


/* ---------------------------- Contact Form 7  */
/* .wpcf7-textarea {
    margin-bottom: -4px;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    line-height: 1.1;
    margin: 5px 18px 0;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 6px 4px 4px 4px;
    line-height: 1.2;
    text-align: center;
    font-size: 14px;
    border: none;
    background-color: #488548;
    color: #fff;
    border-radius: 99px;
}

.wpcf7 form.wpcf7-form.invalid .wpcf7-response-output {
    background-color: #dc3232;
}

.wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

form.submitting .wpcf7-spinnerwpcf7-submit {
    background-color: #f2f2f2;
} */

.submit-wrap{
    text-align: center;
    margin-top: 10px;
}
.submit-wrap .wpcf7-submit{
    background-color: #15151514;
    padding: 8px 40px;
    border-radius: 5px;
}

.submit-wrap .wpcf7-submit:hover{
    background-color: black;
    transition: all 0.3s ease-in-out;
    color: white;
}