/*
Theme Name: Macrocosm
Theme URI: https://artdevelopment.ae
Author: UAE Development Team
Description: Remote Freelance Web Developer Jobs.
Version: 1.0.0
*/

@font-face {
    font-family: "NeueMontreal";
    src: url('./assets/fonts/neue-montreal/NeueMontreal-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueMontreal";
    src: url('./assets/fonts/neue-montreal/NeueMontreal-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueMontreal";
    src: url('./assets/fonts/neue-montreal/NeueMontreal-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeueMontreal";
    src: url('./assets/fonts/neue-montreal/NeueMontreal-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    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;
    margin: 0 auto 0!important;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "NeueMontreal", sans-serif;
    font-weight: 400;
    font-size: 16px;
    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;
}

body.light-mode {
    color: var(--v3-dark);
    background: var(--v3-white);
}

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

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

ul {
    padding: 0;
}

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

li {
    list-style: none;
}

strong, b {
    font-weight: 500;
}

address {
    font-style: normal;
}

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

img, video {
    max-width: 100%;
    height: auto;
    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 {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.container {
    max-width: 1440px;
    width: 90%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.container-md {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.container-sm {
    max-width: 1024px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.container-xs {
    max-width: 767px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.block {
    display: block;
}

.none {
    display: none!important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.hidden, .fixed {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.margin-auto {
    margin: 0 auto 0;
}

.white {
    color: var(--v3-white);
}

.light {
    color: var(--v3-white-7);
}

.red {
    color: var(--v3-red);
}

.dark {
    color: var(--v3-dark);
}

.white-bg {
    background: var(--v3-white);
}

.light-bg {
    background: var(--v3-white-7);
}

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

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

.not-style {
    background: unset;
    border: unset;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.heading {
    font-size: var(--fz-base);
    font-weight: 500;
    line-height: .9;
}

.title {
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-fon {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.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;
}

.tab-content {
    display: none;
    animation: moving .5s ease;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.btn {
    display: block;
    width: max-content;
    font-family: "NeueMontreal", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    padding: clamp(12px, calc(1.5vw + 4px), 14px) clamp(18px, calc(2.5vw + 4px), 26px);
}

.btn-danger {
    position: relative;
    color: var(--v3-red);
    border: 1px solid var(--v3-red);
    background: rgba(128, 16, 28, 0.30);
    transition: color 300ms ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-danger:hover {
    color: var(--v3-dark);
}

.btn-danger::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(128, 16, 28, 0.90);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 300ms ease-in-out;
    z-index: -1;
}

.btn-danger:hover::after {
    transform: scaleX(1);
}

.hover-effect {
    position: relative;
}

.hover-effect::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: -7px;
    transition: all 300ms ease;
}

.hover-effect:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

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

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

.wpcf7-form-control-wrap {
    display: block;
    padding-bottom: clamp(8px, 1.5vw, 14px);
}

.wpcf7-form-control-wrap:not(:first-child) {
    padding-top: clamp(8px, 1.5vw, 14px);
}

.form-input {
    width: 100%;
    color: rgba(10, 10, 10, 0.80);
    font-family: "NeueMontreal", sans-serif;
    font-weight: 400;
    line-height: 1;
    background: var(--v3-white-7);
    border: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.40);
    outline: none;
    padding: 10px 0;
}

.form-submit {
    display: block;
    width: 100%;
    color: var(--v3-red);
    font-weight: 400;
    font-family: "NeueMontreal", sans-serif;
    font-size: 14px;
    border: 1px solid var(--v3-red);
    background: rgba(128, 16, 28, 0.30);
    padding: clamp(12px, 1.8vw, 16px);
    margin-top: clamp(24px, 3vw, 32px);
    transition: color 300ms ease-in-out;
    cursor: pointer;
}

.form-submit:hover {
    color: var(--v3-dark);
    position: relative;
    z-index: 3;
}

.form-cont {
    cursor: pointer;
}

.form-cont p {
    position: relative;
    transition: color 300ms ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.form-cont p::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 35%;
    left: 0;
    background: rgba(128, 16, 28, 0.90);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 300ms ease-in-out;
    z-index: 2;
    color: var(--v3-dark);
}

.form-cont p:hover::after {
    transform: scaleX(1);
}

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

.wpcf7-not-valid-tip {
    color: var(--v3-red-1);
    font-size: 14px;
    margin-top: 8px;
}

#wpadminbar {display: none}