@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");

* {
  font-family: "Public Sans", sans-serif;
  box-sizing: border-box;

  color: var(--black);
  font-size: inherit;
  /* width: 100%; */
  /* width: inherit; */
  -webkit-tap-highlight-color: transparent;
}

img {
  object-fit: cover;

  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: var(--bg-main);
  width: 100%;
  overflow-x: hidden;
  min-width: 360px;
  margin: 0;
  padding: 0;
  height: 100vh;
}

:root {
  /* --main-blue: #2698d1; */
  --main-blue: #1b86c4;
  --gray-500: #363636;
  --gray-400: #525252;
  --gray-300: #727272;
  --gray-200: #b2b2b2;
  --gray-100: #d2d2d2;

  --bg-main: #fffff7;
  --bg-main-deep: #fcfcf2;

  --black: #121212;
  --white: #ffffff;
}

/* Helper Class  */

.w-fit {
  width: fit-content !important;
}

.w-full {
  width: 100% !important;
}

.py-24 {
  padding: 0 24px;
}

.mt-24 {
  margin-top: 24px;
}

.justify-start {
  justify-content: start !important;
}

/* Reset CSS  */

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

a {
  width: fit-content;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
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;
}
