@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap");
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* 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;
}

:root {
  --nav-height: 91.5px;
  --block-spacing: 120px;
  --color-primary: #337DC2;
  --color-secondary-1: #0476E7;
  --color-secondary-2: #005AB4;
  --color-secondary-light: #4F9CE9;
  --color-gray-1: #0E1520;
  --color-gray-2: #1F334D;
  --color-gray-3: #69788C;
  --color-gray-4: #8A9BB0;
  --color-gray-5: #E0E5ED;
  --color-gray-6: #F4F6FA;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1440px;
  scroll-padding-top: var(--nav-height) !important;
  scroll-behavior: smooth;
}

@media screen and (width < 1024px) {
  :root {
    --nav-height: 88px;
  }
}
@media screen and (width < 768px) {
  :root {
    --block-spacing: 80px;
  }
}
@media screen and (width < 576px) {
  :root {
    --block-spacing: 60px;
  }
}
* {
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  text-rendering: optimizeLegibility;
}

.post, .page {
  margin: 0;
}

a {
  display: block;
  text-decoration: none;
}

strong {
  font-weight: bolder;
}

a:hover,
a:active,
a:focus,
a:focus-visible,
a:visited {
  outline: none;
}

button {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
}
button:focus-visible {
  outline: none;
}

img,
svg {
  display: block;
}

/* Inter */
/* Fustat */
/* font-family: "Fustat", sans-serif; */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.p,
input,
li,
span,
th,
td {
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
  color: var(--color-gray-1);
}

h1,
.h1 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

h2,
.h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

p,
.p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.text-sm {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.text-xs {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.text-fustat-lg {
  font-family: "Fustat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  text-box-trim: trim-both;
}

.text-fustat-md {
  font-family: "Fustat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-box-trim: trim-both;
}

.text-fustat-sm {
  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-box-trim: trim-both;
}

@media screen and (width < 768px) {
  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 16px;
  }
  p,
  .p {
    font-size: 14px;
  }
  .text-sm {
    font-size: 13px;
  }
  .text-fustat-lg {
    font-size: 15px;
  }
  .text-fustat-md {
    font-size: 14px;
  }
  .text-fustat-sm {
    font-size: 13px;
  }
}
.container {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container .container {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0px;
  padding-right: 0px;
}

/* gray background */
body.page {
  background-color: var(--color-gray-6);
}

/* Button */
.default-btn {
  padding: 12px 12px 12px 24px;
  background-color: var(--color-secondary-1);
  color: white;
  border: 1px solid var(--color-secondary-1);
  border-radius: 4px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.3s, background-color 0.3s;
}
.default-btn > * {
  color: inherit;
}
.default-btn > svg {
  flex-shrink: 0;
}
.default-btn:hover {
  background-color: white;
  color: var(--color-secondary-1);
}

@media screen and (width < 768px) {
  .default-btn {
    padding: 8px 8px 8px 16px;
    gap: 8px;
  }
}
.gutenberg-block ul {
  list-style: initial;
  padding-left: 28px;
}
.gutenberg-block ol {
  list-style: auto;
  padding-left: 28px;
}
.gutenberg-block li {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 8px;
}
.gutenberg-block table td, .gutenberg-block table th {
  padding: 12px;
  border: 1px solid black;
  vertical-align: middle;
  line-height: 1.8;
  letter-spacing: 1px;
}
.gutenberg-block table thead td, .gutenberg-block table th {
  background-color: var(--color-primary-1);
}
.gutenberg-block strong {
  font-weight: 700;
}
.gutenberg-block a {
  display: inline;
}

@media screen and (width < 768px) {
  .gutenberg-block ul {
    padding-left: 24px;
  }
  .gutenberg-block ol {
    padding-left: 24px;
  }
  .gutenberg-block li {
    font-size: 14px;
  }
  .gutenberg-block table td, .gutenberg-block table th {
    padding: 6px;
    font-size: 14px;
  }
}