@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: #1a1a1a;
    --purpleDark: #0a2540;
    --brandGray: #c8922a;
    --brandGrayBold: #0a2540;
    --gray: rgba(26, 26, 26, 0.60);
    --white: #fff;
    --accent: #c8922a;
    --accentLight: #e8c88a;
    --surface: #f7f5f0;
    --radius: 12px;
    --radiusSm: 8px;
    --shadow: 0 2px 12px rgba(10, 37, 64, 0.08);
    --shadowHover: 0 8px 24px rgba(10, 37, 64, 0.12);
    --gradient-brand: linear-gradient(135deg, #0a2540 0%, #1a3a5c 45%, #0a2540 100%);
    --gradient-brand-soft: linear-gradient(145deg, #1a3a5c 0%, #0a2540 40%, #061829 100%);
    --gradient-surface: linear-gradient(165deg, #ede8df 0%, #f7f5f0 42%, #faf9f7 100%);
    --gradient-mesh: radial-gradient(ellipse 90% 60% at 10% 0%, rgba(200, 146, 42, 0.15), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 30%, rgba(10, 37, 64, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10, 37, 64, 0.08), 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;
}
