/*
Theme Name: Bookbi
Theme URI: https://bookbi.com/
Author: HOGI Marketing agency in Dubai
Description: UEA Web Developers.
Version: 1.0.0
*/

@font-face {
    font-family: "Stage Grotesk";
    src: url('./assets/fonts/stage-grotesk/StageGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Stage Grotesk";
    src: url('./assets/fonts/stage-grotesk/StageGrotesk-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Stage Grotesk";
    src: url('./assets/fonts/stage-grotesk/StageGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    scroll-behavior: smooth;
    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);
    background: var(--v3-white);
    font-family: var(--ff-stageGrotesk);
    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;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--v3-white);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--v3-white-2);
    border-radius: 10px;
}

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

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

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

p {
    margin: 0;
}

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

li {
    list-style: none;
}

strong, b {
    font-weight: 700;
}

address {
    font-style: normal;
}

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

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

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

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

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

input:-webkit-autofill {
    animation-shadow: 0 0 0 30px var(--v3-white-1) inset !important;
    -webkit-animation-shadow: 0 0 0 30px var(--v3-white-1) inset !important;
    -webkit-text-fill-color: var(--v3-dark) !important;
}

.flex {
    display: flex;
}

.no-scroll {
    overflow: hidden;
}

.bookBi-links {
    display: flex;
    grid-column-gap: 16px;
}

.cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("./assets/images/cover.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .7;
    z-index: 1;
}

.wpcf7-form-control,
.form_control {
    width: 100%;
    color: rgb(255, 255, 255);
    font-family: var(--ff-stageGrotesk);
    font-size: 16px;
    background: rgb(34, 45, 56);
    border: 1px solid rgb(34, 45, 56);
    border-radius: 40px;
    padding: 14px 24px;
    outline: rgb(34, 45, 56);
    transition: border-color 0.25s ease, animation-shadow 0.25s ease;
}

.wpcf7-form-control::placeholder,
.form_control::placeholder {
    color: #90979DFF;
    font-family: var(--ff-stageGrotesk);
    font-size: 16px;
}

.wpcf7-form-control:focus,
.form_control:focus {
    border-color: rgb(0, 141, 255);
    animation-shadow: 0 0 0 2px rgba(0, 141, 255, 0.35);
}

.wpcf7-submit,
.form_submit {
    color: var(--v3-dark);
    font-family: var(--ff-stageGrotesk);
    font-size: 16px;
    font-weight: 600;
    background: var(--v3-white);
    border: 1px solid var(--v3-white);
    border-radius: 40px;
    padding: 14px 24px;
    cursor: pointer;
    transition: background 300ms ease, color 300ms ease, border 300ms ease;
}

.wpcf7-submit:hover,
.form_submit:hover {
    color: var(--v3-white);
    background-color: var(--v3-blue-1);
    border: 1px solid var(--v3-blue-1);
}

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

.wpcf7-submit {
    width: max-content;
}

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

.wpcf7-not-valid-tip {
    display: block;
    color: #dc3232;
    font-size: 14px;
    text-align: left;
    margin-top: 8px;
}

#wpadminbar {display: none}

@media only screen and (max-width: 565px) {
    .bookBi-links {
        max-width: 220px;
        flex-direction: column;
        grid-row-gap: 16px;
    }

    .bookBi-links a {
        width: 100%;
    }
}