/*
Theme Name: Arthur Khachatryan ∞
Theme URI: https://uaedevelop.pro
Author: Arthur Khachatryan
Description: UEA Web Developer.
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 {
    scrollbar-width: thin;
    scrollbar-color: var(--v3-accent-700) var(--v3-neutral-0);
    margin: 0 auto 0!important;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    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;
}

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;
    outline: none;
}

li {
    list-style: none;
}

address {
    font-style: normal;
}

strong, b {
    font-weight: 600;
}

button {
    user-select: none;
}

label {
    display: block;
}

/* Autofill: chrome, safari, edge */
:is(input, textarea, select):-webkit-autofill,
:is(input, textarea, select):-webkit-autofill:hover,
:is(input, textarea, select):-webkit-autofill:focus {
    -webkit-text-fill-color: #141820 !important;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    background-color: #141820 !important;
    border: 1px solid #8e8f8e !important;
    transition: background-color 9999s ease-in-out 0s;
    caret-color: #8e8f8e;
}

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

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

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

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

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

.neutral-0 {
    color: var(--v3-neutral-0);
}

.neutral-100 {
    color: var(--v3-neutral-100);
}

.gray-200 {
    color: var(--v3-gray-200);
}

.gray-300 {
    color: var(--v3-gray-300);
}

.orange-100 {
    color: var(--v3-orange-100);
}

.orange-200 {
    color: var(--v3-orange-200);
}

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

.accent-700 {
    color: var(--v3-accent-700);
}

.accent-800 {
    color: var(--v3-accent-800);
}

.text-xs {
    font: var(--text-xs);
}

.text-sm {
    font: var(--text-sm);
}

.text-md {
    font: var(--text-md);
}

.text-lg {
    font: var(--text-lg);
}

.title {
    font: var(--title);
}

.title-xs {
    font: var(--title-xs);
}

.title-sm {
    font: var(--title-sm);
}

.title-md {
    font: var(--title-md);
}

.title-lg {
    font: var(--title-lg);
}

.d-none {
    display: none;
}

.relative {
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.w-full {
    width: 100%;
    min-width: 100%;
}

.hidden {
    overflow: hidden;
}

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

.ratio {
    display: block;
}

.ratio img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.img-scale img {
    transition: transform 300ms ease;
}

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

.no-post-found {
    color: var(--v3-accent-800);
    font: 500 14px / 1 var(--ff-quicksand);
    margin: 40px 5%;
}

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

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

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

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

.btn {
    display: inline-block;
    font: 500 14px / 1 var(--ff-quicksand);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    text-align: center;
    padding-block: clamp(14px, 2vw, 20px);
    padding-inline: clamp(24px, 3vw, 32px);
    transition: background 300ms ease, color 300ms ease, border 300ms ease;
    cursor: pointer;
}

.btn-dark {
    color: var(--v3-neutral-100);
    background: var(--v3-accent-800);
    border: 2px solid var(--v3-accent-800);
}

.btn-dark:hover {
    color: var(--v3-neutral-100);
    background: var(--v3-orange-200);
    border: 2px solid var(--v3-orange-200);
}

.btn-dark-outline {
    color: var(--v3-accent-800);
    background: transparent;
    border: 2px solid var(--v3-accent-800);
}

.btn-dark-outline:hover {
    color: var(--v3-neutral-100);
    background: var(--v3-accent-800);
    border: 2px solid var(--v3-accent-800);
}

.btn-primary {
    color: var(--v3-neutral-100);
    background: var(--v3-orange-200);
    border: 2px solid var(--v3-orange-200);
}

.btn-primary:hover {
    color: var(--v3-neutral-100);
    background: var(--v3-orange-100);
    border: 2px solid var(--v3-orange-100);
}

.btn-link {
    color: var(--v3-accent-800);
    font: 400 16px / 1 var(--ff-quicksand);
    background: var(--v3-neutral-100);
    border: none;
    padding: 0;
}

.read-more {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: var(--v3-orange-100);
    font: var(--text-sm);
}

.read-more svg {
    width: clamp(20px, 2.4vw, 24px);
    height: clamp(20px, 2.4vw, 24px);
    margin-top: 2px;
}

.form-control {
    width: 100%;
    color: var(--v3-gray-300);
    font: 500 15px / 1 var(--ff-quicksand);
    background: var(--v3-accent-800);
    border: 1px solid var(--v3-gray-300);
    border-radius: 2px;
    padding-inline: clamp(16px, 2.4vw, 24px);
    padding-block: clamp(12px, 1.6vw, 16px);
    outline: var(--v3-gray-300);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
    border-color: var(--v3-orange-100);
    box-shadow: 0 0 0 2px rgba(218, 102, 38, 0.1);
}

.form-control::placeholder {
    color: var(--v3-gray-300);
    font: 500 15px / 1 var(--ff-quicksand);
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

:is(.wpcf7 form .wpcf7-response-output, .wpcf7-response-output, .wpcf7-spinner) {
    display: none;
}

.wpcf7-not-valid-tip {
    display: block;
    color: var(--v3-red-100);
    font: 500 14px / 1 var(--ff-quicksand);
    text-align: left;
    margin-top: 8px;
}

#wpadminbar {display: none}