@font-face {
    src: url('../fonts/Inter_18pt-Medium.ttf');
    font-family: 'Inter-Medium';
}
@font-face {
    src: url('../fonts/Inter_18pt-Bold.ttf');
    font-family: 'Inter-Bold';
}
@font-face {
    src: url('../fonts/Inter_18pt-Black.ttf');
    font-family: 'Inter-Black';
}
@font-face {
    src: url('../fonts/Inter_18pt-Regular.ttf');
    font-family: 'Inter-Regular';
}
@font-face {
    src: url('../fonts/Inter_18pt-SemiBold.ttf');
    font-family: 'Inter-SemiBold';
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Inter-Medium';
    transition: all 300ms ease-out;
}
*:hover {
    transition: all 0.3s ease-in;
}
html {
    scroll-behavior: smooth;
}
/* .swiper-button-next,  .swiper-button-prev {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #282828;
    --purpleDark: #0369a1;
    --brandGray: #38bdf8;
    --brandGrayBold: #0ea5e9;
    --gray: rgba(40, 40, 40, 0.60);
    --white: #fff;
    --accent: #22d3ee;
    --accentLight: #bae6fd;
    --surface: #f0f9ff;
    --radius: 12px;
    --radiusSm: 8px;
    --shadow: 0 2px 12px rgba(40, 40, 40, 0.06);
    --shadowHover: 0 8px 24px rgba(40, 40, 40, 0.08);
    --gradient-brand: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 45%, #0284c7 100%);
    --gradient-brand-soft: linear-gradient(145deg, #67e8f9 0%, #38bdf8 40%, #0ea5e9 100%);
    --gradient-surface: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 42%, #ecfeff 100%);
    --gradient-mesh: radial-gradient(ellipse 90% 60% at 10% 0%, rgba(56, 189, 248, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 30%, rgba(34, 211, 238, 0.18), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(14, 165, 233, 0.12), transparent 45%);
}
:root {
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --titleFont: 40px;
}
.wrapper {
    max-width: 1620px;
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.error-border {
    border-color: red !important;
}
.full_wrapper {
    max-width: 1900px;
    width: 99%;
    margin: 0 auto;
    padding: 0 48px;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    background: var(--gradient-mesh), var(--gradient-surface);
    background-attachment: fixed;
    color: var(--black);
    min-height: 100vh;
}
body, html{
    overflow-x: hidden;
}
