:root {
  --time: 0.45s;
  --color-primary: #FFC13E;
  --color-secondary: #002b5c;
  --font-primary: "Inter", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: #ffffff;
  font-size: var(--base-font-size);
  font-family: var(--font-primary);
  --container-width: 1300px;
  --base-font-size: 16px;
  --base-line-height: 26px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

p:only-child,
p:last-child {
  margin-bottom: 0;
}

p {
  font-size: var(--base-font-size);
  font-family: var(--font-primary);
  line-height: var(--base-line-height);
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-size: var(--base-font-size);
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

:focus {
  outline: none;
}

:disabled {
  cursor: default;
}

form {
  --padding: 15px;
  --radius: 10px;
  --height: 48px;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

select {
  background-image: url("assets/images/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  display: inline-block;
  margin: 0 0 7px 0;
  font-size: 13px;
}

select.form-field,
input.form-field {
  height: var(--height);
  line-height: var(--height);
  padding: 0 var(--padding);
  border-radius: var(--radius);
}

textarea {
  height: 140px;
  resize: none;
  padding: var(--padding);
  resize: none;
}

textarea,
.form-field {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
}

iframe {
  border: 0;
  vertical-align: bottom;
}

.w-100 {
  width: 100%;
}

.vh-100 {
  height: 100vh;
}

.relative {
  position: relative;
}

.bg-light {
  background: #f6f8fb;
}

.text-center {
  text-align: center;
}

.container {
  margin: auto;
  max-width: var(--container-width);
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #7e8a8f;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: #888;
}