@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';
}
a,
button,
input,
select,
textarea,
.learn_more_btn,
.next_btn,
.send_btn,
.next_step_btn,
.burger_svg,
.acc_block,
.nav_bar a {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
html {
    scroll-behavior: auto;
}
/* .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: #0f2744;
    --brandGray: #2563eb;
    --brandGrayBold: #1e40af;
    --gray: rgba(40, 40, 40, 0.60);
    --white: #fff;
    --accent: #3b82f6;
    --accentLight: #93c5fd;
    --surface: #eff6ff;
    --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, #3b82f6 0%, #2563eb 45%, #1e3a8a 100%);
    --gradient-brand-soft: linear-gradient(145deg, #60a5fa 0%, #3b82f6 40%, #2563eb 100%);
    --gradient-surface: linear-gradient(165deg, #dbeafe 0%, #eff6ff 42%, #f8fafc 100%);
    --gradient-mesh: radial-gradient(ellipse 90% 60% at 10% 0%, rgba(37, 99, 235, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 30%, rgba(30, 64, 175, 0.14), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(15, 39, 68, 0.1), 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: scroll;
    color: var(--black);
    min-height: 100vh;
}
body, html{
    overflow-x: hidden;
}
