@charset "UTF-8";
:root {
  --bs-black: #000;
  --bs-white: #fff;
  --bs-title: #2c3746;
  --bs-title-second: #5f738c;
  --bs-body-bg: #F9FAFB;
  --bs-text-blue:#1A3B74;
  --bs-text-second-blue:#2755A3;
  --bs-text-red:#D92D20;
  --bs-bg-box:#F1F6FF;
  --bs-list-color:#344054;
  --bs-text-grey:#475467;
  --bs-border-color:#C6DBFF;
  --bs-sticky-color : #1570EF;
  --bs-bouble-dot:#D9192C;
  --bs-font-iran-sans: "IRANSansX", system-ui, -apple-system;
  --bs-bg-top-header: linear-gradient(90deg, #002e6e -10.16%, #45caf6 103.12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html ,img,ul,li{
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-iran-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-title);
  background-color: var(--bs-body-bg);
  font-feature-settings: "ss01";
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  direction: rtl;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 0;
  }
}
