/*
Theme Name: fintalX
Theme URI: https://fintalx.com
Author: HOGI Marketing agency in Dubai
Version: 1.0.0
*/

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

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

html, body {
    width: 100%;
    max-width: 1920px;
    min-width: 320px;
    padding: 0;
}

html {
    margin: 0 auto 0!important;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--v3-dark);
    font-family: var(--ff-urbanist);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-transform: none;
    word-break: break-word;
    overflow-x: hidden;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    margin: 0 auto 0;
	overflow: hidden;
}

body::-webkit-scrollbar {
    width: 0;
}

body::-webkit-scrollbar-track {
    width: 0;
}

body::-webkit-scrollbar-thumb {
    width: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

figure, ul {
    padding: 0;
    margin: 0;
}

figure {
    display: flex;
    flex-direction: column;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}

li {
    list-style: none;
}

strong, b {
    font-weight: 500;
}

address {
    font-style: normal;
}

img, video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    user-select: none;
}

button {
    cursor: pointer;
    user-select: none;
}

label {
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 30px var(--v3-cultured) inset !important;
    -webkit-box-shadow: 0 0 0 30px var(--v3-cultured) inset !important;
    -webkit-text-fill-color: var(--v3-cultured) !important;
}

textarea {
    height: 80px;
    min-height: 80px;
    max-height: 80px;
}

.d-none {
    display: none!important;
}

.light-mode {
    background: var(--v3-cultured);
}

.dark-mode {
    background: var(--v3-dark);
}

.hidden {
    overflow: hidden;
}

.loader {
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 99;
}

.no-post-found {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}

.overlay::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ratio {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top-left-radius: clamp(32px, 6vw, 64px);
}

.ratio img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: clamp(32px, 6vw, 64px);
    object-fit: cover;
    object-position: center center;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.form-control {
    display: block;
    width: 100%;
    color: var(--v3-cultured);
    background: var(--v3-dark);
    border: 1px solid var(--v3-cultured);
    border-radius: 8px;
    padding: 14px 24px;
    margin-top: 10px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control::placeholder {
    color: #838383;
    font-family: var(--ff-urbanist);
    font-size: 14px;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--v3-purple);
    box-shadow: 0 0 0 2px rgba(127, 48, 235, 0.35);
}

.form-control:focus::placeholder {
    color: var(--v3-cultured);
}

.cmo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 32px;
}

.form-submit {
    color: var(--v3-white);
    font-family: var(--ff-urbanist);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background: var(--v3-purple);
    border: 1px solid var(--v3-purple);
    border-radius: 50px;
    padding: 12px 32px;
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
    padding: 0;
    margin: 0;
    border: none;
}

.wpcf7-response-output,
.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    display: block;
    color: #fa4848;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: .5px;
    margin-top: 10px;
}

#wpadminbar {display: none}

@media only screen and (max-width: 565px) {
    .form-control {
        padding: 12px 16px;
    }
    .cmo {
        margin-top: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}