@import "./bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-primary: #0f111e;
  --color-second: #282b3a;
  --color-third: #cfa987;
  --color-error: #e21a02;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  color: #0f111e;
  font-family: "Noto Sans", sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  color: #0F2851;
  background: #FAFFFF;
  padding-top: 32px;
  padding-bottom: 200px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  font-weight: 500;
}

button {
  background: none;
  border: none;
}

img {
  max-width: 100%;
}

.flex {
  display: flex;
}

.flexBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.justifyBetween {
  justify-content: space-between;
}

.alignEnd {
  align-items: flex-end;
}

.justifyEnd {
  justify-content: flex-end;
}

.alignCenter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hidden {
  display: none;
}

.layoutMain {
  display: flex;
}

.page-heading {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.main-heading {
  margin-bottom: 20px;
}
.main-heading img {
  margin-bottom: 8px;
}
.main-heading h3 {
  font-size: 20px;
  font-weight: bold;
}