/* Variables */

:root {
  --color-1: #D38E13;
  --color-light-1: #fff;
  --color-light-2: #f5f5f5;
  --color-light-3: #e8e8e8;
  --color-dark-1: #000;
  --color-dark-2: #2E2D2D;
  --color-dark-3: #7E7E7E;
  --color-success: #155724;
  --color-success-soft: #d4edda;
  --color-error: #8f1b17;
  --color-error-soft: #f8d7da;
  --color-disabled: #BEBEBE;
  --global-x-padding: 6%;
}

/* Reset */

*, *::before, *::after {
  box-sizing: border-box;
  transition-duration: 0.2s;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
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: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.3em;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--color-dark-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;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: var(--color-1);
}

/* General */

h1, h2, h3, h4, h5, h6 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2em;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 38px;
}
h4 {
  font-size: 34px;
}
h5 {
  font-size: 30px;
}
h6 {
  font-size: 26px;
}
.btn {
  background-color: var(--color-1);
  color: var(--color-light-1);
  padding: 16px 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  text-wrap: balance;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 100%;
  left: -80px;
  top: 0;
  background: linear-gradient(90deg, var(--color-1), var(--color-light-1));
  filter: blur(3px);
  opacity: 0.25;
  transform: skewX(-20deg);
}
.btn:hover {
  transform: scale(1.05);
}
.btn:hover::after {
  left: 120%;
  transition: left 0.35s ease-in-out;
}
.btn .arrow {
  position: relative;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-light-1);
  border-bottom: 2px solid var(--color-light-1);
  display: inline-block;
  margin-left: 15px;
  top: -3px;
  transform: rotate(-45deg);
}
.error {
  text-align: center;
  color: var(--color-error);
  background: var(--color-error-soft);
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.success {
  text-align: center;
  color: var(--color-success);
  background: var(--color-success-soft);
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 720px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 23px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 20px;
  }
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--scroll-track, var(--color-light-2));
}
::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb, var(--color-1));
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover, var(--color-1));
}

/* Checkbox */

.checkbox {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox .checkmark {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-height: 20px;
  border-radius: 5px;
  background-color: var(--color-light-1);
  border: 1px solid var(--color-dark-2);
  transition: background-color 0.2s, border-color 0.2s;
}
.checkbox input:checked + .checkmark {
  background-color: var(--color-1);
  border-color: var(--color-1);
}
.checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--color-light-1);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox .text {
  user-select: none;
  font-size: 14px;
  line-height: 1.4em;
}